@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
/* font-family: "Blinker", sans-serif; */
/* font-family: "Raleway", sans-serif; */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --scroll-behavior: smooth;
  --default-font: "Mulish", sans-serif;
  --heading-font: "Raleway", sans-serif;
  --bg-white: #fff;
  --bg-body-color: #272727;
  --bg-pr-green: #77ca24;
  --bg-green: #0d992b;
  --bg-light-green: #76ca24;
  --bg-light-wh: #d2d2d2;
}

html {
  scroll-behavior: var(--scroll-behavior);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--default-font);
  height: auto;
  width: 100%;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.38;
  color: var(--bg-light-wh);
  background: var(--bg-body-color);
}

img {
  max-width: 100%;
}

b,
strong {
  font-weight: 600;
}

p {
  margin: 0 0 25px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
.h1-heading,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  margin: 0 0 20px 0;
  font-weight: 600;
  color: var(--bg-white);
  padding: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

.h1-heading,
h1 {
  font-size: 60px;
  margin-bottom: 25px;
  color: var(--bg-white);
  line-height: 1.18;
}

h2 {
  font-size: 38px;
  line-height: 1.1em;
  color: var(--bg-white);
  margin: 0 0 17px 0;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

ul,
ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-family: var(--heading-font);
  color: var(--bg-text-color);
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a:hover {
  color: var(--bg-white);
}

.cmn-btn {
  display: inline-flex;
  padding: 13px 34px;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  background-color: #77ca24;
  border-radius: 50px;
  font-size: 16px;
  border: none;
  outline: none;
  font-weight: 600;
  color: var(--bg-body-color);
  transition: all 0.3s ease-in-out;
}

.cmn-btn::after {
  content: "";
  position: relative;
  top: 4px;
  right: 0px;
  transform: rotate(-45deg) translate(0%, -50%);
  background-image: url(./../images/btn-arrow-blk.svg);
  width: 11px;
  height: 11px;
  transition: all 0.2s ease-in-out;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

input[type="email"],
input[type="tel"],
input[type="text"] {
  background-color: transparent;
  width: 100%;
  outline: none;
  border: 1px solid var(--bg-light-wh);
  height: 45px;
  border-radius: 5px;
  color: var(--bg-white);
  padding: 0 14px;
}

::placeholder {
  opacity: 1;
  color: var(--bg-light-wh);
}

textarea {
  width: 100%;
  outline: none;
  border: 1px solid var(--bg-light-wh);
  border-radius: 5px;
  background-color: transparent;
  padding: 14px;
  color: var(--bg-white);
  resize: none;
  height: 100px;
}

.cmn-btn:hover {
  background-color: #ffffff;
  color: var(--bg-body-color);
}

.cmn-btn-white {
  background-color: var(--bg-white);
  border-color: var(--bg-white);
  color: var(--bg-body-color);
}

.cmn-btn-white:hover {
  background-color: var(--bg-pr-green);
  border-color: var(--bg-pr-green);
  color: var(--bg-body-color);
}

.cmn-gap {
  padding: 80px 0;
  position: relative;
}

.container {
  max-width: 1140px;
}

/* header */

/* navbar*/

.main-head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 7px 0px;
  background-color: #3230309e;
  backdrop-filter: blur(7px);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  z-index: 999;
}

.main-head.fixed {
  position: fixed;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 0 10px #333;
  box-shadow: 0 0 10px #333;
}

.main-head.header-hide {
  transform: translateY(-100%);
}
.header-top {
  background-color: var(--bg-white);
  transition: all 0.3s ease-in-out;
}

.main-head .container-fluid {
  padding: 0 30px;
}

.navbar-expand-lg {
  padding: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  padding: 0;
  margin: 0 10px 0 0;
  width: 260px;
  display: inline-block;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav > li {
  margin: 0 18px;
  padding: 0 0;
  position: relative;
}

.navbar-nav > li:last-child {
  margin-right: 0;
}

.navbar-nav > li:first-child {
  margin-left: 0;
}

.navbar-nav > li > a {
  color: var(--bg-white);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  text-transform: capitalize;
  padding: 32px 0;
}

.navbar-nav li.menu-item-has-children > a {
  padding-right: 16px;
}

.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
  color: var(--bg-light-green);
}

.logo-two {
  margin: 15px 0 0 10px;
}

/* navbar submenu*/

.sub-menu {
  background: var(--bg-white);
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  border-radius: 0;
  width: 210px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px #33333337;
  box-shadow: 0 0 10px #33333337;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 5px;
}

.navbar-nav li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  top: 51px;
  opacity: 1;
}

.sub-menu > li > a {
  color: var(--bg-body-color);
  display: block;
  width: 100%;
  padding: 9px 10px;
  font-size: 14px;
  line-height: 1.2;
  border-top: 1px solid #00000038;
}

.sub-menu > li:first-child > a {
  border-top: none;
}

.navbar-nav > li > a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--bg-light-green);
  /* opacity: 0; */
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sub-menu > li {
  width: 100%;
  display: block;
}

.navbar-nav > li.current-menu-item > a {
  color: var(--bg-light-green);
}

.sub-menu > li > a:hover {
  background-color: var(--bg-green);
  color: var(--bg-white);
}

.sub-menu > li.menu-item-has-children:hover > a,
.sub-menu > li.current-menu-item > a {
  background: var(--bg-light-green);
  color: var(--bg-white);
}

.navbar-nav > li.current-menu-item > a:before,
.navbar-nav > li.current-menu-item > a:after,
.navbar-nav > li > a:hover::before,
.navbar-nav > li > a:hover:after,
.navbar-nav > li.menu-item-has-children:hover > a:after {
  width: 100%;
}

.navbar-nav > li:last-child > .sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

.navbar-nav .clickD {
  position: absolute;
  right: 0;
  top: 2px;
  width: 10px;
  height: 20px;
  background: url(./../images/sort-down.svg) center center no-repeat;
  display: block;
  background-size: 10px;
  cursor: pointer;
}

.hdr-rgt-icons ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
}

.hdr-rgt-icons ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
  color: var(--bg-text-color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
}

.hdr-rgt-icons ul li a:hover {
  color: var(--bg-light-green);
}

.hdr-rgt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.header-col-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

.header-col-flex ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}

.header-col-flex ul li a {
  font-size: 11px;
  padding: 6px 0;
  display: inline-block;
  color: var(--bg-body-color);
}

.header-col-flex ul li a:hover {
  color: var(--bg-light-green);
}

.header-col-lft ul li {
  position: relative;
}

.header-col-lft ul li::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2px;
  height: 15px;
  border-radius: 20px;
  background-color: var(--bg-body-color);
  opacity: 0.5;
}

.header-col-lft ul li:last-child:after {
  display: none;
}

.header-col-lft ul li a i {
  font-size: 10px;
  margin-right: 2px;
}

.header-col-rgt ul {
  gap: 0px !important;
}

.header-col-rgt ul li a {
  padding: 6px 9px;
  border-left: 1px solid #9b9b9b78;
}

.header-col-rgt ul li:last-child a {
  border-right: 1px solid #9b9b9b78;
}

.header-col-rgt ul li a:hover {
  background-color: var(--bg-light-green);
  border-color: var(--bg-light-green);
  color: var(--bg-white);
}

.navbar-collapse {
  -webkit-box-flex: unset;
  -ms-flex-positive: unset;
  flex-grow: unset;
}

/* header end */

/* banner */

.banner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background-color: var(--bg-body-color);
}

.banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(39, 39, 39, 1) 100%
  );
  z-index: -1;
}

.banner .image-overlay {
  z-index: -1;
}

.banner-logo img {
  max-width: 100%;
  height: auto;
}

.banner-ani-img {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  z-index: -1;
}

.banner_image {
  width: 16.66%;
  height: 100%;
  overflow: hidden;
  position: relative;
  will-change: transform, opacity;
}

.banner_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform, filter;
}

/* banner end */

/* footer */

.page-footer {
  position: relative;
  z-index: 1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ftr-top {
  padding: 30px 0;
  border-bottom: 1px solid #ffffff1a;
}

.ftr-col-add-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 2px solid var(--bg-pr-green);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ftr-col-add-img img {
  max-width: 17px;
  filter: brightness(0) saturate(100%) invert(58%) sepia(83%) saturate(403%)
    hue-rotate(47deg) brightness(101%) contrast(96%);
}

.ftr-col-adds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  height: 100%;
  position: relative;
  border-right: 1px solid #ffffff1a;
  height: 100%;
  z-index: 1;
}

.ftr-hd {
  font-weight: 700;
  font-size: 20px;
  color: var(--bg-pr-green);
  margin-bottom: 5px;
}

.ftr-col-add-img-cont a,
.ftr-col-add-img-cont p {
  color: var(--bg-light-wh);
  font-size: 13px;
}

.ftr-col-add-img-cont a {
  text-decoration: underline;
}

.ftr-col-add-img-cont a:hover {
  text-decoration: underline;
  color: var(--bg-green);
}

.ftr-top .col-md-4:nth-child(2) .ftr-col-adds {
  padding: 0 40px;
}

.ftr-logo-link {
  display: inline-block;
  max-width: 120px;
  margin-bottom: 15px;
}

.ftr-center {
  padding: 30px 0;
}

.ftr-center p {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-col .cmn-btn {
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 500;
}

.footer-col ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  display: inline-block;
  font-size: 14px;
  color: var(--bg-light-wh);
  border-bottom: 1px solid transparent;
}

.footer-col .ftr-hd {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.footer-col .ftr-hd::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: var(--bg-pr-green);
}

.footer-col-row {
  --bs-gutter-x: 30px;
}

.footer-col ul li.current-menu-item a,
.footer-col ul li a:hover {
  color: var(--bg-white-wh);
  border-color: var(--bg-white);
}

.rs-blog-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  border-bottom: 1px solid #ffffff1a;
  padding: 9px 0;
}

.footer-col {
  border-right: 1px solid #ffffff1a;
  height: 100%;
  padding-right: 10px;
}

.footer-col-row .col-md-4:nth-child(3) .footer-col,
.footer-col-row .col-md-4:nth-child(2) .footer-col {
  padding-top: 20px;
}

.footer-col-row .col-md-4:last-child .footer-col {
  border: none;
}

.rs-blog-col:last-child {
  border-bottom: none;
}

.rs-blog-col-link {
  width: 70px;
  height: 65px;
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.rs-blog-col-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.rs-blog-col-cont span {
  font-size: 10px;
  display: block;
  font-weight: 500;
  color: #747474;
  margin-bottom: 5px;
}

.rs-blog-col-cont span i {
  margin-right: 3px;
}

.rs-blog-name {
  display: block;
  color: var(--bg-light-wh);
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
}

.rs-blog-name:hover {
  color: var(--bg-green);
}

.footer-col-row .col-md-4:last-child .ftr-col-adds {
  border: none;
}

.copy-rgt-txt {
  font-size: 13px;
}

.copy-rgt-txt p a {
  text-decoration: underline;
  color: var(--bg-green);
  font-size: 13px;
  font-weight: 600;
}

.copy-rgt-txt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.copy-rgt-txt ul li {
  margin-left: 10px;
}

.copy-rgt-txt ul li a {
  font-size: 12px;
  width: 29px;
  height: 29px;
  border: 1px solid #9e9e9e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
}

.copy-rgt-txt ul li a:hover {
  color: var(--bg-white);
  background-color: var(--bg-green);
  border-color: var(--bg-green);
}

.ftr-bottom {
  padding: 10px 0;
  background-color: #0c0c0c;
}

.ftr-bottom .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* footer end */

/* cta */

.cta-sec {
  background-color: #77ca240f;
  position: relative;
  z-index: 1;
}

.img-cta-lft {
  position: absolute;
  left: 55%;
  bottom: 17%;
  max-width: 60px;
  -webkit-transform: rotate(-14deg);
  -ms-transform: rotate(-14deg);
  transform: rotate(-14deg);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.img-cta-rgt {
  position: absolute;
  right: 30%;
  top: 24%;
  max-width: 48px;
  -webkit-transform: rotate(24deg);
  -ms-transform: rotate(24deg);
  transform: rotate(24deg);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cta-img {
  max-width: 50px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cta-img img {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%)
    saturate(7500%) hue-rotate(248deg) brightness(106%) contrast(98%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(248deg) brightness(106%) contrast(98%);
}

.cta-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.cta-cont-wrap h2 {
  color: var(--bg-white);
  font-size: 28px;
  margin-bottom: 13px;
}

.cta-cont-wrap p {
  color: var(--bg-white);
  font-size: 14px;
}

.cta-btns {
  text-align: right;
}

.cta-sec .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* cta end */

/* Course */

.course-sec {
  position: relative;
  z-index: 2;
}

.cmn-hd span {
  font-weight: 500;
  font-size: 16px;
  overflow: hidden;
  text-align: center;
  min-width: 112px;
  font-family: var(--heading-font);
  margin-bottom: 0px;
  padding: 4px 20px;
  display: inline-block;
  color: #6bdd1d;
  background: rgba(107, 221, 29, 0.23);
  border-radius: 15.5px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
}

.course-list {
  margin-top: 20px;
}

.course-list-col-box {
  background-color: var(--bg-white);
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(13, 14, 67, 0.08);
  box-shadow: 0px 5px 15px 0px rgba(13, 14, 67, 0.08);
  padding: 35px;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 50px;
  border-top: 2px solid var(--bg-green);
}

.js-course-list .slick-list {
  margin: 0 -15px;
}

.course-list-col {
  padding: 15px;
  height: auto;
}

.course-list-col-box-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 75px;
  gap: 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.course-list-col-box-img {
  max-width: 53px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.course-list-col-box-img img {
  -webkit-filter: brightness(0) saturate(100%) invert(34%) sepia(16%)
    saturate(1229%) hue-rotate(81deg) brightness(90%) contrast(92%);
  filter: brightness(0) saturate(100%) invert(34%) sepia(16%) saturate(1229%)
    hue-rotate(81deg) brightness(90%) contrast(92%);
}

.course-list-col-box-cont h3 {
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  font-size: 18px;
}

.course-list-col-box ul {
  margin-bottom: 35px;
}

.abt-cont-list-col ul li,
.course-list-col-box ul li {
  padding-left: 28px;
  font-size: 14px;
  margin-bottom: 20px;
  position: relative;
}

.abt-cont-list-col ul li:last-child {
  margin-bottom: 0;
}

.abt-cont-list-col ul li::before,
.course-list-col-box ul li::before {
  content: "\f058";
  font-family: "fontawesome";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--bg-white);
  font-size: 17px;
}

.js-course-list .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.course-list-col-box .cmn-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 0 0 12px 12px;
  text-align: center;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.slick-dots li button {
  border: none;
  outline: none;
  font-size: 0px;
  width: 7px;
  height: 5px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0.6;
  background-color: var(--bg-light-green);
}

.slick-dots li.slick-active button {
  width: 25px;
  opacity: 1;
  background-color: var(--bg-green);
}

.object-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Course end */

/* about */

.abt-img-list-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}

.abt-img-list-col {
  max-width: 140px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
}

.abt-col-imgs {
  max-width: 500px;
}

.abt-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.abt-col-imgs {
  position: relative;
  z-index: 1;
}

.abt-col-imgs::after {
  content: "";
  width: 60%;
  height: 60%;
  position: absolute;
  top: 50%;
  left: 35%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 100px 0 var(--bg-body-color);
  box-shadow: 0 0 100px 0 var(--bg-body-color);
  z-index: -3;
}

.video-col-cont {
  max-width: 550px;
}

.abt-col-imgs.active::after {
  opacity: 1;
}

.abt-img-bottom,
.abt-img-center,
.abt-img-top {
  position: absolute;
  top: 20px;
  left: -9px;
  width: 175px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 13px;
  padding: 10px;
  z-index: 1;
}

.abt-img-center {
  top: 47%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -96px;
}

.abt-img-bottom {
  top: unset;
  bottom: 9%;
}

.abt-col-imgs .image-overlay {
  -o-object-fit: contain;
  object-fit: contain;
}

.abt-img-top .image-overlay {
  -webkit-filter: brightness(0) saturate(100%) invert(32%) sepia(94%)
    saturate(2105%) hue-rotate(119deg) brightness(93%) contrast(90%);
  filter: brightness(0) saturate(100%) invert(32%) sepia(94%) saturate(2105%)
    hue-rotate(119deg) brightness(93%) contrast(90%);
}

.abt-icon {
  max-width: 50px;
  margin: 0 auto;
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%)
    hue-rotate(270deg) brightness(97%) contrast(103%);
}

.abt-img-center .image-overlay {
  -webkit-filter: brightness(0) saturate(100%) invert(63%) sepia(75%)
    saturate(431%) hue-rotate(47deg) brightness(93%) contrast(99%);
  filter: brightness(0) saturate(100%) invert(63%) sepia(75%) saturate(431%)
    hue-rotate(47deg) brightness(93%) contrast(99%);
}

.abt-col-imgs h3 {
  color: var(--bg-body-color);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

.abt-img-bottom .image-overlay {
  -webkit-filter: brightness(0) saturate(100%) invert(92%) sepia(92%)
    saturate(31%) hue-rotate(71deg) brightness(106%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(92%) sepia(92%) saturate(31%)
    hue-rotate(71deg) brightness(106%) contrast(107%);
}

.abt-col-imgs .abt-img-bottom h3 {
  color: var(--bg-body-color);
}

.hexagon-img-anima {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  opacity: 0.1;
  -webkit-filter: brightness(0) saturate(100%) invert(29%) sepia(97%)
    saturate(1352%) hue-rotate(113deg) brightness(102%) contrast(90%);
  filter: brightness(0) saturate(100%) invert(29%) sepia(97%) saturate(1352%)
    hue-rotate(113deg) brightness(102%) contrast(90%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: rotatePause 5s linear infinite;
  animation: rotatePause 5s linear infinite;
  z-index: -1;
}

@-webkit-keyframes rotatePause {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  85.7% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
}

@keyframes rotatePause {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  85.7% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
}

/* about end */

/* banner */

.slick-arrow {
  position: absolute;
  top: 50%;
  bottom: unset;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--bg-white);
  font-size: 0;
  z-index: 1;
}

.slick-prev {
  left: 50px;
}

.slick-prev::after {
  content: "\f060";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: "fontawesome";
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--bg-body-color);
  font-size: 18px;
}

.slick-next:hover::after,
.slick-prev:hover::after {
  color: var(--bg-white);
}

.slick-next::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: "fontawesome";
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--bg-body-color);
  font-size: 18px;
}

.slick-next {
  right: 50px;
}

.slick-arrow:hover {
  background-color: var(--bg-green);
}

/* banner end */

/* blog */

.blog-sec .cmn-hd span {
  margin-bottom: 7px;
}

.blog-sec .cmn-hd h2 {
  font-size: 31px;
}

.blog-hd-p p {
  font-size: 15px;
  line-height: 1.5;
}

.blog-hd-row {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.js-blog-slider {
  margin-top: 40px;
}

.blog-link-img-wrap {
  position: relative;
  padding-top: 63%;
  z-index: 1;
}

.js-blog-slider .slick-list {
  margin: 0 -15px;
}

.js-blog-slider .slick-track {
  display: flex !important;
}

.blog-col {
  padding: 15px;
  height: auto;
}

.blog-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 12px;
  height: 100%;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #33333359;
  box-shadow: 0 0 10px #33333359;
  border: 1px solid #ffffff1a;
  background: rgba(255, 255, 255, 0.05);
}

.blog-link-img {
  width: 100%;
  position: relative;
  margin-bottom: 14px;
}

.blog-link-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-body-color);
  opacity: 0.4;
}

.blog-link-img-wrap .image-overlay {
  z-index: -2;
}

.blog-icon-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--bg-white);
  border-radius: 100px 0 0 0;
  padding: 23px 0px 0 18px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
  background-color: #06c12ea3;
}

.blog-icon-arrow i {
  color: var(--bg-white);
  font-size: 20px;
}

.blog-name {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--bg-white);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-link-cont {
  padding: 10px;
}

.blog-link p {
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.blog-link-date {
  margin-bottom: 12px;
}

.blog-link-date ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.blog-link-date ul li {
  font-size: 11px;
  color: var(--bg-light-wh);
  font-weight: 600;
  position: relative;
  font-family: var(--default-font);
  padding-left: 13px;
}

.blog-link-date ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  font-size: 10px;
}

.blog-link-date ul li.admin-txt::before {
  content: "\f007";
}

.blog-link-date ul li.date-txt::before {
  content: "\f073";
}

.blog-link:hover .blog-icon-arrow {
  opacity: 1;
  width: 110px;
  height: 100px;
}

.blog-link:hover .blog-name {
  color: var(--bg-pr-green);
}

.blog-categories {
  background-color: #f3f3f3;
  border-radius: 20px;
  font-size: 10px;
  position: absolute;
  color: var(--bg-body-color);
  top: 14px;
  right: 12px;
  z-index: 2;
  display: inline-block;
  padding: 3px 7px;
}

/* blog end */

/* faculty-sec */

.faculty-sec {
  padding-top: 50px;
  position: relative;
  z-index: 1;
}

.faculty-sec .banner-wave {
  bottom: -2px;
}

.faculty-col-cont p {
  margin-bottom: 10px;
}

.faculty-col-cont p:last-child {
  margin-bottom: 0;
}

.faculty-top {
  margin-bottom: 50px;
}

.faculty-tab-wrap {
  overflow: hidden;
  margin-left: calc((100% - 1144px) / 2);
  padding: 0 12px;
}

.faculty-tabs {
  position: relative;
  z-index: 1;
}

.faculty-tabs::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #8a8a8a87;
  z-index: -1;
}

.faculty-tabs .nav-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  border-radius: 10px 10px 0 0;
  background-color: #8a8a8a87;
  border-bottom: none;
  color: var(--bg-white);
  gap: 15px;
  padding: 15px 33px;
}

.faculty-tabs .nav-link img {
  max-width: 28px;

  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%)
    saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(288deg) brightness(102%) contrast(102%);
}

.faculty-tabs .nav-link.active {
  background-color: var(--bg-white);
  color: var(--bg-body-color);
}

.faculty-tabs .nav-link.active img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%)
    hue-rotate(9deg) brightness(101%) contrast(100%);
}

.js-faculty-slider {
  margin-top: 10px;
}

.faculty-slider-box {
  border: 1px solid #ffffff1a;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px #33333359;
  box-shadow: 0 0 10px #33333359;
  padding: 35px;
  border-radius: 8px;
  position: relative;
  backdrop-filter: blur(6px);
}

.faculty-slider-img {
  width: 68px;
  height: 68px;
  background-color: #a9a9a9;
  border-radius: 100%;
  overflow: hidden;
  padding: 5px;
  margin-bottom: 14px;
}

.faculty-slider-img img {
  border-radius: 100%;
}

.js-faculty-slider .slick-list {
  margin: 0 -10px;
  padding-right: 80px;
}

.faculty-slider-col {
  padding: 10px;
}

.arrow-cd {
  position: absolute;
  top: 62px;
  right: 0;
  max-width: 140px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* faculty-sec end */

/* video */

.video-wrap {
  position: relative;
  z-index: 1;
}

.video-wrap-two {
  position: absolute;
  background-color: var(--bg-body-color);
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 300px;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.video-wrap-two img {
  mix-blend-mode: difference;
}

.video-wrap-one {
  max-width: 400px;
  overflow: hidden;
  border-radius: 10px;
  margin-left: auto;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: none;
  outline: none;
  padding: 0;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--bg-white);
  border-radius: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  font-size: 22px;
  color: var(--bg-green);
}

.play-btn:hover {
  background-color: var(--bg-green);
  color: var(--bg-white);
}

.faculty-slider-box h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #77ca24;
}

.faculty-slider-box span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #dedede;
  margin-bottom: 15px;
  display: block;

  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.faculty-slider-box p {
  margin: 0;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

/* video end */

/* inner banner */

.inner-banner {
  position: relative;
  z-index: 1;
  padding: 120px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #97942817;
  backdrop-filter: blur(35px);
  min-height: 500px;
}

.inner-banner .image-overlay {
  object-position: top;
}

.inner-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000008e;
  z-index: -1;
}

.inner-banner-cont {
  text-align: center;
}

.inner-banner-cont ul {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
}

.inner-banner-cont ul li,
.inner-banner-cont ul li a {
  color: var(--bg-white);
  font-weight: 500;
  font-size: 14px;
  font-family: var(--heading-font);
}

.inner-banner-cont ul li i {
  font-size: 13px;
  margin-right: 5px;
  color: var(--bg-green);
}

.inner-banner-cont ul li {
  position: relative;
  padding-right: 30px;
}

.inner-banner-cont ul li::before {
  content: "\f054";
  font-family: "fontawesome";
  position: absolute;
  top: 3px;
  font-size: 10px;
  right: 13px;
  color: var(--bg-light-green);
}

.inner-banner-cont ul li:last-child::before {
  display: none;
}

.inner-banner-cont ul li:last-child {
  padding-right: 0;
}

.inner-banner-cont .h1-heading,
.inner-banner-cont h1 {
  margin-bottom: 13px;
}

/* inner banner end*/
/* about */

.about-in-row {
  --bs-gutter-x: 35px;
}

.about-in-img-one {
  border-radius: 10px;
  overflow: hidden;
  max-width: 480px;
  margin-left: auto;
}

.about-in-img-one img {
  width: 100%;
}

.our-mission-sec .about-in-img-one {
  margin-left: 0;
}

.about-in-img {
  position: relative;
  z-index: 1;
}

.about-in-img-two {
  position: absolute;
  top: 50%;
  left: -4%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 200px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px #33333349;
  box-shadow: 0 0 10px #33333349;
}

.about-in-img-two img {
  width: 100%;
}

.our-mission-sec .about-in-img-two {
  left: unset;
  right: 0;
}

.about-in-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* about end */

/* what-we-wrap */

.what-we-wrap {
  margin-top: 55px;
}

.what-we-col-img {
  max-width: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100%;
  border: 1px solid var(--bg-pr-green);
  padding: 10px;
  flex-shrink: 0;
}

.what-we-col-img img {
  width: 100%;
  filter: brightness(0) saturate(100%) invert(99%) sepia(55%) saturate(7203%)
    hue-rotate(33deg) brightness(90%) contrast(93%);
}

.what-we-wrap-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.why-ch-col .cmn-hd {
  margin-bottom: 25px;
}

.why-ch-col ul li {
  padding-left: 28px;
  margin-bottom: 20px;
  position: relative;
}

.why-ch-col ul li::before {
  content: "\f058";
  font-family: "fontawesome";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--bg-green);
  font-size: 17px;
}

.why-ch-col ul li:last-child {
  margin-bottom: 0;
}

.why-ch-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  --bs-gutter-x: 50px;
  --bs-gutter-y: 40px;
}

.why-ch-col {
  border-radius: 0 0 80px 0;
  overflow: hidden;
}

.in-house-wrap {
  margin-top: 40px;
}

.in-house-col-img {
  width: 80px;
  height: 80px;
  background-color: var(--bg-pr-green);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 100%;
  padding: 3px;
  overflow: hidden;
}

.in-house-col-img img {
  border-radius: 100%;
}

.in-house-col {
  padding: 30px;
  border-radius: 11px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  gap: 25px;
  z-index: 1;
  border: 1px solid #ffffff1a;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px #33333359;
  backdrop-filter: blur(6px);
}

.in-house-col::before {
  content: "";
  position: absolute;
  left: 64px;
  top: 0;
  width: 14px;
  height: 100%;
  background-color: transparent;
  border-left: 3px solid var(--bg-pr-green);
  border-right: 3px solid var(--bg-pr-green);
  z-index: -1;
}

.in-house-col-cont {
  padding-top: 14px;
}

.in-house-col-cont h3 {
  font-size: 22px;
  margin-bottom: 8px;
  text-transform: capitalize;
  color: var(--bg-pr-green);
}

.in-house-col-cont span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bg-white);
  margin-bottom: 15px;
  display: block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.in-house-col-cont p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

.in-house-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.courses-col-cont-top {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.courses-col-cont-top li {
  font-weight: 600;
  opacity: 0.9;
}

.courses-col-cont-top li i {
  color: var(--bg-green);
  font-size: 16px;
  margin-right: 5px;
}

.courses-button {
  margin-top: 30px;
}

.courses-button .cmn-btn-white {
  border-color: var(--bg-light-green);
  background-color: var(--bg-white);
  color: var(--bg-light-green);
}

.courses-button .cmn-btn-white:hover {
  background-color: var(--bg-body-color);
  color: var(--bg-white);
  border-color: var(--bg-body-color);
}

.courses-button .cmn-btn + .cmn-btn {
  margin-left: 10px;
}

.courses-col-cont-center li {
  padding-left: 28px;
  margin-bottom: 20px;
  position: relative;
}

.courses-col-cont-center li:last-child {
  margin-bottom: 0;
}

.courses-col-cont-center li::before {
  content: "\f058";
  font-family: "fontawesome";
  position: absolute;
  left: 0;
  top: 0px;
  color: var(--bg-green);
  font-size: 17px;
}

.courses-col-conts p {
  margin: 0 0 13px;
}

.courses-col-conts h3 {
  font-size: 23px;
  color: #333;
}

.course-sec .accordion-item {
  margin-bottom: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  border-top: 1px solid #979797;
}

.course-sec .accordion-button {
  padding: 20px 0;
  padding-right: 50px;
  font-weight: 600;
  color: var(--bg-body-color);
  background: transparent;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-transform: capitalize;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  border: none;
}

.accordion-button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.list-op {
  display: inline-flex;
  background-color: #ffffff4a;
  backdrop-filter: blur(3px);
  gap: 14px;
  padding: 9px 14px;
  border-radius: 9px 0 0 0;
  position: absolute;
  right: 0;
  bottom: 0;
}

.list-op li {
  color: var(--bg-white);
  font-size: 12px;
  font-family: var(--default-font);
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
}

.list-op li::before {
  content: "\f192";
  font-size: 10px;
  margin-right: 4px;
  display: inline-block;
  font-family: "fontawesome";
}

.accordion-button::after {
  content: "\f107";
  font-family: "fontawesome";
  position: absolute;
  top: 26px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  font-size: 26px;
  height: 30px;
  background: transparent;
}

.course-sec .accordion-item:last-child {
  border-bottom: 1px solid #979797;
}

.course-sec .accordion-button:not(.collapsed)::after {
  background: none;
}

.course-acco {
  margin-top: 20px;
}

.accordion-body {
  border: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none;
  background: #b7dcb43d;
  color: var(--bg-light-wh);
  padding: 25px;
}

.cus-accordion ul li {
  padding-left: 28px;
  margin-bottom: 20px;
  position: relative;
}

.cus-accordion ul li:last-child {
  margin-bottom: 0;
}

.cus-accordion ul li::after {
  content: "\f058";
  font-family: "fontawesome";
  position: absolute;
  left: 0;
  top: 0px;
  color: var(--bg-green);
  font-size: 17px;
}

.cus-accordion ul li span {
  font-weight: 600;
  text-transform: capitalize;
  color: var(--bg-white);
  padding: 2px 4px;
  border-radius: 3px;
  background-color: var(--bg-green);
}

.cus-accordion ul li span.prc {
  background-color: var(--bg-light-green);
}

.course-heading-top h3 {
  margin-bottom: 10px;
}

.course-heading-top {
  margin-bottom: 50px;
}

.course-heading-top ul li::before {
  content: "\f1ce";
}

.about-in-img-wap {
  max-width: 100%;
  -webkit-box-shadow: 0 0 10px #33333366;
  box-shadow: 0 0 10px #33333366;
}

.blogs-list-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.blog-filter {
  position: relative;
  margin-bottom: 40px;
}

.blog-filter input {
  width: 100%;
  height: 46px;
  background: #ffffff;
  border: 1px solid #000000;
  color: #000;
  border-radius: 28px;
  outline: none;
  padding: 0 20px;
  padding-right: 80px;
}

.blog-filter input::placeholder {
  color: var(--bg-body-color);
}

.searct-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border: none;
  padding: 0 21px;
  background-color: transparent;
  color: #51830d;
}

.blog-rgt-col h4 {
  font-weight: 700;
  font-size: 22px;
  color: #51830d;
  font-family: "Public Sans", sans-serif;
}

.categorie-list li {
  margin-bottom: 7px;
}

.categorie-list li a {
  text-decoration: none;
  font-size: 14px;
  color: var(--bg-light-wh);
  border: 1px solid #51830d;
  overflow: hidden;
  padding: 12px 22px;
  position: relative;
  display: block;
  transition: all 0.3s ease-in-out;
  border-radius: 25px;
  padding-right: 80px;
  z-index: 1;
}

.categorie-list li a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 66px;
  height: 100%;
  background-color: #51830d;
  transition: all 0.3s ease-in-out;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -2;
}

.categorie-list li a::after {
  content: "\f061";
  position: absolute;
  right: 19px;
  top: 45%;
  transform: rotate(-45deg) translate(0%, -50%);
  font-size: 14px;
  color: var(--bg-white);
  font-family: "fontawesome";
}

.categorie-list li a:hover {
  background-color: #51830d;
  color: var(--bg-white);
}

.categorie-list li a:hover::before {
  background-color: var(--bg-white);
}

.categorie-list li a:hover::after {
  color: #000;
}

/* what-we-wrap end */

/* gallery */

.gall-img-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50% 0;
  border-radius: 7px;
  background-color: var(--bg-body-color);
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.gallery-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-inner .ftr-col-adds {
  border: none;
  margin-bottom: 15px;
}

.about-in-img-contact {
  background-color: var(--bg-body-color);
  position: relative;
  padding-top: 30%;
}

.about-in-img-contact iframe {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  outline: none;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
}

.rs-blog-name {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.slider-controls {
  margin-top: 25px;
}

.faculty-controls,
.slider-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faculty-controls .slick-arrow,
.slider-controls .slick-arrow {
  width: 30px;
  height: 30px;
  position: relative;
  transform: translate(0, 0);
  top: unset;
  font-size: 15px;
  color: var(--bg-white);
  color: var(--bg-body-color);
  left: unset;
  background-color: var(--bg-light-green);
}

.slider-controls .slick-arrow {
  color: var(--bg-white);
}

.slider-controls-left {
  display: flex;
  align-items: center;
}

.slider-controls-left .slider-info {
  width: 50px;
  text-align: center;
}

.faculty-info span,
.slider-controls-left .slider-info span {
  font-weight: 600;
  color: var(--bg-body-color);
  position: relative;
  padding-right: 16px;
}

.faculty-info span {
  color: var(--bg-white);
}

.faculty-info span:last-child,
.slider-controls-left .slider-info span:last-child {
  padding-right: 0;
}

.faculty-info span:last-child::before,
.slider-controls-left .slider-info span:last-child::before {
  display: none;
}

.faculty-info span::before,
.slider-controls-left .slider-info span::before {
  content: " / ";
  position: absolute;
  top: 1px;
  right: 2px;
  transform: rotate(12deg);
}

.faculty-progress,
.slider-progress {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  border-radius: 20px;
}

.faculty-progress .faculty-progress-bar,
.slider-progress .progress {
  height: 100%;
  width: 0%;
  background: var(--bg-body-color);
  transition: width 0.4s ease;
}

.faculty-progress .faculty-progress-bar {
  background-color: var(--bg-white);
}

.slider-progress .progress {
  background-color: var(--bg-light-green);
}

.faculty-controls .slick-arrow:hover {
  background-color: var(--bg-body-color);
  color: var(--bg-white);
}

.custom-prev:hover,
.custom-next:hover {
  background-color: var(--bg-body-color);
  color: var(--bg-white);
}

.faculty-controls .slick-arrow {
  background-color: var(--bg-white);
  color: var(--bg-green);
}

.faculty-controls {
  margin-top: 20px;
}

.home-contact-row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  align-items: center;
}

.inner-contact-home-img img {
  width: 100%;
}

.contact-form {
  padding: 50px 60px;
  background-color: #353535;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-form-row {
  --bs-gutter-x: 15px;
  --bs-gutter-y: 15px;
}

.contact-form-col .cmn-btn {
  width: 100%;
  justify-content: center;
}

.contact-form-col .cmn-btn::after {
  position: relative;
  top: 3px;
  right: -11px;
}

.faq-sec {
  position: relative;
  z-index: 2;
}

.faq-wrap {
  margin: 40px auto 0;
  max-width: 750px;
}

.faq-wrap .accordion-item {
  margin-bottom: 25px;
  border-radius: 22px;
  box-shadow: 0 0 10px #33333359;
  border: none;
  background: rgba(255, 255, 255, 0.05);
}

.faq-wrap .accordion-item .accordion-button {
  color: var(--bg-white);
  box-shadow: none !important;
  font-weight: 600;
  border-radius: 50px;
  outline: none;
  padding: 0 20px;
  border: 1px solid #333;
  background: #b7dcb43d;
}

.faq-wrap .accordion-button:not(.collapsed)::after {
  background-image: none;
  top: 5px;
}

.faq-wrap .accordion-button::after {
  top: 8px;
  font-size: 16px;
  right: 10px;
}

.faq-wrap .accordion-item:first-of-type > .accordion-header .accordion-button,
.faq-wrap
  .accordion-item:last-of-type
  > .accordion-header
  .accordion-button.collapsed,
.faq-wrap .accordion-item:last-of-type {
  border-radius: 27px;
}

.faq-wrap .accordion-body {
  background-color: transparent;
}

.faq-wrap .accordion-body b {
  margin-bottom: 10px;
  display: block;
}

.faq-wrap .accordion-body ul {
  margin-bottom: 12px;
}

.faq-wrap .accordion-body ul li {
  position: relative;
  top: 0;
  padding-left: 17px;
  margin-bottom: 8px;
}

.faq-wrap .accordion-body ul li:last-child {
  margin-bottom: 0;
}

.faq-wrap .accordion-body ul li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 4px;
  height: 4px;
  background-color: #d4d4d4;
  border-radius: 100px;
}

.faq-wrap .accordion-body a {
  color: var(--bg-green);
  text-decoration: underline;
  font-family: var(--default-font);
  font-size: 16px;
}

.text-slider {
  color: white;
  -webkit-text-stroke: 2px black;
  opacity: 0.4;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.text-slider h2 {
  font-size: 8vw;
  letter-spacing: 3px;
}

.col-slider-txt {
  padding: 0 20px;
}

.video-dc-img {
  margin-top: 30px;
  border-radius: 5px 100px 5px 100px;
  overflow: hidden;
}

.video-dc-sec h2 b {
  font-weight: 700;
}

.video-dc-cont p {
  margin-bottom: 12px;
}

.video-dc-cont ul {
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
}

.video-dc-cont ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 5px;
}

.video-dc-cont ul li::after {
  content: "\f058";
  font-family: "fontawesome";
  position: absolute;
  left: 0;
  top: 0px;
  color: var(--bg-green);
  font-size: 17px;
}

.video-dc-sec {
  position: relative;
  z-index: 2;
}

.video-dc-row {
  --bs-gutter-x: 35px;
  --bs-gutter-y: 30px;
}

.student-review-sec {
  position: relative;
  padding-top: 0;
  z-index: 2;
}

.student-review-slider {
  margin-top: 40px;
}

.student-review-box {
  padding: 40px 30px 20px;
  border: 14px;
  border-radius: 10px;
  display: table;
  box-shadow: 0 0 10px #33333359;
  border: 1px solid #ffffff1a;
  background: rgba(255, 255, 255, 0.05);
}

.student-review-box-img {
  max-width: 170px;
  float: left;
  margin: 0 30px 10px 0;
  position: relative;
}

.student-review-box-img::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 45px;
  height: 45px;
  background-image: url(.././images/quote.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.student-review-box-img img {
  width: 100%;
  border-radius: 10px;
}

.student-review-col {
  padding: 12px;
}

.student-review-box-cont p {
  margin-bottom: 10px;
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
}

.student-review-box-cont ul {
  display: flex;
  margin-bottom: 4px;
  gap: 5px;
}

.student-review-box-cont ul li i {
  color: #ffc107;
  font-size: 10px;
}

.student-review-box-cont h3 {
  font-size: 18px;
  color: var(--bg-pr-green);
}

.js-student-review .slick-prev {
  left: -10px;
  background-color: var(--bg-pr-green);
}

.js-student-review .slick-next {
  right: -10px;
  background-color: var(--bg-pr-green);
}

.js-student-review .slick-next::after,
.js-student-review .slick-prev::after {
  color: var(--bg-body-color);
}

.js-student-review .slick-arrow:hover {
  background-color: var(--bg-white);
}

.js-student-review .slick-arrow:hover::after {
  color: var(--bg-body-color);
}

.our-faculty-box-flex {
  display: flex;
  align-items: center;
  gap: 15px;
}

.our-faculty-box-img {
  width: 45px;
  height: 45px;
  border-radius: 50px;
  overflow: hidden;
}

.our-faculty-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-faculty-box-cont h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--bg-green);
}

.our-faculty-box p {
  color: #6b6b6b;
}

.our-faculty-box-cont p {
  font-size: 10px;
  font-weight: 600;
}

.our-faculty-box {
  background-color: var(--bg-white);
  box-shadow: 0 0 10px #b0b0b05c;
  padding: 35px;
  border-radius: 10px;
}

.our-faculty-row {
  align-items: center;
}

.our-faculty-col {
  padding: 12px;
}

.js-our-faculty .slick-list {
  padding: 180px 0 !important;
}

.our-faculty-box-wrap {
  padding-right: 50px;
  transition: all 0.3s ease-in-out;
}

.our-faculty-col.slick-current .our-faculty-box-wrap {
  padding: 0 0 0 50px;
}

.our-faculty-wrap {
  position: relative;
}

.our-faculty-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 68%
  );
}

.our-faculty-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 68%
  );
}

.video-dc-cont p:first-child {
  font-size: 17px;
}

.video-dc-cont p b {
  color: var(--bg-green);
}

.video-sec {
  position: relative;
  z-index: 1;
}

.overlay-tree {
  max-width: 320px;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.our-video-wrap {
  position: absolute;
  top: 0;
  transition: all 0.3s ease-in-out;
  right: 0;
  height: 100%;
  width: calc(50% - 80px);
}

.our-video-wrap.active {
  width: 100%;
}

.play-button-video {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border: none;
  box-shadow: 0px 4px 45px rgba(255, 255, 255, 0.25);
  background-color: rgb(255, 255, 255);
  left: -53px;
  z-index: 99;
  animation: fade infinite 1500ms linear;
}

.play-button-video img {
  max-width: 30px;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.our-video-wrap video {
  border-radius: 60% 0 0 60%;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  object-position: top;
}

.our-video-wrap.active video {
  border-radius: 0;
}

.video-sec {
  padding: 140px 0;
}

.play-button-video.playing {
  left: 20px;
  width: 80px;
  height: 80px;
}

.play-button-video.playing img {
  max-width: 25px;
}

.video-test-overlay {
  position: absolute;
  right: 0;
  top: -80%;
  max-width: 828px;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

@keyframes fade {
  0% {
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.2),
      0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  100% {
    box-shadow:
      0 0 0 15px #ffffff00,
      0 0 0 30px #ffffff00;
  }
}

.play-button-img-ps {
  opacity: 0;
}

.play-button-video.playing .play-button-img-ps {
  opacity: 1;
}

.play-button-video.playing .play-button-img-pl {
  opacity: 0;
}

.contact-form h2 {
  margin-bottom: 25px;
}

.video-sec .faculty-col-cont.cmn-hd h2 {
  font-size: 40px;
}

.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  width: 40px;
}

/* form-wrap-pop */

.form-wrap-pop .modal-dialog {
  width: 100%;
  max-width: 550px;
}

.form-wrap-pop .modal-content {
  background-color: #144508;
  border-radius: 30px;
}

.form-wrap-pop .modal-body {
  padding: 30px;
}

.img-pop {
  display: inline-block;
  max-width: 260px;
}

.pop-btn-close {
  position: absolute;
  top: 30px;
  right: 30px;
  transition: all 0.3s ease-in-out;
  width: 34px;
  height: 34px;
  border: 2px solid var(--bg-white);
  background-color: transparent;
  border-radius: 50%;
}

.pop-btn-close::before {
  content: "\58";
  font-family: "fontawesome";
  color: var(--bg-white);
  transition: all 0.3s ease-in-out;
  font-size: 13px;
}

.pop-btn-close:hover::before {
  color: var(--bg-green);
}

.pop-btn-close:hover {
  background-color: var(--bg-white);
}

.video-dc-cont ul {
  margin-bottom: 0;
}

.modal-form-top {
  margin-bottom: 16px;
}

.modal-form-body h2 {
  color: var(--bg-white);
  font-size: 28px;
}

.modal-form-body p {
  font-size: 14px;
  color: var(--bg-white);
  margin-bottom: 10px;
}

.modal-form-body p span {
  font-size: 16px;
  color: var(--bg-white);
  margin-top: 20px;
  display: block;
}

.form-col label {
  font-weight: 600;
  font-size: 13px;
  display: block;
  margin-bottom: 0px;
  color: var(--bg-white);
}

.form-col p {
  font-size: 10px;
}

.pop-form-row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.form-col input[type="tel"],
.form-col input[type="text"],
.form-col input[type="email"] {
  background: transparent;
  border: none;
  border-radius: 0px;
  color: var(--bg-white);
  padding: 0;
  border-bottom: 1px solid var(--bg-white);
}

.form-col input[type="tel"]::placeholder,
.form-col input[type="text"]::placeholder,
.form-col input[type="email"]::placeholder {
  opacity: 1;
  color: #8d8d8d;
}

.form-col select {
  background-color: transparent;
  border: none;
  border-radius: 0px;
  font-size: 14px;
  width: 100%;
  height: 45px;
  color: var(--bg-white);
  padding: 0;
  color: #8d8d8d;
  border-bottom: 1px solid var(--bg-white);
}

/* file */
.file-wrapper {
  vertical-align: middle;
  display: table-cell;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--bg-white);
  background: var(--bg-white);
  padding: 4px 7px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--bg-body-color);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.file-wrapper i {
  margin-right: 3px;
}

.file-wrapper:hover {
  background-color: transparent;
  color: var(--bg-white);
}

.file-wrapper input {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  font-size: 300px;
  height: 200px;
}

.file-list {
  margin-top: 10px;
}

.file-item span {
  font-size: 10px;
  color: var(--bg-white);
}

.removeFile {
  padding: 0;
  border: 1px solid var(--bg-white);
  border-radius: 50px;
  width: 18px;
  height: 18px;
  font-size: 9px;
  line-height: 1;
}

.blog-recent-post {
  margin-bottom: 25px;
}

.blog-lf-dtl-cont img {
  width: 100%;
  border-radius: 10px;
  margin: 15px 0;
}
.resmsg {
  color: #16720d;
  font-weight: bold;
}
.enquire-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #d4d531;
  z-index: 99;
  border: 0;
  text-transform: uppercase;
  writing-mode: tb;
  text-orientation: initial;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--bg-body-color);
  line-height: 1;
  padding: 19px 12px;
  height: max-content;
  border-radius: 4px 0 0 4px;
  transition: all 0.3s ease-in-out;
}

.enquire-btn:hover {
  background-color: var(--bg-white);
  color: var(--bg-body-color);
}

.faculty-img-cont-wrap {
  display: flex;
  gap: 30px;
}

.faculty-cont-col-b {
  padding-top: 25px;
}

.faculty-img-col-b {
  width: 280px;
  height: 280px;
  border: 5px solid var(--bg-white);
  box-shadow: 0 0 20px #28282821;
  border-radius: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.faculty-img-col-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faculty-cont-col-b span {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--bg-green);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.faculty-cont-col-b h3 {
  font-size: 45px;
}

.faculty-cont-col-b p {
  color: #636363;
  font-weight: 600;
}

.faculty-img-cont-center {
  margin-top: 40px;
}

.faculty-img-cont-center h4 {
  border-left: 4px solid var(--bg-green);
  color: var(--bg-body-color);
  font-size: 28px;
  padding-left: 10px;
  color: var(--bg-green);
}

.faculty-cont-col-b ul {
  display: flex;
  flex-wrap: wrap;
}

.faculty-cont-col-b ul li a {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #636363;
  color: #636363;
  border-radius: 3px;
}

.faculty-cont-col-b ul li a:hover {
  background-color: var(--bg-body-color);
  color: var(--bg-white);
  border-color: var(--bg-body-color);
}

.faculty-img-cont-box-row {
  padding: 30px 24px;
  background: rgba(12, 169, 64, 0.05);
  border-radius: 10px;
  margin-bottom: 20px;
}

.txt-col-flx {
  display: flex;
  gap: 20px;
}

.faculty-img-cont-box-row .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.txt-col-cont h5 {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--bg-body-color);
  opacity: 0.9;
}

.txt-col-img {
  width: 40px;
  height: 40px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4444447d;
  flex-shrink: 0;
  border-radius: 4px;
}

.txt-col-cont p {
  font-size: 12px;
  font-weight: 500;
  color: #636363;
}

.txt-col-img img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(29%) saturate(3187%)
    hue-rotate(76deg) brightness(96%) contrast(94%);
}

.faculty-list-right h3 {
  font-size: 25px;
  color: var(--bg-green);
}

.faculty-list-right ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faculty-list-right ul li a {
  display: flex;
  gap: 17px;
  align-items: center;
  font-size: 16px;
  border-radius: 20px;
  background-color: #ffffffdc;
  border: 1px solid #dddddd;
  padding: 10px;
}

.faculty-list-right ul li a span {
  width: 60px;
  height: 60px;
  display: inline-block;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 100%;
  background-color: #84c5739b;
  padding: 3px;
}

.faculty-list-right ul li a span img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 100%;
}

.annual-report-container {
  margin-left: calc((100% - 1144px) / 3);
  padding: 0 12px;
}

.resume-title-wrap h2 {
  text-transform: uppercase;
  color: var(--bg-light-green);
}

.resume-title-wrap {
  margin-bottom: 40px;
}

.resume-title-wrap h2 span {
  margin-top: 10px;
  text-align: right;
  display: block;
  color: #383a39;
}

.resume-title-wrap {
  border-left: 20px solid #383a39;
  padding: 60px 20px;
  position: relative;
}

.resume-title-wrap::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 20px;
  width: 80%;
  height: 10px;
  background-color: #383a39;
}

.resume-title-wrap::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 20px;
  width: 80%;
  height: 10px;
  background-color: var(--bg-light-green);
}

.timeline-container {
  padding-left: 70px;
  position: relative;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 200px;
  width: 35px;
  height: 224px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: var(--bg-light-green);
  z-index: -1;
}

.timeline-container::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 200px;
  width: 35px;
  height: 224px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 100% 50%);
  background-color: #434443;
  z-index: -2;
}

.annual-report-timeline {
  padding-bottom: 80px;
}

.timeline-item {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  margin-top: 200px;
}

.timeline-item-top {
  background-color: #434443;
  box-shadow: 0 0 1px 0px #444;
  height: 224px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.timeline-container-line {
  background-color: #434443;
  position: absolute;
  top: 200px;
  right: 0;
  width: calc(100% - 45px);
  height: 224px;
  z-index: -3;
}

.timeline-item-bottom {
  height: 200px;
}

.timeline-group:nth-child(odd) .timeline-item {
  flex-direction: column-reverse;
  margin-top: 0;
}

.timeline-group:nth-child(odd) .timeline-item-top {
  background: linear-gradient(
    90deg,
    rgba(87, 87, 87, 1) 0%,
    rgba(67, 68, 68, 1) 100%
  );
  flex-direction: column-reverse;
}

.timeline-group:nth-child(odd) .timeline-item-top h3 {
  margin: -11px 0 0px 0;
}

.resume-title {
  margin-top: 200px;
}

.timeline-item-top p {
  color: var(--bg-white);
  font-size: 10px;
  margin: 0 0 10px;
  max-width: 174px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.timeline-item-top h3 {
  color: var(--bg-white);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 -12px;
  font-size: 70px;
}

.timeline-group {
  border: none;
  display: flex;
  box-shadow: none;
  outline: none;
}

.timeline-item-bottom {
  padding: 20px 0 0;
}

.timeline-item-bottom h4 {
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.timeline-item-bottom span {
  font-weight: 700;
  color: var(--bg-light-green);
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}

.timeline-item-bottom p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.timeline-group:nth-child(odd) .timeline-item-bottom {
  padding-top: 0;
}

.contribution-sec .what-we-col-img {
  margin-left: 0;
}

.contribution-sec .what-we-col-cont {
  text-align: left;
}

.contribution-sec .what-we-col {
  box-shadow: 0 0 10px #33333324;
  padding: 25px;
  background-color: var(--bg-white);
  height: 100%;
  border-radius: 3px;
}

.blog-lf-dtl-cont h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 18px;
}

.list-check {
  margin-bottom: 20px;
}

.list-check li {
  padding-left: 25px;
  margin-bottom: 15px;
  color: #282828;
  position: relative;
}

.list-check li::after {
  content: "\f058";
  position: absolute;
  font-size: 14px;
  left: 0;
  top: 2px;
  color: #144508;
  font-family: "fontawesome";
}

.list-check li:last-child {
  margin-bottom: 0;
}

.blog-lf-dtl-cont table {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 25px;
}

.blog-lf-dtl-cont table tr th {
  padding: 11px;
  font-size: 14px;
  background-color: #000;
  color: var(--bg-white);
  font-weight: 600;
  border: none;
}

.blog-lf-dtl-cont table tr td {
  border: none;
  padding: 11px;
  font-size: 14px;
  font-family: var(--default-font);
}

.blog-lf-dtl-cont table tr:nth-child(even) {
  background-color: #ffffff22;
}

.blog-lf-dtl-cont table tr:nth-child(odd) {
  background-color: rgba(89, 89, 89, 0.56) 22;
}

.blog-lf-dtl-cont b,
.blog-lf-dtl-cont strong {
  color: var(--bg-pr-green);
  font-family: var(--default-font);
}

.countdown-wrap {
  background-color: #f6f7f8;
  padding: 40px 30px;
  border-radius: 10px;
  border-top: 2px solid var(--bg-green);
}

.countdown-wrap h3 {
  text-align: center;
}

.countdown {
  display: flex;
  margin: 0 -10px;
}

.countdown .box {
  width: 25%;
  padding: 0 10px;
}

.countdown .box span {
  display: block;
  text-align: center;
}

.countdown .box span:first-child {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #144508;
  margin-bottom: 10px;
}

.countdown .box span:last-child {
  font-weight: 500;
  background-color: #144508;
  color: var(--bg-white);
  padding: 10px 3px;
  border-radius: 3px;
}

.countdown-form {
  margin-top: 30px;
}

.contact-form-col label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.courses-abt-sec .contact-form-row {
  --bs-gutter-y: 20px;
}

.courses-abt-sec .contact-form-col .cmn-btn {
  border-radius: 5px;
}

.courses-abt-sec .cmn-btn-white {
  border-color: var(--bg-light-green);
  background-color: var(--bg-white);
  color: var(--bg-light-green);
}

.courses-abt-sec .cmn-btn-white:hover {
  background-color: var(--bg-light-green);
  color: var(--bg-white);
}

.mtm-logo {
  max-width: 240px;
  margin-left: auto;
}

.matsyam-wht {
  max-width: 260px;
  margin-bottom: 22px;
}

.inner-banner-crs {
  padding-bottom: 100px;
}

/* Small inner dot */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #373737b5;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* Larger outer ring that lags behind */
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

/* Example hover state */
a:hover ~ .cursor-ring,
button:hover ~ .cursor-ring {
  border-color: #00ffaa;
}

/* careers */

.careers-col {
  border: 1px solid #ecedf2;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  padding: 35px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.careers-col:hover {
  box-shadow: 0 0 5px #27272729;
}

.careers-col-top {
  display: flex;
  gap: 20px;
}

.careers-col-in-img {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  margin-top: 6px;
  padding: 20px;
  display: flex;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #0d992b12;
}

.careers-col-in-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.careers-col-in-cont ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.careers-col-in-cont ul li {
  font-size: 14px;
  color: #000;
  opacity: 0.7;
}

.careers-col-in-cont ul li i {
  margin-right: 3px;
  font-size: 12px;
  color: var(--bg-green);
}

.careers-col-in-cont h3 {
  font-size: 24px;
  margin-bottom: 6px;
  color: #000000e1;
}

.careers-col-in-cont p {
  font-size: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.careers-col-bottom {
  border-top: 2px solid #ecedf2;
  margin-top: 30px;
  padding-top: 20px;
}

.vacancy-txt,
.salary-txt {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  opacity: 0.6;
}

.salary-txt img {
  max-width: 16px;
  flex-shrink: 0;
}

.salary-txt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.vacancy-txt i {
  font-size: 12px;
  margin-right: 5px;
}

.careers-row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.careers-col-bottom .row {
  align-items: center;
}

.apply-btn-col {
  text-align: right;
}

.apply-btn-col .cmn-btn {
  font-size: 12px;
  padding: 5px 12px;
}

.career-details-wrap .accordion {
  margin: 30px 0;
}

.career-details-wrap .accordion-item {
  margin-bottom: 15px;
  border: none !important;
  border-radius: 3px;
  overflow: hidden;
}

.career-details-wrap .accordion-button {
  font-weight: 600;
  font-size: 20px;
  color: var(--bg-white);
  background: #16722a;
}

.career-details-wrap .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #16722a;
}

.career-details-wrap .accordion-button:not(.collapsed)::after {
  background: none;
  top: 12px;
}

.career-details-wrap .accordion-button::after {
  font-size: 22px;
  top: 16px;
  right: 14px;
}

.career-details-wrap ul li {
  margin-bottom: 10px;
}

.ul-list-all ul li {
  padding-left: 20px;
  position: relative;
}

.ul-list-all ul li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 3px;
  font-family: "fontawesome";
  font-size: 13px;
  color: var(--bg-green);
}

.contact-form-col sup {
  color: rgb(206, 0, 0);
}

.career-details-right h3 {
  text-align: center;
  font-weight: 600;
}

.career-details-right .contact-form-col {
  margin-bottom: 10px;
}

/* Aquarium Ecosystem Expert */

.course__list {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  padding: 1px;
  background: linear-gradient(
    300deg,
    #64fd00 -423.25%,
    rgb(0 0 0 / 0%) 128.96%
  );
  filter: drop-shadow(0px 17px 28.8px rgba(0, 0, 0, 0.25));
}

.course__list__item-link {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 40px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.right-arrow-wh {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  color: var(--bg-body-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.course__list__item-link h3 {
  color: var(--bg-white);
  font-size: 30px;
  margin-bottom: 40px;
}

.course__list__item-link ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 300px;
}

.course__list__item-link ul li {
  background-color: #0000007a;
  border: 1px solid #bebebe;
  font-size: 12px;
  padding: 4px 7px;
  color: #fff;
  border-radius: 21px;
  backdrop-filter: blur(9px);
  font-weight: 300;
}

.inner-banner-wh-abt .image-overlay {
  max-width: 500px;
}

/* banner courses */

.bnr-sub {
  display: inline-block;
  padding: 12px 36px;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 14px;
  color: #8fff8b;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 45px;
}

.inner-banner-course {
  max-width: 630px;
}

.inner-banner-course h1 {
  line-height: 1;
}

.inner-banner-course p {
  color: var(--bg-white);
  font-size: 18px;
  letter-spacing: 2px;
}

.inner-banner-course p span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 10px;
}

.inner-banner-course p span::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  left: 3px;
  top: 12px;
  background-color: var(--bg-light-green);
  border-radius: 100%;
}

.career-details-btns {
  display: flex;
  gap: 15px;
  margin-top: 45px;
}

.career-details-btns a {
  font-weight: 500;
  font-size: 16px;
  color: var(--bg-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--bg-white);
  padding: 11px 30px;
  border-radius: 34px;
}

.career-details-btns a i {
  font-size: 16px;
}

.career-details-btns a:hover {
  background-color: var(--bg-green);
  border-color: var(--bg-green);
}

.career-details-btns a:first-child {
  background-color: var(--bg-green);
  border-color: var(--bg-green);
}

.career-details-btns a:first-child:hover {
  background-color: var(--bg-white);
  border-color: var(--bg-white);
  color: var(--bg-body-color);
}

.banner.banner-career-details::before {
  display: none;
}

.banner.banner-career-details {
  min-height: 710px;
}

.banner.banner-career-details::after {
  background:
    linear-gradient(
      270.35deg,
      rgba(21, 58, 41, 0) 23.55%,
      rgba(21, 58, 41, 0.8) 62.7%
    ),
    url(young-woman-sits-front-laptop-studies-remotely.jpg);
}

/* banner courses end */

/* aee */

.aee__hd {
  margin: 0 auto 50px;
  max-width: 850px;
}

.aee__card {
  padding: 41px 27px;
  margin-bottom: 20px;
  min-height: 270px;
  backdrop-filter: blur(6px);
  border-radius: 8px;
  border: 1px solid #ffffff1a;
  background: rgba(255, 255, 255, 0.05);
}

.aee__card:last-child {
  margin-bottom: 0;
}

.aee__icon {
  border: 1px solid var(--bg-pr-green);
  background: rgba(255, 255, 255, 0.05);
  width: 66px;
  height: 66px;
  border-radius: 100%;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.aee__icon img {
  max-width: 100%;
  filter: brightness(0) saturate(100%) invert(99%) sepia(55%) saturate(7203%)
    hue-rotate(33deg) brightness(90%) contrast(93%);
}
.aee__card-title {
  margin-bottom: 8px;
  color: var(--bg-pr-green);
}

.aee__card-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.aee__image-wrapper {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.aee__image-wrapper img {
  height: 100%;
  object-fit: cover;
}

.aee__row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

/* aee end */

/* program */

.program__image-wrapper {
  position: relative;
}

.program__wrapper {
  --bs-gutter-x: 37px;
  --bs-gutter-y: 20px;
}

.program__title {
  color: var(--bg-white);
  margin-bottom: 13px;
}

.program__description {
  color: rgba(255, 255, 255, 0.8);
}

.program__subtitle {
  color: var(--bg-white);
  font-size: 22px;
}

.program__list li {
  font-size: 18px;
  color: var(--bg-light-wh);
  margin-bottom: 13px;
  padding-left: 35px;
  position: relative;
}

.program__list li:last-child {
  margin-bottom: 0;
}

.program__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 23px;
  height: 23px;
  background-image: url(./../images/list-check.svg);
  background-repeat: no-repeat;
  background-position: center;
}

/* program end */

/* what-learn */

.what-learn__row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.what-learn__icon {
  position: relative;
  padding-top: 65%;
  z-index: 1;
}

.what-learn__icon .image-overlay {
  z-index: -2;
}

.what-learn__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0 0 0 / 62%), rgb(255 255 255 / 0%));
  z-index: -1;
}

.what-learn__card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.what-learn__card-cont {
  padding: 19px 13px;
}

.what-learn__card-cont h5 {
  font-size: 20px;
  margin-bottom: 15px;
}

.sm-dts li {
  padding-left: 10px;
  position: relative;
  font-size: 14px;
  color: var(--bg-light-wh);
  margin-bottom: 5px;
}

.sm-dts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background-color: var(--bg-light-wh);
  border-radius: 100%;
}

/* what-learn end */

/* career */

.career-card {
  padding: 49px 30px;
  border: 1px solid #ffffff1a;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 7px solid var(--bg-pr-green);
  box-shadow: 0px 0px 10.9px rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  text-align: center;
}

.career-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  transition: all 0.3s ease-in-out;
  background: rgba(174, 255, 192, 0.27);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}

.career-card__icon img {
  max-width: 55px;
  max-height: 55px;
  filter: brightness(0) saturate(100%) invert(99%) sepia(55%) saturate(7203%)
    hue-rotate(33deg) brightness(90%) contrast(93%);
}

.career-card__title {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--bg-pr-green);
  transition: all 0.3s ease-in-out;
}

.career__title {
  font-size: 50px;
}

.career__description {
  font-size: 20px;
  color: var(--bg-light-wh);
  transition: all 0.3s ease-in-out;
}

.career-card:hover {
  background-color: var(--bg-pr-green);
}

.career-card__text {
  transition: all 0.3s ease-in-out;
}

.career-card:hover .career-card__icon {
  background-color: var(--bg-white);
}

.career-card:hover p,
.career-card:hover .career-card__title {
  color: var(--bg-white);
}

/* career end */

/* methodology */
.methodology {
  position: relative;
  z-index: 1;
}

.methodology .image-overlay {
  z-index: -2;
}

.methodology .aee__hd h2 {
  color: var(--bg-white);
}

.methodology .aee__hd p {
  color: rgba(255, 255, 255, 0.7);
}

.methodology__timeline {
  max-width: 992px;
  margin: 0 auto;
  position: relative;
}

.methodology__item {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 90px;
}

.methodology__number {
  width: 38px;
  height: 38px;
  background-color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 100%;
  color: var(--bg-body-color);
  font-weight: 600;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.methodology__icon {
  width: 50%;
  padding: 0 50px;
  text-align: right;
}

.methodology__icon-wrap {
  max-width: 78px;
  max-height: 78px;
  margin-left: auto;
}

.methodology__cont {
  width: 50%;
  padding: 0 50px;
  position: relative;
}

.methodology__cont h3 {
  font-weight: 600;
  font-size: 23px;
  color: var(--bg-white);
  margin-bottom: 10px;
}

.methodology__cont p {
  color: rgba(255, 255, 255, 0.7);
}

.methodology__cont-wrap {
  width: 100%;
  max-width: 376px;
}

.methodology__item:nth-child(even) {
  flex-direction: row-reverse;
}

.methodology__item:nth-child(even) .methodology__icon-wrap {
  margin-left: 0;
}

.methodology__item:nth-child(even) .methodology__cont-wrap {
  text-align: right;
}

.methodology__item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 1px;
  height: 100%;
  background-color: var(--bg-white);
  z-index: -1;
}

.methodology__item:last-child {
  padding: 0;
}

.methodology__item:last-child::before {
  display: none;
}
/* methodology end */
/* experts */
.experts__image {
  border-radius: 16px;
  position: relative;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.experts__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.experts__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.experts__content li {
  font-size: 18px;
  margin-bottom: 23px;
  padding-left: 35px;
  font-weight: 600;
  position: relative;
}

.experts__content p {
  font-size: 18px;
  line-height: 1.5;
}

.experts__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 23px;
  height: 23px;
  background-image: url(./../images/list-check-green.svg);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center;
}

.experts-row {
  align-items: center;
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.experts__content li:last-child {
  margin-bottom: 0;
}

.what-learn__col {
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px;
  border: 1px solid #ffffff1a;
  background: rgba(255, 255, 255, 0.05);
}

.what-learn__col-icon {
  background: rgba(13, 153, 43, 0.2);
  border-radius: 6px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  padding: 5px;
}

.what-learn__col-icon img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(55%) saturate(7203%)
    hue-rotate(33deg) brightness(90%) contrast(93%);
}

.what-learn__col h3 {
  font-size: 19px;
  font-family: var(--default-font);
}

.what-learn__list {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.cmn-btn.cmn-btn-border {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-white);
  color: var(--bg-body-color);
}

.what-learn__buttons {
  margin-top: 44px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.cmn-btn.cmn-btn-border:hover {
  color: var(--bg-body-color);
  background-color: var(--bg-white);
}

.what-learn__image {
  border-radius: 16px;
  overflow: hidden;
}

/* experts end */

/* cta */

.cta__wrapper {
  position: relative;
  padding: 76px 10px;
  border-radius: 35px;
  overflow: hidden;
  z-index: 1;
}

.cta__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(20, 69, 8, 0.9), rgba(20, 69, 8, 0.9));
  z-index: -1;
  opacity: 0.6;
}

.cta__wrapper .image-overlay {
  z-index: -2;
}

.cta__wrapper-in {
  max-width: 852px;
  margin: 0 auto;
  text-align: center;
}

.cta__wrapper-in h2 {
  font-size: 45px;
  color: var(--bg-white);
}

.cta__wrapper-in p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
}

.cta__wrapper-in .what-learn__buttons {
  justify-content: center;
}

.cta__wrapper-in .cmn-btn.cmn-btn-border {
  background-color: transparent;
  border: 1px solid var(--bg-white);
  color: var(--bg-white);
}

.cta__wrapper-in .cmn-btn.cmn-btn-border:hover {
  background-color: var(--bg-white);
  color: var(--bg-body-color);
}

/* cta end */

.career-row {
  --bs-gutter-y: 20px;
}

.video_cont-wrap {
  margin-top: 10px;
}

.video_cont-wrap ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  color: var(--bg-body-color);
  border-bottom: 1px solid var(--bg-light-wh);
  padding: 18px 0;
  font-size: 19px;
  color: var(--bg-light-wh);
}

.video_cont-wrap ul li:first-child {
  padding-top: 0;
}

.video_cont-wrap ul li:last-child {
  padding-bottom: 0;
  border: none;
}

.video_cont-wrap ul li span {
  display: flex;
  max-width: 50px;
  height: 50px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

/* wh-or-clnt-say */
.wh-or-clnt-say-cont-img {
  display: flex;
  align-items: center;
  gap: 17px;
}
.wh-or-clnt-say-imgs {
  display: inline-flex;
  align-items: center;
}

.wh-or-clnt-say-imgs img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  background: #fff;
  margin-left: -20px;
}

/* first image */
.wh-or-clnt-say-imgs img:first-child {
  margin-left: 0;
}

.wh-or-clnt-say-cont div {
  font-size: 35px;
  color: var(--bg-white);
  margin-right: 4px;
  display: inline-block;
}

.wh-or-clnt-say-cont {
  font-weight: 600;
  font-size: 20px;
  color: var(--bg-white);
}

.wh-or-clnt-say-cont-img {
  margin-bottom: 16px;
}

.wh-or-clnt-say-slide-inner {
  position: relative;
  padding-left: 96px;
}

.wh-or-clnt-say-slide-top {
  min-height: 170px;
}

.wh-or-clnt-say-slide-top p {
  font-weight: 500;
  font-size: 26px;
  line-height: 1.53;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: translateY(40px);
  opacity: 0;
}

.quotation-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  max-width: 70px;
  transition: all 0.5s ease-in-out;
  transform: scale(0);
}

.wh-or-clnt-say-slide.slick-current .quotation-icon {
  transform: scale(1);
  opacity: 1;
}

.wh-or-clnt-say-slide.slick-current .wh-or-clnt-say-slide-top p {
  transform: translateY(0);
  opacity: 1;
}

.wh-or-clnt-say-slide.slick-current .clients-wrap {
  transform: translateY(0);
  opacity: 1;
}

.clients-wrap {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  gap: 22px;
  margin-top: 120px;
}

.clients-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.clients-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wh-or-clnt-say-slide-inner .wh-or-clnt-say-slide-top {
  margin-bottom: 30px;
}

.wh-or-clnt-say-slide-inner .wh-or-clnt-say-slide-top span {
  font-family: var(--default-number-font);
}

.clients-cont h3 {
  font-size: 26px;
  margin-bottom: 4px;
}

.clients-cont span {
  font-family: var(--default-number-font);
  font-size: 16px;
  opacity: 0.7;
}

.wh-or-clnt-say-slide-inner .wh-or-clnt-say-slide-top span {
  font-size: 35px;
}

.wh-or-clnt-say-slide-inner .wh-or-clnt-say-slide-top span::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(./../images/check-icon-green.svg);
}
/* ------------------- */

.wh-or-clnt-say-rgt {
  position: relative;
  margin-top: 47px;
  padding-left: 30px;
}

.wh-or-clnt-say-progress {
  width: calc(100% - 30px);
  height: 4px;
  left: 30px;
  background: rgb(177 176 176 / 50%);
  margin-top: 20px;
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
  bottom: 106px;
}

.wh-progress-bar {
  height: 100%;
  width: 0;
  background: var(--bg-white);
  transition: width 0.3s ease;
}

.wh-or-clnt-say-arrows {
  position: absolute;
  bottom: 30px;
  right: 0;
}

.wh-or-clnt-say-arrows button {
  background-color: var(--bg-pr-green);
}

.wh-or-clnt-say-arrows button:hover {
  background-color: var(--bg-light-wh);
}

.cmn-arrow-left {
  right: 10px;
}

.text-right {
  text-align: right;
}
/* wh-or-clnt-say end */

.inner-banner-wh::after {
  display: none;
}

.image-overlay-sm {
  width: auto;
  max-width: 650px;
  height: auto;
  right: 10px;
  top: unset;
  bottom: 10px;
  left: unset;
}

.inner-banner-wh .inner-banner-cont {
  text-align: left;
}

.inner-banner-wh .inner-banner-cont h1 {
  color: var(--bg-body-color);
  display: inline-block;
  background: linear-gradient(132.67deg, #e5e5e5 47.8%, #6bdd1d 95.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.inner-banner-wh .inner-banner-cont ul li,
.inner-banner-wh .inner-banner-cont ul li a {
  color: var(--bg-white);
}

.banner .image-overlay {
  z-index: -2;
  opacity: 0;
  object-position: top;
}

.banner-cont-wrap {
  position: relative;
  padding: 100px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}

.banner-cont {
  max-width: 730px;
}

.banner-cont h1 {
  font-size: 70px;
  font-weight: 800;
  background: linear-gradient(132.67deg, #e5e5e5 47.8%, #6bdd1d 95.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.banner-cont p {
  color: var(--bg-white);
  font-size: 22px;
  font-weight: 300;
}

.inner-banner-wh .image-overlay {
  opacity: 1;
  z-index: 2;
}

.inner-banner-wh-gst .image-overlay {
  max-width: 367px;
  right: 100px;
}

.what-learn-bottom {
  margin-top: 40px;
}

.what-learn-bottom blockquote {
  background-color: #ffffff4d;
  padding: 20px 20px 20px 35px;
  border-radius: 10px;
  border-left: 4px solid var(--bg-green);
  position: relative;
  color: var(--bg-light-wh);
}

.what-learn-bottom blockquote::after {
  content: "\f0eb";
  font-family: "fontawesome";
  position: absolute;
  left: 12px;
  top: 21px;
  color: #ca9900;
  font-size: 20px;
}

.banner-career-details .image-overlay {
  opacity: 1 !important;
}

.inner-banner-wh-blog .image-overlay {
  max-width: 350px;
  right: 100px;
}

.inner-banner-wh-gal .image-overlay {
  right: 100px;
  max-width: 500px;
}

.gallery-sec {
  z-index: 2;
}

.gallery-tab-wrap {
  margin-top: 20px;
}

.gallery-tab-wrap ul {
  justify-content: flex-end;
  border: none;
}

.gallery-tab-wrap .nav-tabs .nav-link {
  border: none;
  text-transform: capitalize;
  font-family: var(--heading-font);
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  border-bottom: 2px solid transparent;
  font-weight: 600;
  padding: 0;
  opacity: 0.6;
  font-size: 16px;
  color: var(--bg-white);
}

.gallery-tab-wrap .nav-tabs .nav-link img {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.gallery-tab-wrap .nav-tabs .nav-link:hover {
  opacity: 1;
  border-color: var(--bg-white);
}

.gallery-tab-wrap .nav-tabs .nav-item {
  padding: 0 10px;
}

.gallery-tab-wrap .nav-tabs .nav-item:last-child {
  padding-right: 0;
}

.gallery-tab-wrap .nav-tabs .nav-item:first-child {
  padding-left: 0;
}

.gallery-tab-wrap .nav-tabs .nav-link.active {
  opacity: 1;
  border-color: var(--bg-white);
}

.tab-content {
  margin-top: 25px;
}

.gall-cont-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background-color: #ffffff4a;
  backdrop-filter: blur(3px);
  z-index: 1;
  transition: all 0.3s ease-in-out;
  padding: 15px;
  border-radius: 7px;
}

.gall-cont-overlay p {
  font-size: 12px;
  color: var(--bg-white);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gall-img-wrap:hover .gall-cont-overlay {
  opacity: 0;
}

.gall-img-wrap img {
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}

.gall-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  background-color: #ffffffc8;
  border-radius: 100%;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  justify-content: center;
}

.gall-icon i {
  font-size: 20px;
  color: #333;
}

.gall-img-wrap:hover .gall-icon {
  opacity: 1;
}

.gall-img-wrap:hover img {
  opacity: 0.3;
}

.blog-inner-sec {
  padding: 160px 0 80px;
}

.blog-bdm {
  margin-bottom: 20px;
}

.blog-bdm span {
  width: 17px;
  height: 17px;
  background-color: var(--bg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--bg-white);
  line-height: 1;
  font-size: 9px;
}

.blog-bdm a {
  color: var(--bg-green);
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  font-family: var(--heading-font);
  text-transform: uppercase;
}

.blog-bdm a:hover {
  opacity: 0.7;
}

.blog-lf-dtl-cont h1 {
  font-size: 40px;
  line-height: 1.1em;
  margin: 0 0 17px 0;
  color: var(--bg-text-color);
}

.blog-lf-dtl-cont {
  font-family: var(--heading-font);
  font-weight: 500;
}

/* event */

.news-events-wrap .nav {
  border: none;
  border-bottom: 1px solid #8a8a8a87;
}

.news-events-wrap .tab-content {
  border: 1px solid #8a8a8a87;
  border-top: none;
  margin-top: 0;
  padding: 20px;
}

.news-events-wrap .nav-tabs .nav-link {
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--bg-white);
  padding: 19px 10px;
  text-align: center;
  width: 100%;
  border-radius: 10px 10px 0 0;
  background-color: #8a8a8a87;
}

.news-events-wrap .nav-tabs .nav-link.active {
  background-color: var(--bg-white);
  color: var(--bg-body-color);
}

.news-events-wrap .nav-tabs .nav-link:hover {
  border-color: #8a8a8a87;
}

.news-events-wrap .nav-tabs li {
  width: 100%;
  max-width: 200px;
}

.events-wrap {
  padding-top: 20px;
}

.events-content-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 10px;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: #ffffff37;
}

.events-content-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.events-content-flex {
  display: flex;
  align-items: center;
  gap: 30px;
}

.up-events-content-flex {
  display: flex;
  gap: 30px;
  box-shadow: 0 0 10px #33333359;
  border: 1px solid #ffffff1a;
  background: rgba(255, 255, 255, 0.05);
}

.up-events-content-img {
  width: 45%;
  flex-shrink: 0;
}

.up-events-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-date {
  margin-bottom: 13px;
  font-size: 25px;
  opacity: 0.7;
  display: block;
}

.events-content-txt h3 {
  font-weight: 700;
  font-size: 37px;
}

.events-content-txt p {
  font-family: var(--default-number-font);
  line-height: 1.5;
}

.events-content-flex .what-learn__buttons {
  margin-top: 0;
  justify-content: flex-start;
}

.events-wrap h2 {
  margin-bottom: 25px;
}

.up-events-wrap {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #8a8a8a87;
}

.up-events-content-txt span {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--bg-pr-green);
  display: block;
  margin-bottom: 10px;
}

.up-events-content-txt h3 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 9px;
}

.up-events-content-flex {
  border-radius: 20px;
  overflow: hidden;
  padding: 22px;
}

.up-events-content-txt ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.up-events-content-txt ul li {
  background-color: #f4faf2;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 10px;
  color: var(--bg-body-color);
  font-family: var(--heading-font);
}

.event-time {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.event-time-icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #f4faf2;
  flex-shrink: 0;
}

.event-time-txt h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.event-time-txt p {
  font-size: 12px;
  font-family: var(--heading-font);
}

.event-slider__slide {
  position: relative;
  padding-top: 15%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 14px;
}

.event-slider__slide .image-overlay {
  user-select: all;
  pointer-events: visible;
}

.event-slider__thumb {
  padding: 0 5px;
}

.event-slider__thumb-box {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  padding-top: 70%;
  cursor: pointer;
  background-color: var(--bg-body-color);
  z-index: 1;
}

.event-slider__thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  opacity: 0.5;
}

.event-slider__thumbs .slick-list {
  margin: 0 -5px;
}

.event-slider__thumb.slick-current .event-slider__thumb-box img {
  opacity: 1;
}

.past-events-list {
  display: flex;
  background-color: #ffffff0f;
}

.past-event-image {
  width: 50%;
  flex-shrink: 0;
}

.past-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.past-event-content {
  width: 50%;
  padding: 50px;
}

.past-event-content h4 {
  font-weight: 700;
  font-size: 29px;
}

.past-event-content p {
  font-family: var(--heading-font);
}

.past-event-students span {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.past-event-students span i {
  font-size: 17px;
  margin-right: 5px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.photo-gallery li {
  width: 100%;
  height: 100%;
}

.photo-gallery li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.past-events-list:nth-child(even) {
  flex-direction: row-reverse;
  background-color: #00000040;
}

.btn-txt {
  border-bottom: 1px solid var(--bg-light-wh);
  text-transform: capitalize;
}

/* event end */

.abt-lft-img {
  position: absolute;
  left: 0;
  top: 20%;
  width: 100%;
  max-width: 737px;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.fcl-overlay {
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  max-width: 1521px;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.faculty-sec .video-test-overlay {
  top: -100%;
}

.blog-img-overlay {
  position: absolute;
  right: 0;
  top: -70%;
  z-index: -1;
}

.home-contact {
  position: relative;
  z-index: 1;
}

.contact-fr-overlay {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.mrg-left-auto {
  margin-left: auto;
}

.faq-sec .fcl-overlay {
  top: -20%;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1380px;
  transform: translateX(-50%);
  z-index: -1;
  user-select: none;
  pointer-events: none;
  opacity: 0.7;
}

.what-we-col {
  display: flex;
  flex-direction: column;
  border: 1px solid #ffffff1a;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px #33333359;
  box-shadow: 0 0 10px #33333359;
  padding: 30px;
  border-radius: 11px;
  gap: 25px;
  margin-bottom: 20px;
  height: 100%;
}

.what-we-col:last-child {
  margin-bottom: 0;
}

.rlt-sec-all {
  position: relative;
  z-index: 1;
}

.zi-2 {
  z-index: 2;
}

.fc-sec-img .blog-img-overlay {
  top: unset;
  bottom: 0;
}

.what-learn {
  z-index: 2;
}

.program {
  position: relative;
  z-index: 1;
}

.student-review-sec .video-test-overlay {
  opacity: 0.5;
}

.news-events-sec-in .blog-img-overlay {
  top: unset;
  bottom: 0;
}

/* responsive */

@media (max-width: 1366px) {
  .navbar-nav > li {
    margin: 0 10px;
  }
}

@media (max-width: 1280px) {
  .abt-img-top {
    left: 8px;
  }

  .abt-img-center {
    left: -81px;
  }

  .navbar-expand-lg .navbar-collapse {
    margin-left: auto;
    margin-right: 40px;
  }

  .navbar-brand {
    width: 210px;
  }

  .navbar-nav > li > a {
    padding: 32px 0 24px;
  }
}

@media (min-width: 578px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 1199px) {
  .h1-heading,
  h1 {
    font-size: 48px;
  }

  .banner-content p {
    font-size: 16px;
  }

  h2 {
    font-size: 30px;
  }

  .cmn-hd span {
    font-size: 14px;
    min-width: 92px;
    padding: 5px 11px;
  }

  .abt-col-imgs {
    max-width: 340px;
    margin-left: auto;
    margin-right: 20px;
  }

  .abt-icon {
    max-width: 26px;
  }

  .abt-col-imgs h3 {
    font-size: 12px;
  }

  .abt-img-bottom,
  .abt-img-center,
  .abt-img-top {
    width: 140px;
    height: 140px;
    gap: 9px;
    padding: 8px;
  }

  .abt-img-top {
    left: -14px;
  }

  .abt-img-center {
    left: -75px;
    top: 50%;
  }

  .abt-img-bottom {
    bottom: 5%;
  }

  .faculty-tab-wrap {
    overflow: hidden;
    margin-left: unset;
    padding: 0 12px;
  }

  .faculty-tabs .nav-link {
    font-size: 16px;
  }

  .faculty-tabs .nav-link img {
    max-width: 30px;
  }

  .cmn-btn {
    font-size: 14px;
  }

  body {
    font-size: 14px;
  }

  .navbar-brand {
    width: 210px;
  }

  .navbar-nav > li > a {
    padding: 39px 0 26px;
    font-size: 14px;
  }

  .navbar-nav > li {
    margin: 0 8px;
  }

  .navbar-expand-lg .navbar-collapse {
    margin-left: auto;
    margin-right: 20px;
  }

  .main-head .container-fluid {
    padding: 0 12px;
  }

  .play-button-video {
    width: 60px;
    height: 60px;
  }

  .play-button-video img {
    max-width: 20px;
  }

  .play-button-video {
    left: -28px;
  }

  .video-sec {
    padding: 100px 0;
  }

  .our-video-wrap {
    width: calc(50% - 100px);
  }

  .about-in-row .cmn-hd {
    padding-right: 40px;
  }

  .about-in-img-two {
    left: -15%;
  }

  .our-mission-sec .about-in-row .cmn-hd {
    padding: 0 0 0 40px;
  }

  .our-mission-sec .about-in-img-two {
    left: unset;
    right: -12%;
  }

  .why-ch-col ul li {
    margin-bottom: 14px;
  }

  .banner.banner-career-details {
    min-height: auto;
  }

  .bnr-sub {
    display: inline-block;
    padding: 6px 11px;
  }

  .career-details-btns a i {
    font-size: 12px;
  }

  .career__title {
    font-size: 40px;
  }
  .career-card {
    padding: 30px 20px;
  }

  .what-learn__col h3 {
    font-size: 16px;
  }

  .what-learn__list {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .aee__hd {
    margin: 0 auto 40px;
  }

  .cta__wrapper-in h2 {
    font-size: 35px;
  }

  .cta__wrapper-in p {
    font-size: 18px;
  }

  .what-learn__buttons {
    gap: 15px;
  }

  .methodology__item {
    padding-bottom: 50px;
  }

  .methodology__icon-wrap {
    max-width: 65px;
    max-height: 65px;
  }

  .banner-cont h1 {
    font-size: 60px;
  }

  .faq-wrap .accordion-item .accordion-button {
    padding: 6px 20px;
  }

  .events-content-txt h3 {
    font-size: 30px;
  }

  .events-date {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .events-content-img {
    width: 350px;
    height: 350px;
  }

  .past-event-content {
    padding: 30px;
  }

  .past-event-students span {
    font-size: 16px;
  }

  .past-event-students span i {
    font-size: 11px;
  }

  .enquire-btn {
    font-size: 10px;
    letter-spacing: 1px;
    padding: 10px 9px;
  }

  .hdr-rgt-button .cmn-btn {
    padding: 9px 18px;
    gap: 10px;
  }

  .student-review-box-img {
    max-width: 120px;
    margin: 0 22px 10px 0;
  }

  .student-review-box-img::before {
    width: 30px;
    height: 30px;
  }

  .student-review-box {
    padding: 24px 15px 14px;
    border: 14px;
    border-radius: 6px;
  }
}
@media (max-width: 991px) {
  /* navbar*/
  .navbar-nav .clickD {
    top: 0px;
    right: 0;
    width: 20px;
    height: 37px;
    background: url(.././images/sort-down.svg) center center no-repeat;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    background-size: 13px;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav > li > .sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
    padding: 0 0;
    opacity: 1;
    border-radius: 0;
    display: none;
    visibility: visible;
    border: 1px solid #0000003d;
    border-bottom: none;
    background-color: #0000000a;
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav > li {
    margin: 0 0;
    padding: 0;
  }

  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    top: 0;
  }

  .navbar-nav > li > a {
    padding: 8px 0 8px 0px;
    display: inline-block;
    width: 100%;
    color: var(--bg-body-color);
    font-size: 14px;
    border-top: 1px solid #0000003d;
  }

  .navbar-nav > li:first-child a {
    border: none;
  }

  .navbar-nav li.menu-item-has-children > a {
    padding-right: 50px;
  }

  .sub-menu .sub-menu > li > a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 80px;
  }

  .navbar-nav > li > a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: #fff;
    position: fixed;
    top: 0;
    height: 100vh !important;
    width: 290px;
    overflow-y: auto;
    -webkit-transition: inherit !important;
    -o-transition: inherit !important;
    transition: inherit !important;
    left: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(-101%);
    -ms-transform: translateX(-101%);
    transform: translateX(-101%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition:
      transform 0.2s ease-in-out,
      -webkit-transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition:
      transform 0.2s ease-in-out,
      -webkit-transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0;
    padding: 0 10px 40px;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 6px;
    top: 4px;
    position: absolute;
  }

  #navoverlay.open {
    background: rgb(0 0 0 / 93%);
    backdrop-filter: blur(10px);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    height: 100%;
    overflow: hidden;
  }

  .main-head .container {
    max-width: 720px;
  }

  .navbar {
    padding: 8px 0;
  }

  .sub-menu > li > a {
    border: none;
    padding: 8px 8px;
    font-size: 14px;
    border-bottom: none;
    border-top: 1px solid #0000008a;
  }

  .sub-menu > li:first-child a {
    border-top: none;
  }

  .navbar-toggler {
    position: relative;
    width: 40px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    height: 40px;
    background-color: var(--bg-orange);
    padding: 0;
    border-radius: 2px;
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    margin-top: -4px;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 24px;
    height: 2px;
    background: var(--bg-white);
    position: absolute;
    left: 8px;
    top: 19px;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -8px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 8px;
    left: 0;
  }

  .stick.open {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    -webkit-transform: rotate(45deg) translate(38px, -32px);
    -ms-transform: rotate(45deg) translate(38px, -32px);
    transform: rotate(45deg) translate(38px, -32px);
    left: 2px;
  }

  .stick.open:after {
    -webkit-transform: rotate(-45deg) translate(42px, 28px);
    -ms-transform: rotate(-45deg) translate(42px, 28px);
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  /* push nav end */

  .navbar-nav > li > a:after,
  .navbar-nav > li > a::before {
    display: none;
  }

  .cmn-btn-border,
  .cmn-btn {
    font-weight: 400;
    padding: 13px 16px;
  }

  .hdr-rgt {
    gap: 20px;
    margin-left: auto;
    padding-right: 20px;
  }

  .navbar-toggler.navbar-toggler-main.open .stick:before {
    top: -4px;
    left: 1px;
    background-color: var(--bg-body-color);
  }

  .navbar-toggler.navbar-toggler-main.open .stick:after {
    top: 10px;
    left: 1px;
    background-color: var(--bg-body-color);
  }

  .sub-menu.show {
    display: block;
  }

  .hdr-rgt {
    margin-left: auto;
  }

  .sub-menu > li > a {
    font-size: 14px;
  }
  /* navbar end*/

  .banner-content {
    min-height: auto;
    padding: 130px 0;
  }

  .col-about-item {
    width: 100%;
  }

  .abt-col-imgs {
    margin: 0 auto;
  }

  .abt-row {
    --bs-gutter-y: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .video-wrap-one {
    display: none;
  }

  .video-wrap-two {
    position: relative;
    top: 0%;
    left: 0;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
  }

  .cta-cont-wrap {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }

  .cta-img {
    display: none;
  }

  .cta-btns {
    margin-top: 30px;
    text-align: center;
  }

  .blog-hd-row .cmn-btn {
    margin-top: 20px;
  }

  .js-blog-slider {
    margin-top: 20px;
  }

  .page-footer .container {
    max-width: 100%;
    padding: 0 25px;
  }

  .ftr-top .col-md-4:nth-child(2) .ftr-col-adds {
    padding: 0 0px;
  }

  .about-in-img-one {
    max-width: 100%;
  }

  .about-in-img-two {
    max-width: 130px;
  }

  .our-mission-sec .about-in-img-two {
    right: -22px;
  }

  .what-we-wrap-row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
  }

  .what-we-wrap {
    margin-top: 35px;
  }

  h2 {
    font-size: 27px;
  }

  .why-ch-col ul li {
    margin-bottom: 10px;
  }

  .logo-two {
    margin: 5px 0 0 10px;
  }

  .navbar-expand-lg .navbar-collapse {
    margin-left: unset;
    margin-right: unset;
  }

  .navbar-brand {
    width: 240px;
  }

  .student-review-box-img {
    max-width: 100%;
    margin: 0 0px 20px 0;
  }

  .col-50 {
    width: 100%;
  }

  .courses-col-cont-center li {
    margin-bottom: 12px;
  }

  .courses-col-cont-top {
    gap: 12px;
  }

  .courses-abt-sec .about-in-row {
    --bs-gutter-x: 0px;
    --bs-gutter-y: 40px;
  }

  .courses-abt-sec .about-in-img-one {
    max-width: 600px;
  }

  .courses-abt-sec .about-in-img-two {
    max-width: 240px;
    left: 0;
  }

  .course-sec .accordion-button {
    padding: 13px 0;
    font-size: 14px;
    padding-right: 30px;
  }

  .accordion-button::after {
    top: 17px;
    right: 0;
    font-size: 15px;
  }

  .list-op li {
    font-size: 10px;
  }

  .cus-accordion ul li {
    margin-bottom: 12px;
  }

  .cus-accordion ul li span {
    font-size: 10px;
  }

  .accordion-body {
    padding: 14px;
  }

  .course-heading-top {
    margin-bottom: 40px;
  }

  .categorie-list li {
    margin-bottom: 9px;
  }

  .categorie-list li a {
    font-size: 14px;
  }

  .annual-report-container {
    margin-left: 0;
  }

  .resume-title-wrap {
    border-left: 8px solid #383a39;
    padding: 62px 20px;
  }

  .faculty-img-cont-wrap {
    flex-wrap: wrap;
  }

  .faculty-cont-col-b {
    width: 100%;
  }

  .mtm-logo-row {
    flex-direction: column-reverse;
    --bs-gutter-y: 30px;
  }

  .mtm-logo {
    margin: 0 auto;
  }

  .mtm-logo-row .cmn-hd {
    text-align: center;
  }

  /* Small inner dot */
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .career-details-btns a {
    font-size: 14px;
    gap: 6px;
    padding: 9px 17px;
  }

  .career-details-btns {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 35px;
  }

  .inner-banner-course p {
    font-size: 14px;
  }

  .inner-banner-course p span::before {
    top: 8px;
  }

  .aee__card-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }

  .aee__card-flex .aee__card {
    flex: 1 1 calc(50% - 12px);
    margin: 0;
  }

  .banner-cont h1 {
    font-size: 50px;
  }

  .course__list__item-link h3 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .course__list__item-link {
    padding: 20px;
  }

  .wh-or-clnt-say-rgt {
    margin-top: 40px;
    padding-left: 0px;
  }

  .wh-or-clnt-say-slide-top p {
    font-size: 18px;
  }

  .quotation-icon {
    max-width: 40px;
  }

  .wh-or-clnt-say-slide-inner {
    padding-left: 50px;
  }

  .wh-or-clnt-say-slide-top {
    min-height: 100px;
  }

  .clients-img {
    width: 50px;
    height: 50px;
  }

  .clients-cont h3 {
    font-size: 18px;
  }

  .clients-wrap {
    margin-top: 70px;
  }

  .wh-or-clnt-say-progress {
    bottom: 85px;
  }

  .image-overlay-sm {
    max-width: 480px;
    right: 70px;
    bottom: unset;
  }

  .gallery-row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .gallery-tab-wrap .nav-tabs .nav-link {
    font-size: 14px;
  }

  .gallery-tab-wrap ul {
    justify-content: center;
  }

  .gallery-sec .cmn-hd {
    text-align: center;
  }

  .past-events-list,
  .up-events-content-flex,
  .events-content-flex {
    flex-wrap: wrap;
  }

  .past-event-content,
  .up-events-content-img {
    width: 100%;
  }

  .past-event-image,
  .events-content-img {
    width: 100%;
  }

  .events-content-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .news-events-wrap .nav-tabs .nav-link {
    font-size: 16px;
    padding: 14px 10px;
  }

  .our-video-wrap video {
    border-radius: 0%;
  }

  .video-sec .faculty-col-cont.cmn-hd h2 {
    font-size: 27px;
  }

  .video-sec {
    padding: 60px 0;
  }

  .faculty-sec {
    padding-top: 0;
  }

  .wh-or-clnt-say {
    padding-top: 0;
  }

  .student-review-box-cont {
    width: 100%;
  }

  .student-review-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 12px;
  }

  .student-review-box-img::before {
    display: none;
  }

  .inner-experts .experts__image {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .slick-prev {
    left: 10px;
  }

  .slick-next {
    right: 10px;
  }

  .header-col-flex ul li a {
    font-size: 12px;
  }

  .course-list-col-box-cont h3 {
    font-size: 16px;
  }

  .course-list-col-box-top {
    min-height: 60px;
  }

  .course-list-col-box {
    padding: 20px;
  }

  .video-row {
    --bs-gutter-y: 30px;
  }

  .faculty-col-cont {
    margin-bottom: 20px;
  }

  .faculty-tabs .nav-link img {
    display: none;
  }

  .faculty-tabs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .faculty-tabs .nav-link {
    font-size: 14px;
    border: 2px solid var(--bg-white);
    border-bottom: none;
  }

  .faculty-tabs {
    border-bottom: 2px solid var(--bg-white);
  }

  .blog-link-cont {
    padding: 10px 0px 20px;
  }

  .ftr-col-adds {
    border: none;
    margin-bottom: 10px;
  }

  .footer-col {
    border: none;
  }

  .copy-rgt-txt {
    text-align: center;
  }

  .copy-rgt-txt ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10px;
  }

  .video-sec {
    padding: 80px 0 450px;
  }

  .our-video-wrap {
    width: 100%;
    height: 400px;
    top: unset;
    bottom: 0;
  }

  .play-button-video {
    top: -30px;
    left: 50%;
    transform: translate(-50%, 0%);
  }

  .play-button-video.playing {
    width: 60px;
    height: 60px;
    left: 50%;
    transform: translate(-50%, 0%);
  }

  .video-dc-sec h2,
  .video-sec .faculty-col-cont.cmn-hd h2 {
    font-size: 32px;
  }

  .video-dc-cont p:first-child {
    font-size: 16px;
  }

  .our-faculty-row {
    flex-direction: column-reverse;
  }

  .our-faculty {
    padding: 70px 0 0;
  }

  .js-our-faculty .slick-list {
    margin: 0 -12px;
    padding: 0px 0 !important;
  }

  .our-faculty-wrap {
    margin-top: 25px;
  }

  .our-faculty-col.slick-current .our-faculty-box-wrap,
  .our-faculty-box-wrap {
    padding: 0;
  }

  .our-faculty-box {
    padding: 12px;
  }

  .our-faculty-wrap::after,
  .our-faculty-wrap::before {
    display: none;
  }

  .our-faculty-box-cont h3 {
    font-size: 14px;
  }

  .student-review-box {
    padding: 20px;
  }

  .student-review-box-img::before {
    width: 35px;
    height: 35px;
  }

  .student-review-box-img {
    max-width: 150px;
    margin: 0 20px 20px 0;
  }

  .student-review-slider {
    margin-top: 25px;
  }

  .js-student-review .slick-next,
  .js-student-review .slick-prev {
    width: 37px;
    height: 37px;
  }

  .about-in-img-one {
    max-width: 430px;
  }

  .about-in-row .cmn-hd {
    padding-right: 0px;
  }

  .about-in-img-two {
    max-width: 160px;
    left: 0;
  }

  .about-in-row {
    --bs-gutter-y: 35px;
    --bs-gutter-x: 0px;
  }

  .our-mission-sec .about-in-img-two {
    right: 0px;
  }

  .our-mission-sec .about-in-row .cmn-hd {
    padding: 0 0 0 0px;
  }

  .our-mission-sec .about-in-row {
    flex-direction: column-reverse;
  }

  .courses-abt-sec .about-in-img-one {
    max-width: 420px;
  }

  .courses-abt-sec .about-in-img-two {
    max-width: 180px;
  }

  .course-heading-top {
    margin-bottom: 30px;
  }

  .resume-title-wrap {
    border: none;
    padding: 0;
  }

  .resume-title-wrap::after,
  .resume-title-wrap::before {
    display: none;
  }

  .resume-title-wrap h2 span {
    margin-top: 0px;
    text-align: right;
    display: inline;
  }

  .resume-title-wrap {
    margin-bottom: 10px;
  }

  .resume-title {
    margin: 0px 0 40px;
  }

  .aee__card-flex .aee__card {
    flex: 1 1 calc(100% - 12px);
  }

  .video_cont-wrap ul li span {
    max-width: 35px;
    height: 40px;
  }

  .video_cont-wrap ul li {
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
  }

  .slick-arrow {
    width: 35px;
    height: 35px;
  }

  .wh-or-clnt-say-arrows button img {
    max-width: 14px;
  }
  .wh-or-clnt-say-rgt {
    margin-top: 20px;
  }

  .inner-banner {
    padding: 120px 0 20px;
    min-height: 390px;
  }

  .image-overlay-sm {
    max-width: 390px;
    right: 50px;
    bottom: 10px;
  }

  .gallery-tab-wrap ul {
    justify-content: center;
  }

  .tab-content {
    margin-top: 30px;
  }

  .gallery-sec .cmn-hd {
    margin-bottom: 20px;
    text-align: center;
  }

  .gallery-tab-wrap .nav-tabs .nav-link {
    font-size: 14px;
  }

  .gallery-row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .gallery-tab-wrap {
    margin-top: 0;
  }

  .student-review-box {
    flex-wrap: unset;
    flex-direction: row;
  }

  .video-sec {
    padding-top: 0;
  }

  .blog-rgt {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .banner .slick-next,
  .banner .slick-prev {
    display: none;
  }

  .banner-content {
    padding: 60px 0;
  }

  .h1-heading,
  h1 {
    font-size: 40px;
  }

  .banner-content p {
    font-weight: 500;
    font-size: 14px;
  }

  .banner-content {
    max-width: 350px;
  }

  .banner-h1 {
    margin-bottom: 10px;
    padding-left: 15px;
  }

  .banner-h1::after {
    height: calc(100% - 10px);
  }

  .header-col-flex ul li a {
    font-size: 0px;
  }

  .header-col-flex ul li a i {
    font-size: 12px;
  }

  .header-col-lft ul li::after {
    right: -13px;
    width: 1px;
    height: 100%;
    opacity: 0.3;
  }

  .main-head .container-fluid {
    padding: 0 12px;
  }

  .navbar-brand {
    width: 180px;
  }

  .hdr-rgt {
    padding-right: 10px;
  }

  .header-col-rgt ul li:last-child a {
    border-right: none;
  }

  .sub-menu > li > a {
    font-size: 14px;
  }

  .navbar-toggler {
    margin-top: 2px;
  }

  .abt-img-bottom,
  .abt-img-center,
  .abt-img-top {
    position: relative;
    top: unset;
    left: unset;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    width: 115px;
    height: 115px;
    margin-top: 14px;
  }

  .abt-col-imgs::after {
    display: none;
  }

  .abt-col-imgs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .abt-col-imgs h3 {
    font-size: 10px;
  }

  .hexagon-img-anima {
    position: absolute;
    top: 0%;
    left: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  @-webkit-keyframes rotatePause {
    0% {
      -webkit-transform: translate(0%, 0%) rotate(0deg);
      transform: translate(0%, 0%) rotate(0deg);
    }

    85.7% {
      -webkit-transform: translate(0%, 0%) rotate(180deg);
      transform: translate(0%, 0%) rotate(180deg);
    }

    100% {
      -webkit-transform: translate(0%, 0%) rotate(180deg);
      transform: translate(0%, 0%) rotate(180deg);
    }
  }

  @keyframes rotatePause {
    0% {
      -webkit-transform: translate(0%, 0%) rotate(0deg);
      transform: translate(0%, 0%) rotate(0deg);
    }

    85.7% {
      -webkit-transform: translate(0%, 0%) rotate(180deg);
      transform: translate(0%, 0%) rotate(180deg);
    }

    100% {
      -webkit-transform: translate(0%, 0%) rotate(180deg);
      transform: translate(0%, 0%) rotate(180deg);
    }
  }

  .abt-img-bottom {
    margin-top: -15px;
  }

  .abt-img-bottom .image-overlay {
    -webkit-filter: brightness(0) saturate(100%) invert(88%) sepia(2%)
      saturate(306%) hue-rotate(69deg) brightness(96%) contrast(97%);
    filter: brightness(0) saturate(100%) invert(88%) sepia(2%) saturate(306%)
      hue-rotate(69deg) brightness(96%) contrast(97%);
  }

  .abt-cont-list-col ul li,
  .course-list-col-box ul li {
    font-size: 14px;
    margin-bottom: 6px;
  }

  p {
    margin: 0 0 14px 0;
  }

  .abt-img-list-flex {
    margin-bottom: 14px;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 20px;
  }

  .cmn-gap {
    padding: 70px 0;
  }

  h2 {
    font-size: 23px;
  }

  .cmn-hd span {
    font-size: 12px;
    min-width: 68px;
    padding: 5px 11px;
  }

  .cmn-btn-border,
  .cmn-btn {
    font-weight: 700;
    font-size: 13px;
    padding: 8px 13px;
    gap: 7px;
  }

  .cmn-btn i {
    font-size: 9px;
  }

  .cmn-btn::after {
    top: 3px;
    width: 10px;
    height: 10px;
  }

  .course-list-col-box-img {
    max-width: 40px;
  }

  .faculty-tabs .nav-link {
    padding: 11px 12px;
  }

  .faculty-top {
    margin-bottom: 20px;
  }

  .faculty-slider-box {
    padding: 20px;
  }

  .arrow-cd {
    top: 47px;
  }

  .js-faculty-slider .slick-list {
    padding-right: 220px;
  }
  .ftr-col-adds {
    margin-bottom: 20px;
  }
  .ftr-top {
    padding-bottom: 10px;
  }

  .ftr-hd {
    font-size: 17px;
    margin-bottom: 3px;
  }

  .ftr-logo-link {
    max-width: 90px;
  }

  .footer-col {
    padding: 0;
  }

  .page-footer .container {
    padding: 0 12px;
  }

  .header-top {
    margin-bottom: 0px;
  }

  .banner-content p {
    font-size: 0px;
  }

  .banner-content {
    min-height: 50vh;
  }

  .abt-img-list-col {
    max-width: 100%;
    border-radius: 6px;
    margin: 5px 0;
  }

  .abt-cont-list-col:last-child {
    background-color: #ffffff33;
    position: absolute;
    bottom: 5px;
    padding: 20px;
    border-radius: 10px 0 0 0;
    right: 0;
    backdrop-filter: blur(4px);
  }

  .course-list-col-box-top {
    min-height: unset;
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }

  .course-list-col-box ul {
    margin-bottom: 65px;
  }

  .course-list-col-box ul li {
    margin-bottom: 19px;
  }

  .course-list-col-box ul li:last-child {
    margin-bottom: 0px;
  }

  .video-wrap-one {
    display: block;
    margin: 0;
    width: calc(100% - 60px);
  }

  .video-wrap-two {
    position: absolute;
    top: unset;
    bottom: -35px;
    left: unset;
    right: 0;
    width: 50%;
  }

  .faculty-sec .nav-item {
    width: 50%;
  }

  .faculty-sec .nav-item .nav-link {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .js-blog-slider .slick-list {
    padding-right: 50px;
  }

  .our-video-wrap {
    position: relative;
    bottom: unset;
    left: unset;
    height: auto;
    margin-top: 15px;
    background-color: transparent;
    transform: translate(0, 0);
  }

  .play-button-video.playing,
  .play-button-video {
    top: unset;
    width: 35px;
    height: 35px;
    bottom: 20px;
    left: 20px;
    transform: translate(0%, 0%);
  }

  .play-button-video.playing img,
  .play-button-video img {
    max-width: 13px;
  }

  .back-to-top-btn {
    position: fixed;
    bottom: 13px;
    right: 13px;
    width: 30px;
  }

  .our-faculty-box {
    padding: 30px;
  }

  .video-dc-cont ul li {
    font-size: 14px;
  }

  .video-dc-cont ul li::after {
    top: -2px;
  }

  .video-dc-cont p:first-child {
    font-size: 14px;
  }

  .inner-contact-home-img {
    display: none;
  }

  .img-pop {
    max-width: 160px;
  }

  .modal-form-body h2 {
    font-size: 20px;
    margin-bottom: 9px;
  }

  .form-wrap-pop .modal-body {
    padding: 20px;
  }

  .form-wrap-pop .modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .pop-btn-close {
    top: 26px;
    right: 20px;
    width: 25px;
    height: 25px;
  }

  .modal-form-body p {
    font-size: 12px;
  }
  .pop-btn-close::before {
    content: "\58";
    font-size: 10px;
    line-height: 1;
    position: absolute;
    top: 7px;
    left: 7px;
  }

  .modal-form-body p span {
    font-size: 14px;
  }

  .inner-banner {
    min-height: 230px;
  }

  .about-in-img-two {
    display: none;
  }

  .about-in-img-one {
    max-width: 100%;
  }

  .what-we-wrap-row {
    --bs-gutter-x: 0px;
    --bs-gutter-y: 24px;
  }

  .why-ch-row {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 20px;
  }

  .accordion-body {
    padding: 12px;
  }

  .accordion-button {
    font-size: 14px;
    padding: 12px;
  }

  .faq-wrap .accordion-item {
    margin-bottom: 12px;
  }

  .faq-wrap {
    margin: 25px auto 0;
  }

  .in-house-col-img {
    width: 50px;
    height: 50px;
  }

  .in-house-col {
    border-radius: 10px;
    padding: 16px;
    gap: 12px;
  }

  .in-house-col-cont {
    padding-top: 7px;
  }

  .in-house-col::before {
    left: 36px;
    width: 14px;
    border-left: 2px solid var(--bg-green);
    border-right: 2px solid var(--bg-green);
  }

  .in-house-col-cont h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .in-house-col-cont span {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .in-house-row {
    --bs-gutter-x: 0px;
  }

  .courses-abt-sec .about-in-img-one {
    max-width: 100%;
  }

  .courses-col-cont-top {
    flex-wrap: wrap;
  }

  .blogs-list-row {
    --bs-gutter-x: 0px;
  }

  .gallery-row {
    --bs-gutter-x: 0px;
  }

  .about-in-img-contact {
    padding-top: 50%;
  }

  .timeline-group:nth-child(odd) .timeline-item {
    flex-direction: column;
    margin-top: 0;
  }

  .timeline-group:nth-child(odd) {
    flex-direction: unset;
  }

  .timeline-group:nth-child(odd) .timeline-item-top h3 {
    margin: 0px 0 0px 0;
  }

  .timeline-item {
    margin: 0;
  }

  .timeline-group:nth-child(odd) .timeline-item-top {
    background: transparent;
  }

  .timeline-item-top {
    background-color: transparent;
  }

  .timeline-group:nth-child(odd) .timeline-item-top {
    flex-direction: column;
  }

  .annual-report-timeline {
    overflow: hidden;
  }

  .timeline-container::before,
  .timeline-container::after,
  .timeline-container-line {
    top: 0;
  }

  .timeline-group:nth-child(odd) .timeline-item-top h3 {
    margin: 0px 0 -12px 0;
  }

  .timeline-group:nth-child(odd) .timeline-item-bottom {
    padding-top: 20px;
  }

  .timeline-item-top {
    height: 150px;
  }

  .timeline-container::after,
  .timeline-container::before,
  .timeline-container-line,
  .timeline-item-bottom {
    height: 150px;
  }

  .faculty-img-cont-wrap {
    justify-content: center;
    gap: 8px;
  }

  .faculty-img-col-b {
    width: 240px;
    height: 240px;
  }

  .faculty-cont-col-b h3 {
    font-size: 30px;
    margin-bottom: 7px;
  }

  .faculty-img-cont-center h4 {
    border-left: 2px solid var(--bg-green);
    font-size: 18px;
    padding-left: 5px;
    margin-bottom: 10px;
  }

  .faculty-cont-col-b p {
    font-weight: 400;
  }

  .faculty-img-cont-box-row .row {
    --bs-gutter-x: 0px;
    --bs-gutter-y: 20px;
  }

  .faculty-img-cont-box-row {
    padding: 18px;
    margin-bottom: 0;
  }

  .mtm-logo {
    max-width: 150px;
  }

  .matsyam-wht {
    max-width: 160px;
    margin-bottom: 16px;
  }

  .experts-row,
  .what-learn__row,
  .program__wrapper,
  .aee__row {
    --bs-gutter-x: 0px;
  }

  .aee__icon {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-bottom: 15px;
  }

  .aee__icon img {
    max-width: 30px;
    height: auto;
    max-width: 30px;
  }

  .aee__card {
    padding: 30px 20px;
    margin-bottom: 20px;
    min-height: auto;
  }

  .program__list li {
    font-size: 14px;
    padding-left: 22px;
    margin-bottom: 10px;
  }

  .program__list li::before {
    top: 2px;
    width: 14px;
    height: 14px;
    background-size: cover;
  }

  .career__title {
    font-size: 28px;
  }

  .career__description {
    font-size: 14px;
  }

  .methodology__item::before {
    left: 9.5px;
    transform: translateX(0%);
  }

  .methodology__number {
    width: 20px;
    height: 20px;
    left: 0%;
    top: 0;
    transform: translateX(0%);
  }

  .methodology__icon-wrap {
    margin: 0 0 10px;
    max-width: 40px;
  }

  .methodology__item:nth-child(even) .methodology__cont-wrap {
    text-align: left;
  }

  .methodology__icon {
    width: 100%;
    padding: 0 20px 0 50px;
  }

  .methodology__cont {
    width: 100%;
    padding: 0 20px 0 50px;
  }

  .methodology__item {
    padding-bottom: 30px;
  }

  .experts__content li {
    font-size: 14px;
    margin-bottom: 15px;
    padding-left: 26px;
  }

  .experts__content li::before {
    top: 2px;
    width: 17px;
    height: 17px;
    background-size: 17px;
  }

  .student-review-box-cont p {
    font-size: 13px;
  }

  .student-review-box-img {
    max-width: 120px;
    margin: 0 13px 10px 0;
  }

  .student-review-box-img::before {
    width: 25px;
    height: 25px;
    top: -12px;
    right: -12px;
  }

  .student-review-box-cont h3 {
    font-size: 15px;
  }

  .student-review-box-cont ul {
    margin-bottom: 3px;
    gap: 3px;
  }

  .contact-form {
    padding: 25px;
  }

  .home-contact-row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 25px;
  }

  .about-in-img-contact {
    padding-top: 65%;
  }

  .cta__wrapper-in h2 {
    font-size: 30px;
  }

  .cta__wrapper-in p {
    font-size: 14px;
  }

  .cta__wrapper {
    padding: 46px 20px;
    border-radius: 25px;
  }

  .program__wrapper {
    --bs-gutter-y: 0;
  }

  .career-details-btns {
    margin-top: 25px;
  }

  .wh-or-clnt-say-arrows {
    display: none;
  }

  .clients-wrap {
    margin-top: 40px;
  }

  .wh-or-clnt-say-progress {
    bottom: 71px;
    height: 2px;
  }

  .clients-cont span {
    font-size: 13px;
  }

  .wh-or-clnt-say-slide-top p {
    font-size: 16px;
  }

  .wh-or-clnt-say-cont {
    font-size: 14px;
  }

  .wh-or-clnt-say-cont div {
    font-size: 24px;
  }

  .wh-or-clnt-say-imgs img {
    width: 50px;
    height: 50px;
  }

  .wh-or-clnt-say-cont-img {
    gap: 8px;
  }

  .faq-wrap .accordion-item .accordion-button {
    padding: 10px 20px;
    padding-right: 37px;
    line-height: 1.3;
  }

  .faq-wrap .accordion-item {
    border-radius: 27px;
    overflow: hidden;
  }

  .accordion-body {
    padding: 12px 20px;
  }

  .banner-cont-wrap {
    padding: 210px 0 40px;
    min-height: 70vh;
    z-index: 1;
  }

  .banner {
    min-height: 70vh;
    overflow: hidden;
  }

  .banner-cont h1 {
    font-size: 35px;
  }

  .enquire-btn {
    font-size: 14px;
    padding: 9px 8px;
  }

  .image-overlay-sm {
    display: none;
  }

  .inner-banner-wh .inner-banner-cont {
    text-align: center;
  }

  .inner-banner {
    padding: 120px 0 30px;
    min-height: 280px;
  }

  .inner-banner h1 {
    margin-bottom: 5px;
  }

  .gall-img-wrap {
    padding: 32% 0;
  }

  .gallery-tab-wrap .nav-tabs .nav-item {
    padding: 0;
  }

  .gallery-tab-wrap ul {
    gap: 12px;
  }

  .gall-cont-overlay {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    padding: 9px;
    border-radius: 4px;
  }

  .blog-inner-sec {
    padding: 120px 0 50px;
  }

  .blog-lf-dtl-cont h1 {
    font-size: 24px;
  }

  .blog-lf-dtl-cont h3 {
    font-size: 22px;
  }

  .blog-lf-dtl-cont table tr td {
    padding: 5px;
    font-size: 11px;
  }

  .blog-lf-dtl-cont table tr th {
    padding: 10px 7px;
    font-size: 11px;
  }

  .blog-filter {
    margin-bottom: 30px;
  }

  .blog-rgt-col h4 {
    margin-bottom: 10px;
  }

  .news-events-wrap .nav-tabs {
    gap: 0px;
  }

  .news-events-wrap .nav-tabs li {
    max-width: calc(50%);
  }

  .news-events-wrap .tab-content {
    padding: 10px;
  }

  .events-wrap h2 {
    margin-bottom: 17px;
  }

  .events-date {
    font-size: 16px;
  }

  .event-time-icon {
    width: 50px;
    height: 50px;
  }

  .past-event-content {
    padding: 17px;
    padding-bottom: 25px;
  }

  .up-events-content-flex {
    border-radius: 10px;
    padding: 15px 12px;
  }

  .up-events-content-txt h3 {
    font-size: 23px;
  }

  .past-event-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .event-slider__thumb-box {
    border-radius: 5px;
  }

  .event-time-txt h4 {
    font-size: 14px;
  }

  .event-time-txt p {
    font-size: 11px;
  }

  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-txt {
    font-size: 14px;
    margin-top: 11px;
    display: inline-block;
  }

  .photo-gallery {
    margin-bottom: 10px;
  }

  .abt-cont-list-col ul li {
    color: var(--bg-white);
  }

  .col-about-item:first-child {
    display: none;
  }

  .course__list {
    margin-top: 20px;
  }

  .course__list__item-link h3 {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .video-sec {
    padding-top: 0;
  }

  .faculty-col-cont p {
    display: none;
  }

  .our-video-wrap video {
    border-radius: 0%;
  }

  .video-test-overlay {
    top: -40%;
    max-width: 338px;
  }

  .abt-lft-img {
    top: 0;
    width: 100%;
    max-width: 267px;
  }

  .video-dc-row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 35px;
  }

  .video-dc-sec {
    padding-top: 0;
  }

  .video_cont-wrap p {
    display: none;
  }

  .video_cont-wrap {
    margin-top: 30px;
  }

  .video_cont-wrap ul li {
    gap: 15px;
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid #d2d2d21c;
  }

  .faculty-sec {
    padding-top: 0;
  }

  .img-cta-rgt {
    right: 16%;
    top: 18%;
    max-width: 28px;
  }

  .img-cta-lft {
    left: 14%;
    bottom: 13%;
    max-width: 30px;
  }

  .faculty-progress {
    display: none;
  }

  .faculty-controls {
    justify-content: center;
  }

  .tab-content {
    margin-top: 18px;
  }

  .wh-or-clnt-say {
    padding-top: 0;
  }

  .wh-or-clnt-say .cmn-hd p {
    display: none;
  }

  .text-right {
    text-align: left;
  }

  .js-blog-slider .slick-list {
    margin: 0 -5px;
    margin-right: -12px;
  }

  .blog-col {
    padding: 5px;
  }

  .blog-img-overlay {
    top: 0;
  }

  .fcl-overlay {
    top: 3%;
  }

  .footer-col-row {
    --bs-gutter-x: 0;
  }

  .blog-sec .slick-arrow {
    transform: translateY(0%);
    top: 0;
    width: 26px;
    height: 26px;
    top: -55px;
  }

  .blog-sec .slick-next {
    right: 0;
  }

  .blog-sec .slick-prev {
    left: unset;
    right: 40px;
  }

  .blog-sec .slick-prev::after,
  .blog-sec .slick-next::after {
    font-size: 13px;
  }

  .student-review-sec {
    padding-top: 0;
  }

  .js-student-review .slick-next,
  .js-student-review .slick-prev {
    width: 27px;
    height: 27px;
    bottom: 15px;
    transform: translateY(0);
    background-color: var(--bg-white);
    top: unset;
  }

  .student-review-col {
    padding: 0;
  }

  .student-review-box-img::before {
    display: none;
  }

  .student-review-box {
    padding: 12px;
  }

  .js-student-review .slick-next::after,
  .js-student-review .slick-prev::after {
    font-size: 14px;
  }

  .js-student-review .slick-next {
    right: 13px;
  }

  .js-student-review .slick-prev {
    left: unset;
    right: 50px;
  }

  input[type="email"],
  input[type="tel"],
  input[type="text"] {
    border: 1px solid #d2d2d266;
    height: 40px;
    border-radius: 2px;
  }

  textarea {
    border: 1px solid #d2d2d266;
    border-radius: 2px;
  }

  .student-review-sec .cmn-hd p {
    display: none;
  }

  .faq-sec .cmn-btn {
    margin-top: 20px;
  }

  .inner-banner .video-test-overlay {
    max-width: 218px;
  }

  .inner-banner-cont ul {
    justify-content: center;
  }
}

@media (max-width: 479px) {
  .js-faculty-slider .slick-list {
    padding-right: 70px;
  }

  .logo-two {
    margin: 7px 0 0 4px;
  }

  .navbar-brand {
    width: 150px;
  }
}

@media (max-width: 375px) {
  .navbar-brand {
    width: 100px;
  }
}
