@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.b {
  border: 1px solid red;
}

body {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", serif;
}
body::-webkit-scrollbar {
  width: 0.5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}
::selection {
  color: #fff;
  background: var(--primary-color);
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #c63033;
  --secondary-color: #333;
}

.bg_third {
  background-color: var(--thid-color);
}

*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p {
  font-size: 16px;
  color: #000;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  text-decoration: none;
}
button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}
section {
  padding: 70px 0 70px;
}

.large_heading {
  font-size: 46px;
}
.heading {
  font-size: 40px;
  line-height: 50px;
}
.sub_heading {
  font-size: 30px;
}
.small_heading {
  font-size: 25px;
}
.small_heading {
  font-size: 22px;
}
.title {
  font-size: 20px;
}
.text {
  font-size: 18px;
}
.fontWeight300 {
  font-weight: 300;
}
.fontWeight400 {
  font-weight: 400;
}
.fontWeight500 {
  font-weight: 500;
}
.fontWeight600 {
  font-weight: 600;
}
.fontWeight700 {
  font-weight: 700;
}
.fontWeight800 {
  font-weight: 800;
}
.fontWeight900 {
  font-weight: 900;
}
/* header */
.inlineHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header {
  /* padding: 10px 0; */
  /* position: absolute; */
  background-color: var(--third-color);
  top: 0px;
  left: 0px;
  z-index: 9;
  width: 100%;
  background-color: white;
}
.header .inline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* .header .left_logo{
  padding: 10px 0;

} */
.header .left_logo a img {
  width: 110px;
  padding: 10px 0;
}
.header .menu-links {
  display: flex;
  align-items: center;
}
.header .menu-links ul {
  display: flex;
  align-items: center;
}
.header .menu-links ul li {
  padding: 10px 15px;
  /* border-bottom: 2px solid transparent; */
  transition: all 0.3s ease-in-out;
  & a {
    color: #333;
    font-weight: 600;
  }
}
.header .menu-links ul li:hover {
  color: #fff;
  & a {
    color: var(--primary-color);
  }
}

.menu-links ul li.active a{
  color: var(--primary-color);
}
.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  width: 100%;
  background: #fff;
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
.btnMenu {
  border: none;
}
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
}

.fontHeading {
  font-family: "Montserrat", sans-serif;

  /* font-family: "Anek Odia", sans-serif; */
}

.text_primary {
  color: var(--primary-color);
}
.bg_primary {
  background-color: var(--primary-color);
}
.bg_secondary {
  background-color: var(--secondary-color);
}
.bg_third {
  background-color: var(--third-color);
}
.bg-gray-light {
  background-color: #f6f6f6;
}
.text_secondary {
  color: var(--secondary-color);
}
.text_third {
  color: var(--third-color);
}

/* buttons */
/* .btn_1 { */
.btn_1 {
  width: 150px;
  height: 50px;
  background-color: white;
  margin: 20px;
  color: #568fa6;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.btn_1:before,
.btn_1:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.btn_1:before {
  right: 0;
  top: 0;
  transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.btn_1:after {
  left: 0;
  bottom: 0;
}

.btn_1 span {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.btn_1 span:before,
.btn_1 span:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 0;
  background-color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.btn_1 span:before {
  right: 0;
  top: 0;
  transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.btn_1 span:after {
  left: 0;
  bottom: 0;
}

.btn_1 p {
  padding: 0;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
  position: absolute;
  width: 100%;
  height: 100%;
}

.btn_1 p:before,
.btn_1 p:after {
  position: absolute;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
  z-index: 1;
  left: 0;
}

.btn_1 p:before {
  content: attr(data-title);
  top: 50%;
  transform: translateY(-50%);
}

.btn_1 p:after {
  content: attr(data-text);
  top: 150%;
  color: var(--primary-color);
}

.btn_1:hover:before,
.btn_1:hover:after {
  width: 100%;
}

.btn_1:hover span {
  z-index: 1;
}

.btn_1:hover span:before,
.btn_1:hover span:after {
  height: 100%;
}

.btn_1:hover p:before {
  top: -50%;
  transform: rotate(5deg);
}

.btn_1:hover p:after {
  top: 50%;
  transform: translateY(-50%);
}

.btn_1.start {
  background-color: var(--primary-color);
  box-shadow: 0px 5px 10px -10px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.btn_1.start p:before {
  top: -50%;
  transform: rotate(5deg);
}

.btn_1.start p:after {
  color: white;
  transition: all 0s ease;
  content: attr(data-start);
  top: 50%;
  transform: translateY(-50%);
  animation: start 0.3s ease;
  animation-fill-mode: forwards;
}

@keyframes start {
  from {
    top: -50%;
  }
}

.btn_1.start:hover:before,
.btn_1.start:hover:after {
  display: none;
}

.btn_1.start:hover span {
  display: none;
}

.btn_1:active {
  outline: none;
  border: none;
}

.btn_1:focus {
  outline: 0;
}
/* } */

/* .btn_2 { */
.btn_2 {
  padding: .7em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--primary-color);
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid var(--primary-color);
  z-index: 1;
  background: #fff;
}

.btn_2:hover {
  color: #ffffff;
  outline: 2px solid #c6303280;
  box-shadow: 4px 5px 17px -4px #c63032;
}

.btn_2::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}

.btn_2:hover::before {
  width: 250%;
}
.btn_3 {
  background: transparent;
  padding: .7em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid #fff;
}

.btn_3:hover {
  color: var(--primary-color);
  transform: scale(1.1);
  outline: 2px solid #fff;
  box-shadow: 4px 5px 17px -4px #ffffff86;
}

.btn_3::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}

.btn_3:hover::before {
  width: 250%;
}
.btn_4 {
  background: var(--primary-color);
  padding: .7em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  transition: all 1000ms;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  outline: 2px solid #fff;
  z-index: 1;
}

.btn_4:hover {
  color: var(--primary-color);
  outline: 2px solid #fff;
  box-shadow: 4px 5px 17px -4px #ffffff86;
}

.btn_4::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}

.btn_4:hover::before {
  width: 250%;
}
/* } */

/* footer css */
.footer {
  background: #000;
  background-size: cover;
  position: relative;
  padding: 50px;
  z-index: 1;
  padding-bottom: 25px;
}
.footer:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.leftFooter h4 {
  color: #cfcccc;
  font-size: 20px;
}
.leftFooter h4 strong {
  color: #cfcccc;
}
.leftFooter a {
  color: #cfcccc;
}
.itemFooter {
  margin-top: 10px;
}
.itemFooter .small_heading {
  color: #fff;
  font-weight: 600;
}
.itemFooter ul li a {
  display: inline-block;
  padding: 8px 10px;
  color: #cfcccc;
  font-weight: 600;
  font-size: 16px;
}
.itemFooter ul li a:hover {
  color: var(--primary-color);
}
.itemFooter ul {
  margin-top: 20px;
}
.credits a {
  color: #666;
}
.credits, .credits p, .textFooter{
  font-size: 14px;
}

/* banner */
.banner-wrapper {
  position: relative;
  background-image: url("../images/banner.jpg");
  height: 515px;
}
.banner_wrapper_inner {
  background:linear-gradient(to right, rgb(198 48 51) 0%, rgb(189 32 35) 15%, rgb(198 48 51 / 81%) 30%, rgb(201 23 26 / 75%) 60%, rgba(198, 48, 51, 0) 75%, rgba(198, 48, 51, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.banner_content {
  padding: 15px 0;
  display: flex;
  align-items: center;
}
.banner_list ul {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.banner_list ul li {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}
.banner_list ul li .img_box {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_list ul li .img_box img {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  display: block;
}
.banner_list ul li p {
  margin-top: 5px;
  font-size: 13px;
  text-align: center;
  position: relative;
  font-weight: 600;
}
.banner_list ul li p:after {
  content: "";
  position: absolute;
  width: 50px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
}
.banner_list ul li {
}

.banner_form_main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner_form_main .banner_form {
  width: 100%;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.formItem {
  margin-top: 10px;
}
.formItem label {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.formItem input,
.formItem textarea, .formItem select {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  font-family: "Poppins", Sans-serif;
  font-size: 12px;
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: #133524;
  background-color: #f8f4f4;
  width: 100%;
  padding: 10px;
}

.about_grid ul {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.about_img_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.about_img_grid .about_img:nth-child(1) {
  grid-row: span 2;
}
.about_img_grid .about_img img {
  /* border: 1px solid red; */
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about_img_grid .about_img:nth-child(2) img {
  height: 200px;
}
.about_img_grid .about_img:nth-child(3) {
  padding: 20px;
  height: 180px;
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about_img_grid .about_img:nth-child(3) p {
  color: #fff;
}
.about_grid .img_box img {
  width: 50px;
}
.about_grid ul li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.about_grid ul li .img_box {
  width: 50px;
}
.about_grid ul li p {
  width: calc(100% - 50px);
  font-weight: 500;
  margin-top: 10px;
  font-size: 18px;
}

.h_underline {
  position: relative;
}

.h_underline:after {
  position: absolute;
  content: "";
  bottom: -10px;
  width: 100px;
  height: 3px;
  left: 0;
  background-color: var(--primary-color);
  z-index: 1;
}
.h_underline.text-center:after {
  left: 50%;
  transform: translateX(-50%);
}

.features_grid_main {
  padding: 30px;
  background-color: var(--primary-color);
}

.features_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.features_grid li:not(:last-child) {
  border-right: 2px solid #fff;
}
.features_grid li p {
  text-align: center;
  color: #fff;
}

.course_box {
  padding: 30px;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  background: #fff;
}
.course_box .img_box {
  width: 100%;
  height: 70px;
}
.course_box .img_box img {
  width: 70px;
  margin: 0 auto;
  display: block;
}
.course_box h4 {
}
.course_box p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.affiliated_uni {
  background-image: url("../images/white-bg1.jpg");
}

.universities_slider .swiper-slide {
  background-color: #fff;
}
.universityItem{
  display: flex;
  align-items: center;
  border:1px solid #111;
  padding: 15px;
  height: 119px;
}
.imgUni{
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rightUni{
  width: calc(100% - 100px);
  margin-left: 15px;
}
.rightUni p{
  font-size: 15px;
}
.imgUni img{
  max-width: 100%;
  max-height: 100%;
}
.smallText{
  font-size: 13px;
  color: #666;
}
.universities_slider {
  .swiper-button-next,
  .swiper-button-prev {
    color: var(--primary-color) !important;
  }
}

.process_grid {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.process_item {
  flex: 0 0 calc(33.333% - 8px);
  padding: 30px;
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.process_item .steps {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  font-size: 20px;
  position: relative;
  z-index: 3;
}
.process_item .steps::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: -1;
  transition: all 1s ease-in-out;
}
.process_item:hover .steps {
  background-color: #fff;
}
.process_item:hover h4 {
  color: #fff;
}
.process_item:hover p {
  color: #fff;
}
.process_item:hover .steps::after {
  scale: 5000%;
}
.process_item h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 3;
  transition: all 1s ease-in-out;
}
.process_item p {
  position: relative;
  z-index: 3;
  transition: all 1s ease-in-out;
}

/*  */
.payment .img_box1 {
  width: 100%;
  height: 100%;
}
.payment .img_box1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment ul {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.payment ul li {
  border: 2px solid var(--primary-color);
  padding: 15px;
}

.payment ul li .img_box {
  width: 100%;
}
.payment ul li .img_box img {
  width: 50px;
  height: 100%;
  object-fit: contain;
}

.payment ul li p {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
}

.why-choose-us .img_box {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
}
.why-choose-us .img_box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.why-choose-us ul {
  padding-left: 40px;
}
.why-choose-us ul li {
  font-size: 15px;
  margin-top: 20px;
  position: relative;
}
.why-choose-us ul li a {
  color: var(--primary-color);
  font-weight: 600;
}
.why-choose-us ul li a:hover {
  color: var(--secondary-color);
  font-weight: 600;
}
.why-choose-us ul li::after {
  position: absolute;
  left: -35px;
  content: "";
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--secondary-color);
}
.why-choose-us ul li::before {
  position: absolute;
  left: -42px;
  content: "";
  top: 0px;
  width: 24px;
  height: 25px;
  border-radius: 100%;

  border: 2px dotted var(--primary-color);
}

.cta2 {
  background-color: #5805077a;
  background-image: url(../images/cta2.jpg);
  background-blend-mode: multiply;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta2 .h_underline::after {
  background-color: #fff;
}

.awards_slider .img_box {
  width: 100%;
  height: 500px;
  padding: 20px;
}
.awards_slider .swiper-slide {
  background-color: #33333338;
}
.awards_slider .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.next_1,
.prev_1 {
  background-color: var(--primary-color);
  width: 40px !important;
  height: 40px !important;
  border-radius: 100%;
  transition: all 0.5s ease-in-out !important;
  border: none !important;
}
.next_1:hover,
.prev_1:hover {
  background-color: #c63032d3;
}
.next_1::after,
.prev_1::after {
  font-size: 15px !important;
  color: #fff !important;
}

.awards_slider .swiper-pagination .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--primary-color) !important;
}

.faq .accordion-item {
  margin-bottom: 10px;
  box-shadow: none;
  border-radius: 0 !important;
  border: none;
}

.faq .accordion-item .accordion-button {
  background-color: var(--primary-color);
  box-shadow: none;
  border-radius: 0 !important;
  border: none;
  color: #fff;
}

.faq .accordion-item .accordion-body {
  background-color: #f6f6f6;
}

.faq .accordion-button::after {
  /* background-color: #fff; */
  filter: invert();
}

.faq .img_box {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
}
.faq .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-details .h_underline::after {
  background-color: #fff;
}
.contact-details .row {
  --bs-gutter-x: 0rem;
}
.contact-details iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact_list li {
  margin-bottom: 20px;
}

.contact_list li a {
  display: flex;
  color: #fff;
}
.contact_list .img_box {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}
.contact_list .content {
  width: calc(100% - 50px);
  padding-left: 10px;
}
.contact_list .content p {
 color: #ffffffc9;
}

/* zaroon */
.courseList{
  margin-top: 20px;
}
.courseList ul{
  display: flex;
  flex-wrap: wrap;
}
.courseList ul li{
  width: calc(100%/5 - 10px);
  background: #f3bb02;
  padding:5px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 17px;
  font-weight: 800;
  margin: 5px;
  text-align: center;
  letter-spacing: 1;
}
.bgGrey{
  background: #f4f4f4;
}
.itemRight{
  border:1px solid #999;
  padding:10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #fff;
  height: 90px;
}
.itemRight img{
  max-width: 100%;
  margin-top: 7px;
}
.itemRight p{
  color: #555;
  font-size: 13px;
}
.itemRight .heading{
  font-size: 34px;
}
.stickyItem{
  position: sticky;
  position: -webkit-sticky;
  top: 87px;
}
.whySection li{
  font-weight: 600;
}
.whySection p{
  font-size: 14px;
  margin-top: 4px;
}
.bottomFixed {
  position: sticky;
  /* bottom: 0; */
  left: 0;
  width: 100%;
  padding: 0px 0;
  background-color: #ee5a24;
  background-image: linear-gradient(315deg, #ee5a24 0%, #ea2027 74%);
  backdrop-filter: blur(8px);
  z-index: 99;
  transition: bottom 0.5s ease-in-out;
}
.inlineFixed {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btnBorderFixed {
  padding: 13px 20px;
  font-size: 15px;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 10px;
  font-weight: 600;
}
.btnBorderFixed:hover {
  background: #fff;
  color: #222;
}
.fontCustom {
  background: #28b742;
  border-color: transparent;
  color: #fff;
}
.fontCustom i {
  font-size: 22px;
  padding-right: 8px;
  vertical-align: middle;
}
.whatsappBox{
  background: #27B36A;
}
.inlineFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footerIcons ul {
    display: flex;
}
.footerIcons ul li{
    width:calc(100%/2);
}
.footerIcons ul li a {
  color: #fff;
  font-size: 20px;
  display: inline-block;
  padding: 10px 10px;
}
.footerIcons ul li a:hover{
  color: var(--primary-color);
}
.inlineFooter{
  flex-wrap:wrap;
}
.footerIcons ul{
  justify-content:center;
}
.footerIcon{
position: fixed;
left: 0px;
bottom: 0px;
z-index: 999;
width: 100%;
background:var(--primary-color);
padding:5px 15px;
}
.footerIcon ul{
display: flex;
align-items: center;
justify-content: space-between;
}
.footerIcon ul li a{
font-size: 15px;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding:8px 0px 10px !important;
display: block;
font-weight:600;
}
/*.footerIcon ul li a.phoneBox{*/
/*background:#13005A;*/
/*}*/
/*.footerIcon ul li a.mailBox{*/
/*  background:#E34133;*/
/*}*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 15px;
  color: #fff;
  background-color: var(--primary-color);
  z-index: 999;
  width: 40px;
  text-align: center;
  height: 40px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 100px;
}
.bgYellow{
  background: #F3BB02;
  border:none;
  color: #000;
}
#bottomBar .title{
  font-size: 19px;
}

.form-floating > .form-control:focus,
.form-select:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  border-color: var(--primary-color);
  -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}
.modal-title .small_heading{
  font-size: 20px;
}
.lessMore{
  display: none;
}
.btnMore{
  background: var(--primary-color);
  padding: 5px 15px;
  color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border:none;
  font-size: 14px;
}
.tableColumn tr td{
  width: 33.33%;
}
.lessMore table tr:nth-child(2n){
  background: #F2F2F2 !important;
}
.swiper-button-next:after, .swiper-button-prev:after{
  font-size: 20px !important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
  right: 0 !important;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next{
  left: 0 !important;
}
.itemProcess{
  padding:30px;
  text-align: center;
}
.itemNumber{
  padding: 5px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
    justify-content: center;
    align-items: center;
}
.bg1, .bg6{
  background: var(--primary-color);
}
.bg2, .bg7{
  background: #1894BA;
}
.bg3, .bg8{
  background: #EE6D26;
}
.bg4, .bg9{
  background: #0E3C55;
}
.bg5{
  background: #A2B967;
}
.itemNumber span{
  background: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 70px;

}
.itemProcess p{
  font-size: 14px;
}
.itemProcess{
  position: relative;
  z-index: 1;
}
.itemNumber:before{
  position: absolute;
  top: -10px;
  left: -10px;
  content: '';
  height: 50px;
  width: 100px;
  border-radius: 150px 150px 0 0;
  border:1px solid #666;
  z-index: -1;
  border-bottom: none;
}
.itemProcess:after{
  position: absolute;
  content: '';
  width: 62%;
  top: 69px;
  left: 69%;
  height: 1px;
  background: #666;
  z-index: -2;
}
.item5:after{
  width: 20px;
  left: 69.5%;
}
.item1:before{
  content: '';
  position: absolute;
  top: 69px;
  width: 20px;
  left: 58px;
  height: 1px;
  background: #666;
  z-index: -2;
}
.itemFooter{
  padding-right: 20px;
}
.itemFooter span{
  display: inline-block;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.itemFooter span:before{
  content: '';
  position: absolute;
  left: 12px;
  bottom: -3px;
  width: 59px;
  height: 5px;
  z-index: -1;
  background: #fff;
  transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
}
.itemFooter ul {
  margin-top: 20px;
}
.itemFooter ul li a{
  color: #ccc;
  font-size: 14px;
  padding-left: 30px;
  position: relative;
  z-index: 1;
}
.itemFooter ul li a:before{
  content: '\f101';
  position: absolute;
  left: 0;
  top: 10px;
  font-family: "Font Awesome 6 Free";
  font-weight:700;
  color: #ccc;
  font-size: 12px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.secondFooter{
  margin-top: 50px;
  padding: 50px 0;
  border-top:1px solid #666;
}
.itemFooter ul li:hover a:before{
  color: var(--primary-color);
}
.textGrey{
  color: #ccc;
}
.iconContact{
  display: flex;
}
.iconLeft{
  width: 20px;
  color: #c2c4c8;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
.rightContact{
  width: calc(100% - 30px);
  padding: 0 0 0 15px;
}
.rightContact p, .rightContact address{
  margin-top: 1px;
  font-size: 14px;
}
.rightContact small{
  font-size: 15px;
  color:#fff;
  font-weight: 500;
}
.iconLeft i{
  font-size: 18px;
}
.rightContact p, .rightContact p a, .rightContact address{
  color: #ccc;
}
.copyRight{
  background: #fff;
  padding: 10px 0;
}
.innerTesti {
  background-color: #FFF;
  padding: 44px 44px 44px 44px;
  margin: 0px 0px 38px 0px;
  border-radius: 24px 24px 24px 24px;
  box-shadow: 0px 13px 22px 0px rgba(25, 25, 25, 0.08);
  position: relative;
  z-index: 1;
  height: 200px;
}

.innerTesti:after {
  content: '';
  border-style: solid;
  position: absolute;
  border-width: 10px 10px 0 10px;
  border-color: #fff transparent transparent transparent;
  left: 56%;
  border-right-width: 40px;
  margin-left: calc(40px/-2);
  border-top-width: 20px;
  bottom: -20px;
  border-left-width: 0px;
}
/* .testimonialSlider .swiper-slide {
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

.testimonialSlider .swiper-slide > * {
  flex: 1;
} */
.testimonialAvtar {
  margin-top: 15px;
}

.testimonialAvtar img {
  width: 60px;
  margin: 0 auto;
}
.testimonialAvtar .title{
  font-size: 18px;
}
/*.testimonialSlider .swiper-button-next, .testimonialSlider .swiper-button-prev{*/
/*  top: 35% !important;*/
/*}*/
.universitySpace{
  padding: 0 30px;
}
.uniNext, .uniPrev{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  background-color: var(--primary-color);
  width: 40px !important;
  height: 40px !important;
  border-radius: 100%;
  transition: all 0.5s ease-in-out !important;
  border: none !important;
  color: #fff !important;
  z-index: 99;
}
.uniNext{
  left: -12px;
}
.uniPrev{
  right: -12px;
}
.itemCourseList{
  border-bottom:5px solid #333;
  padding:20px 40px;
  background: #f5f5f5;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.itemCourseList li{
  padding: 8px 20px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
.borderNone{
  border-right: none;
}
.itemCourseList li:before{
  content: '\f02d';
  position: absolute;
  top: 11px;
  left: 0;
  font-size: 14px;
  font-family: "Font Awesome 6 Free";
  font-weight:900;
  color: var(--primary-color);
}

.itemCollege{
  padding: 20px 40px;
  border:1px solid #e0e0e0;
}
.collegeLogo{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  margin-top: -10px;
}
.imgCollege{
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imgCollege img{
  max-width: 100%;
  max-height: 100%;
}
.rightLogo{
  width: calc(100% - 120px);
  margin-left: 15px;
}
.rightLogo .title{
  font-size: 17px;
}
.ribbon{
  width: 80%;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  color: #fff;
  font-size:17px;
  text-transform: uppercase;
  font-weight: 600;
  transform: translateY(-40px);
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  position: relative;
  z-index: 1;  
}
.ribbon:before{
  content: '';
  position: absolute;
  top: 0px;
  left: -23px;
  width: 30px;
  height: 20px;
  background-size: 100%;
  background-repeat: no-repeat;
}
.ribbon:after{
  content: '';
  position: absolute;
  top: 0px;
  right: -23px;
  width: 30px;
  height: 20px;
  background-size: 100%;
  background-repeat: no-repeat;
}
.itemIcon1:before, .itemIcon6:before{
  background-image: url(../images/icons/angle_icon.png);
}
.itemIcon1:after, .itemIcon6:after {
  background-image: url(../images/icons/angle_icon.png);
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.itemIcon2:before, .itemIcon7:before{
  background-image: url(../images/icons/angle_icon2.png);
}
.itemIcon2:after, .itemIcon7:after{
  background-image: url(../images/icons/angle_icon2.png);
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.itemIcon3:before, .itemIcon8:before{
  background-image: url(../images/icons/angle_icon3.png);
}
.itemIcon3:after, .itemIcon8:after{
  background-image: url(../images/icons/angle_icon3.png);
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.itemIcon4:before, .itemIcon9:before{
  background-image: url(../images/icons/angle_icon4.png);
}
.itemIcon4:after, .itemIcon9:after{
  background-image: url(../images/icons/angle_icon4.png);
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.itemIcon5:before{
  background-image: url(../images/icons/angle_icon5.png);
}
.itemIcon5:after{
  background-image: url(../images/icons/angle_icon5.png);
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.contentCollege{
  padding:8px 10px;
  border: 1px solid #e0e0e0;
  margin-top: 20px;
  display: flex;
  background: #f9f9f9;
  border-bottom:none;
}
.borderBottom{
  border-bottom:1px solid #e0e0e0;
}
.contentCollege p {
  width: calc(100% / 2);
  font-size: 13px;
  color: #222;
}
.btnYellow{
  padding: 10px 20px;
  font-size: 13px;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  border-radius: 3px;
  font-weight: 600;
  background: #F3BB02;
  color: #000;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  letter-spacing: 1px;
}
.btnYellow:hover{
  color:#000
}
.modal-header{
  border:none
}
.modalLeft{
  padding:40px 30px
}
.modal-body{
  background: var(--primary-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
  z-index: 1;
}
.modal-body:before{
  content: '';
  width: 45%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/bg/footer-bg.jpg) no-repeat;
  background-size: cover;
  z-index: -2;
}
.modal-body:after{
  content: '';
  width: 45%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.modalRight{
  background: #fff;
  border-radius:0 5px 5px 0;
  -webkit-border-radius:0 5px 5px 0;
  -moz-border-radius:0 5px 5px 0;
  -ms-border-radius:0 5px 5px 0;
  -o-border-radius:0 5px 5px 0;
  padding:20px;
}
.innerRight{
  padding:0px 20px
}
.formItemPop{
  margin: 15px 0;
}
.formItemPop input, .formItemPop textarea, .formItemPop select{
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border:1px solid #888;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #fff;
}
.formItemPop input:focus, .formItemPop textarea:focus, .formItemPop select:focus{
  border:1px solid var(--primary-color);
  box-shadow: 0px 2px 10px rgb(102 102 104 / 65%);
}
.formItemPop input::placeholder, .formItemPop textarea::placeholder{
  font-size: 15px;
}
.formItemPop textarea{
  height: 80px;
}
.iconExpertis{
  margin-top: 20px;
}
.iconExpertis ul li a{
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
}
.bannerCourseList ul{
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.bannerCourseList ul li{
  width: calc(100% / 2);
  padding: 5px 10px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  position: relative;
  padding-left: 20px;
}
.bannerCourseList ul li:before{
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.breadcrame{
  background: #111;
}
.breadcrame ul{
  display: flex;
}
.breadcrame ul li a{
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
}
.breadcrame ul li.active a{
  color: #F3BB02;
}
.breadcrame ul li{
  position: relative;
}
.breadcrame ul li:after{
  content: "\f101";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -5px;
  top: 14px;
  font-size: 11px;
  color:#fff;
}
.breadcrame ul li:last-child:after{
  display: none;
}
.textLight{
  color: #666;
}
.leftInnerCourse p, .leftInnerCourse ul{
  margin: 10px 0;
}
.leftInnerCourse{
  padding-right: 20px;
}
.rightInnerCourse{
  padding: 20px;
}
.rightInnerCourse .fa-star{
  color: #FFC83D;
}
.rightInnerCourse p{
  font-size: 15px;
}
.highlightPoints{
  margin-top: 30px;
}
.itemHighlight{
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.iconHigh{
  width: 20px;
}
.iconHigh img{
  max-width: 100%;
}
.rightIconHigh{
  width: calc(100% - 30px);
  margin-left: 15px;
}
.rightInnerCourse p.small{
  font-size: 13px;
}
.leftInnerCourse img{
  margin: 20px 0;
  max-width: 100%;
}
.rightInnerCourse .bgYellow:hover{
  background: var(--primary-color);
  color: #fff;
}
.contactHeight{
  height: 50vh;
}
.img-box-main {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 0px;
}
.img-box {
  position: relative;
  width: 150px;
  height: 150px;
}
.img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.textHeight{
  height: 150px !important;
}

.connectIcon{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  margin: 40px 0;
}
.connectIcon h5{
  font-size: 17px;
  margin-top: 8px;
}
.connectIcon h3 {
  font-size: 23px;
  color: var(--primary-color);
}
.newIcons{
  font-size: 24px;
  color: var(--primary-color);

  display: inline;
  border-radius: 50%;
}
.newContactIcons{
  padding: 10px 50px;
}

.loader {
  height: 59px;
  width: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  background-color: var(--primary-color);
  box-shadow: inset 0 0 0 #0a7cbe;
  /* animation: load 3s linear infinite alternate; */
}
.text-black{
  color: #000;
}
.rightAction img{
  width: 100%;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
.leftInnerCourse ul li{
  padding: 5px 10px;
  position: relative;
  padding-left: 20px;
}
.leftInnerCourse ul li:before{
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #111;
}
.itemInnerCourse{
  padding:20px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  text-align: center;
  height: 100%;
}
.iconSpec{
  width: 40px;
  margin: 0 auto;
}
.iconSpec img{
  max-width: 100%;
}
.itemInnerCourse p{
  font-size: 15px;
}
.mbColumn .col-lg-4{
  margin-bottom: 20px;
}
.faq-accordion {
  padding-top: 30px;
}
.faq-accordion .accordion-item {
  border-radius: 2px !important;
  margin-top: 20px;
  border: 1px solid #e7e2dc !important;
}
.faq-accordion .accordion-item button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 17px 30px;
  padding-right: 55px;
  font-size: 23px;
  font-weight: 500;
  border: 0;
  color: var(--primary-color);
  background-color: transparent;
  border-bottom: 1px solid #e7e2dc;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
}
.faq-accordion .accordion-item button::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  content: "\f077";
  font-family: "Font Awesome 6 Free";
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-weight: 800;
}
.faq-accordion .accordion-item button.collapsed {
  color: #2c241b;
  background-color: #f8f6f4;
  border-bottom-color: transparent;
}
.faq-accordion .accordion-item button.collapsed::before {
  content: "\f078";
}
.faq-accordion .accordion-item .accordion-body {
  padding: 25px 30px;
}
.faq-accordion .accordion-item .accordion-body p + p {
  margin-top: 20px;
}
.img img{
  max-width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.itemRelatedcourses{
  background: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.itemRelatedcourses h4{
  color: #222;
  font-size: 17px;
}
.itemRelatedcourses:hover h4{
  color: var(--primary-color);
}
.itemMission{
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border:1px solid #e0e0e0;
  height: 100%;
}
.iconMission{
  width: 80px;
}
.iconMission img{
  max-width: 100%;
}
.itemTestimonial{
  padding: 30px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border:1px solid #e0e0e0;
}
.itemServices{
  border:1px solid #e0e0e0;
  padding: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: flex;
  align-items: center;
  margin: 15px 0;
}
.iconServices{
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 10px;
}
.rightServices{
  width: calc(100% - 70px);
}
.rightServices .sub_heading{
  font-size: 24px;
}
.iconServices img{
  max-width: 100%;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.sliderBannerLogo .swiper-slide{
    padding:0 5px;
}
.sliderBannerLogo{
    overflow:hidden;
}
.sliderBannerLogo .img_box, .coursePage .img_box{
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
}
.sliderBannerLogo .img_box img, .coursePage .img_box img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    display: block;
}
.coursePage{
    background:#f5f5f5;
}
.courseInnerListing ul{
    margin-top:40px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}
.courseInnerListing ul li{
    width:calc(100% / 3);
    position:relative;
}
.courseInnerListing ul li a{
    display:inline-block;
    padding:10px;
    color:#333;
    font-size:16px;
    font-weight:600;
    padding-left:25px;
}
.courseInnerListing ul li:before{
    content:'\f101';
    position:absolute;
    top:11px;
    left:0;
    font-size:14px;
    color:var(--primary-color);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.courseInnerListing ul li:hover a{
    color:var(--primary-color);
    padding-left:28px;
}
.innerCourseBox{
    display:flex;
    gap:15px
}
.itemInnerBox{
    width:calc(100% / 7);
}
.white_text p{
    color: white !important;
}
.googleImg{
    width:120px;
}
.googleImg img{
    max-width:100%;
    margin-right:10px;
}
.googleImg{
    display:flex;
    align-items:center;
}
.leftReviewLogo p i{
    color:#FCBF02;
}
.googleReviewHeader{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.itemGoogleReview{
    padding:20px;
}
.iconUserGoogle{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:22px;
    font-weight:600;
    margin-right:10px;
    color:#fff;
}
.nameUerGoogle p{
    font-size:14px;
    color:#666;
}
.textReview{
    margin:15px 0;
}
.footerReviewGoogle{
    margin-top:10px;
    display:flex;
    align-items:center;
    
}
.leftLogoIcons{
    width:35px;
    margin-right:10px;
}
.leftLogoIcons img{
    max-width:100%;
}
.innerGoogleReview{
    border:1px solid #e0e0e0;
    background:#fff;
}
.rightLogoIocn p{
    margin:0;
    font-size:14px;
    color:#666;
}
.textReview{
    display: -webkit-box;           
  -webkit-line-clamp: 7;          
  -webkit-box-orient: vertical;    
  overflow: hidden;               
  text-overflow: ellipsis; 
}
.borderCard{
    border:1px solid #999;
}
.thankBlock{
    height:100%;
}
.whatsApp{
    position:fixed;
    bottom:85px;
    right:0px;
    width:200px;
    z-index:99;
}
.whatsApp img{
    max-width:100%;
}

.text-white, .text-white * {
    color: #fff;
}

/**/

btn {
    transition: all 0.3s ease;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
}

/* Icon styling for Lucide */
[data-lucide] {
    stroke-width: 1.5;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.text-blue-600 {
    color: #2563eb;
}

.text-green-600 {
    color: #16a34a;
}

.text-orange-600 {
    color: #ea580c;
}

.text-purple-600 {
    color: #9333ea;
}

.hover-shadow {
    transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Border Colors */
.border-start-blue {
    border-bottom: 4px solid #3b82f6;
}

.border-start-green {
    border-bottom: 4px solid #10b981;
}

.border-start-orange {
    border-bottom: 4px solid #f59e0b;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-30 {
    padding-bottom: 30px;
}

.step_card {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px;
}

.card_note {
    display: flex;
    justify-content: center;
}

.card_icon {
    text-align: center;
    justify-content: center;
    font-size: 24px;
}
.card_icon .rounded {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-blue-light {
    background-color: #d7e5ff;
}

.bg-green-light {
    background-color: #e2ffe6;
}

.bg-orange-light {
    background-color: #ffece5;
}

.step_card .card-title {
    margin: 25px 0 10px;
    font-weight: 600;
}
.imgBlog{
    border-radius:10px 10px 0 0;
    overflow:hidden;
}
.imgBlog img{
    width:100%;
    transition:all 0.3s ease-in-out;
}
.itemBlog{
    padding:0 5px;
}
.innerBlog{
    border:1px solid #e0e0e0;
    border-radius:10px;
}
.blogDesHome{
    padding:15px;
    background:#fff;
    border-radius:0 0 10px 10px;
}
.blogDesHome h4{
    color:#444;
}
.itemBlog:hover .innerBlog h4{
    color:#000;
}
.itemBlog:hover .imgBlog img{
    transform:scale(1.1);
}
.hoverPrimary:hover{
    background:var(--primary-color);
    color:#fff;
}
.imgInner img{
    width:100%;
    border-radius:15px;
}
.blogInnerDescription h2, .blogInnerDescription h3, .blogInnerDescription h4, .blogInnerDescription h5, .blogInnerDescription h6{
    font-size:24px;
    font-weight:600;
}
.blogInnerDescription h4{
    font-size:22px;
}
.blogInnerDescription h5{
    font-size:18px;
}
.blogInnerDescription h2, .blogInnerDescription h3, .blogInnerDescription h4, .blogInnerDescription h5, .blogInnerDescription h6, .blogInnerDescription p, .blogInnerDescription ul, .blogInnerDescription ol{
    margin-bottom:15px;
}
.blogInnerDescription ul{
    list-style-type:disc;
    margin-left:20px;
}
.blogInnerDescription ol{
    margin-left:10px;
}
.blogInnerDescription ul li{
    padding:3px;
    font-weight:500;
    padding-left:0;
}
.bg-black{
    background:#000;
}
.iconAuthor {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 2.5rem;
}
.smallFont {
    font-size: 12px;
}
.btnTheme {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border: none;
    font-weight: 600;
}

.stickyTop {
    position: sticky;
    position: -webkit-sticky;
    top: 80px;
    z-index: 9;
}
.sidebarHeader {
    border-bottom: 1px solid var(--primary-color);
    padding: 20px 0;
    padding-top:0;
}
.sidebarBlog{
  padding-left: 15px;
}
.sidebarBlogItem{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
}
.sidebarBlogItem{
  margin-top: 15px;
}
.sidebarImg img{
  max-width: 100%;
  border-radius:5px;
}
.sidebarImg{
  width: 150px;
}
.rightSidebar{
  width: calc(100% - 200px);
  margin-left: 16px;
}
.rightSidebar a {
    color: #333;
}
.rightSidebar p{
    font-size:14px;
    font-weight:600;
}
.accordion-button:not(.collapsed){
    color:var(--primary-color);
    border:none !important;
    background:transparent;
}
.accordion-item{
    margin-bottom:15px;
    border:1px solid #e0e0e0 !important;
}
.accordion-button:focus{
    outline:none;
    box-shadow:none;
    border:none;
}
.accordion-button{
    border:none !important;
    font-weight:600;
    font-size:1.5rem;
}
.accordion-collapse{
    border-top:1px solid #e0e0e0;
}