/* google font */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&family=Jost:wght@400;500;600&family=Poppins:ital,wght@0,300;0,400;0,500;0,800;0,900;1,600&family=Sen:wght@400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-color: #f69500;
  --sub-color: #2e3192;
  --sec-bg: #eff7ff;
  --main-font: "Josefin Sans";
  --sub-main-font: "Sen";
  --third-font: "Jost";
}

body {
  font-family: var(--third-font);
  overflow-x: hidden;
  text-transform: capitalize;
}

body ul {
  margin: 0;
  padding: 0;
}

body li {
  list-style: none;
  margin: 0;
  padding: 0;
}

body a {
  text-decoration: none;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

/* .row {
  margin-right: 0;
} */

/* Preloader */
.container-preloader {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 8000;
}

.container-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

/* Loading text */
.container-preloader .animation-preloader .txt-loading {
  font: bold 5em "Montserrat", sans-serif;
  text-align: center;
  user-select: none;
}

.container-preloader .animation-preloader .txt-loading .characters:before {
  animation: characters 4s infinite;
  color: orange;
  content: attr(preloader-text);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg);
}

.container-preloader .animation-preloader .txt-loading .characters {
  color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(2):before {
  animation-delay: 0.2s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(3):before {
  animation-delay: 0.4s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(4):before {
  animation-delay: 0.6s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(5):before {
  animation-delay: 0.8s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(6):before {
  animation-delay: 1s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(7):before {
  animation-delay: 1.2s;
}

.container-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.container-preloader .loader-section.section-left {
  left: 0;
}

.container-preloader .loader-section.section-right {
  right: 0;
}

/* Fade effect on loading animation */
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

/* Curtain effect */
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

/* Animation of the preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

/* Animation of letters loading from the preloader */
@keyframes characters {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* Laptop size back (laptop, tablet, cell phone) */
@media screen and (max-width: 767px) {

  /* Preloader */
  /* Spinner Loading */
  .container-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }

  /* Text Loading */
  .container-preloader .animation-preloader .txt-loading {
    font: bold 3.5em "Montserrat", sans-serif;
  }
}

@media screen and (max-width: 500px) {

  /* Prelaoder */
  /* Spinner Loading */
  .container-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }

  /*Loading text */
  .container-preloader .animation-preloader .txt-loading {
    font: bold 2em "Montserrat", sans-serif;
  }
}

.origin {
  text-decoration: none;
  font-size: 45px;
}

/* pre-loder */
/* second-loder */
#pre_loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loadedone {
  visibility: hidden;
  opacity: 0;
}

.loader-3 {
  width: 160px;
  display: flex;
  justify-content: space-evenly;
}

.circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
}

.circle:nth-child(1) {
  background-color: #90be6d;
}

.circle:nth-child(2) {
  background-color: #f8961e;
}

.circle:nth-child(3) {
  background-color: #2e3192;
}

.circle:nth-child(4) {
  background-color: #f9c74f;
}

.circle:nth-child(5) {
  background-color: #f94346;
}

.circle::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: animateLoader 2s ease-out infinite;
}

.circle:nth-child(1)::before {
  background-color: #97ed55;
}

.circle:nth-child(2)::before {
  background-color: #f8961e;
  animation-delay: 0.2s;
}

.circle:nth-child(3)::before {
  background-color: #2e3192;
  animation-delay: 0.4s;
}

.circle:nth-child(4)::before {
  background-color: #f9c74f;
  animation-delay: 0.6s;
}

.circle:nth-child(5)::before {
  background-color: #f94346;
  animation-delay: 0.8s;
}

@keyframes animateLoader {
  0% {
    transform: scale(1);
  }

  50%,
  75% {
    transform: scale(2.5);
  }

  80%,
  100% {
    opacity: 0;
  }
}

/* second-loder */

/* ---------------------------------
              header
------------------------------------*/
header .up_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.up_bar .left {
  width: 720px;
  position: absolute;
  z-index: -1;
  background: orange;
  height: 44px;
  top: 0;
}

.up_bar .right::after {
  content: "";
  height: 90px;
  width: 40px;
  position: absolute;
  left: -43px;
  top: -45px;
  background-color: var(--sub-color);
  transform: rotate(130deg);
}

.up_bar .right {
  width: calc(100% - 720px);
  position: absolute;
  height: 44px;
  top: 0;
  background-color: var(--sub-color);
  right: 0;
  z-index: -1;
}

header .icon_part {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
  color: #fff;
}

header .icon_part .icon {
  display: flex;
  gap: 15px;
}

header .icon_part .icon a {
  margin: 5px 0;
}

header .icon_part .icon a i {
  color: #fff;
}

header .fool_part {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  padding: 10px;
  color: #fff;
}

header .fool_part .foot_i {
  display: flex;
  align-items: center;
}

header .fool_part i {
  margin-right: 15px;
}

.down_bar {
  position: fixed;
  width: 100%;
  z-index: 999;
  background-color: #fff;
}

.scroll_active {
  top: 0;
  transition: 0.5s;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.down_bar .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down_bar .link_side {
  display: flex;
  gap: 50px;
}

.down_bar ul {
  display: flex;
  gap: 40px;
}

.down_bar ul li {
  position: relative;
}

.down_bar ul li a {
  font-weight: 600;
}

.down_bar .link_side .main_btn {
  padding: 25px 30px;
  overflow: hidden;
}

.down_bar .link_side .main_btn span {
  z-index: 9;
  position: relative;
}

.down_bar .link_side .main_btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: var(--sub-color);
  transition: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 8;
}

.down_bar .link_side .main_btn:hover:after {
  width: 100%;
}

.down_bar ul li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.down_bar ul li:hover:after {
  transform-origin: left;
  transform: scaleX(1);
}

.down_bar ul li a {
  text-transform: capitalize;
}

.main_btn {
  padding: 25px 30px;
  background-color: var(--main-color);
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
  position: relative;
}

.humburger {
  display: none;
}

.mobile_slidebar {
  display: none;
}

.email_id {
  text-transform: lowercase;
}

/* ----------------------------------------
                 hero-part
-------------------------------------------*/

.slider_img {
  position: relative;
  width: 100%;
  height: 100%;
}

.bg_overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 32, 64, 0.8), rgba(0, 32, 64, 0));
  z-index: 1;
}

.img_slider {
  position: relative;
  margin-top: 73px;
}

.img_slider .left_text {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 9;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider_text {
  max-width: 600px;
}

.img_slider .left_text h1 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out 0.5s, transform 0.5s ease-in-out 0.5s;
}

.img_slider .left_text p {
  color: #fff;
  font-family: var(--sub-main-font);
  font-size: 18px;
  opacity: 0;
  margin-bottom: 40px;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out 0.7s, transform 0.5s ease-in-out 0.7s;
}

.owl-next {
  position: absolute;
  right: 4%;
  top: 43%;
}

.owl-prev {
  position: absolute;
  top: 43%;
  left: 4%;
}

.img_slider .owl-carousel img {
  height: 850px;
  object-fit: cover;
}

.owl-nav span {
  font-size: 30px;
  background-color: var(--sub-color);
  color: #fff;
  padding: 5px 20px;
  transition: 0.5s;
}

.owl-theme .owl-nav {
  margin: 0;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: none;
}

.owl-nav span:hover {
  border-radius: 50%;
}

.img_slider .main_btn {
  background-color: var(--sub-color);
  display: flex;
  align-items: center;
  padding: 15px 30px;
}

.img_slider .main_btn i {
  margin-left: 15px;
  transition: 0.4s;
  line-height: 10px;
}

.img_slider .main_btn:hover i {
  transform: translateX(10px);
}

.img_slider .main_white {
  border: 1px solid #fff;
  background: transparent;
}

.img_slider .btn_group {
  display: flex;
  gap: 30px;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out 0.9s, transform 0.5s ease-in-out 0.9s;
  opacity: 0;
}

.owl-item.active .slider_text h1,
.owl-item.active .slider_text p,
.owl-item.active .btn_group {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------
                        about-us
-------------------------------------------------------*/
.about_inner {
  background-color: var(--sec-bg);
  padding: 80px 0;
  background-image: url(../image/an-img-02.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 35%;
}

.about_over_row {
  margin-right: 0 !important;
}

.down_row {
  margin-right: 0 !important;
}

.about_inner .img_part img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about_inner .text_part {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.about_inner .text_part h2 {
  font-size: 50px;
  margin-bottom: 15px;
  font-weight: 700;
}

.about_inner .main_btn {
  width: 250px;
  padding: 18px;
  display: flex;
  font-weight: 800;
  justify-content: center;
  align-items: center;
  font-family: var(--sub-main-font);
  background-color: var(--sub-color);
  transition: 0.5s ease-in;
  position: relative;
}

.about_inner .main_btn::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--main-color);
  transition: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 8;
}

.about_inner .main_btn span {
  z-index: 9;
}

.about_inner .main_btn:hover:after {
  width: 100%;
}

/* ---------------------------------------------
               our courses
-----------------------------------------------*/
.same_section {
  margin: 90px 0 0 0;
}

.title {
  margin-bottom: 30px;
}

.title h5 {
  display: flex;
  align-items: center;
  color: var(--main-color);
  font-size: 25px;
  font-weight: 800;
  font-family: var(--third-font);
  margin-bottom: 5px;
}

.title h5 i {
  margin-right: 10px;
}

.title h2 {
  font-family: var(--third-font);
  font-size: 50px;
  font-weight: 700;
}

.courses_inner {
  background-image: url(../image/an-img-03.png);
  background-position: bottom left;
  background-size: 30%;
  background-repeat: no-repeat;
  padding-bottom: 40px;
}

.courses_inner .course_box .img_part {
  overflow: hidden;
}

.courses_inner .course_box .img_part:hover img {
  transform: scale(1.1);
}

.courses_inner .course_box .img_part img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: 0.5s;
}

.courses_inner .course_text {
  background-color: #f0f7ff;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.upcoming_text_Part {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.course .owl-next {
  position: absolute;
  right: -90px;
  top: 50%;
}

.course .owl-prev {
  position: absolute;
  left: -90px;
  top: 50%;
}

.course_link {
  color: var(--main-color);
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

.course_link::before {
  content: "";
  height: 25px;
  width: 25px;
  background-color: rgba(250, 202, 127);
  border-radius: 50%;
  opacity: 0.4;
  left: 0;
  position: absolute;
  transition: 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.course_link:hover:before {
  left: 100px;
}

.course_link i {
  margin-left: 10px;
}

.courses_inner .course_box {
  position: relative;
}

.courses_inner .course_box .box {
  background-color: var(--main-color);
  padding: 10px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  border-radius: 10px;
  position: absolute;
  right: 15px;
  top: 51%;
}

.courses_inner .course_box h3 {
  margin-bottom: 8px;
  color: #000;
  font-size: 24px;
}

.courses_inner .course_box p {
  margin-bottom: 15px;
  color: #000;
}

.courses_inner .course_box .box i {
  margin-right: 15px;
}

/* ------------------------------------------
                best_inner
---------------------------------------------*/
.best_inner {
  color: #fff;
  /* padding: 20px; */
  background-color: #032e3f;
  position: relative;
}

.best_inner .best_img {
  position: absolute;
  right: 0;
  top: -57px;
  width: 935px;
  height: 650px;
}

.best_inner .best_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.best_inner .best_text {
  height: 100%;
  width: 100%;
  padding: 50px 0;
}

.best_inner .best_text p {
  color: #96bece;
}

.best_inner .best_text h2 {
  font-size: 50px;
}

.best_inner .best_text .faclity {
  margin-top: 40px;
}

.best_inner .best_text .faclity ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.best_inner .best_text .faclity ul li .icon_part {
  background-color: var(--main-color);
  height: 90px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 30px;
}

/* ------------------------------------------
                 loder
---------------------------------------------*/
.loder_inner .loder_box {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.loder_row {
  margin: 0 !important;
}

.loder_inner .border_des {
  border: 1px dashed #1e1e1e;
}

.loder_inner .loder_box .icon {
  margin-right: 30px;
}

.loder_inner .loder_box h1 {
  font-size: 55px;
}

.loder_inner .bod {
  border-right: 1px dashed #1e1e1e;
}

.count-mar {
  padding: 0 !important;
  overflow: hidden;
}

/* ------------------------------------------
               upcimg event
---------------------------------------------*/
.upcoming_event_inner {
  height: 900px;
  position: relative;
  overflow: hidden;
}

.upcoming_event_inner .owl-next {
  top: -65px;
  right: 0;
}

.upcoming_event_inner .title {
  z-index: 99;
  position: relative;
  padding-left: 170px;
  margin-bottom: 70px;
}

.upcoming_event_inner .owl-prev {
  top: -65px;
  right: -1050px;
}

.upcoming_event_inner .img_part {
  position: absolute;
  height: 100%;
}

.upcoming_event_inner .img_part img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.upcoming_event_inner .blank_bg_part {
  background-color: #f3f4fd;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 433px;
  background-image: url(../image/an-img-02.png);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 100px 30px;
}

.upcoming_event_inner .crosusal_Part {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upcoming_event_inner .upcoming_event_box .upcoming_img_Part {
  overflow: hidden;
}

.upcoming_event_inner .upcoming_event_box .upcoming_img_Part:hover img {
  transform: scale(1.1);
}

.upcoming_event_inner .upcoming_event_box .upcoming_img_Part img {
  transition: 0.5s;
}

.upcoming_event_inner .upcoming_event_box {
  background-color: #fff;
  padding: 25px;
  height: 465px;
}

.upcoming_event_box .time_location {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2e3192;
  margin: 15px 0 20px 0;
  flex-wrap: wrap;
}

.upcoming_event_box .time_location i {
  margin-right: 12px;
}

.upcoming_event_box h4 {
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: capitalize;
  font-size: 20px;
}

.upcoming_event_box .upcoming_btn {
  border: 1px solid #1e1e1e;
  padding: 10px 30px;
  font-weight: 700;
  position: relative;
  width: 140px;
}

.upcoming_event_box .upcoming_btn span {
  z-index: 20;
  position: relative;
  transition-delay: 0.1s;
  transition: 0.5s;
}

.upcoming_event_box .upcoming_btn::after {
  content: "";
  background-color: #2e3192;
  position: absolute;
  height: 100%;
  left: 0;
  width: 0%;
  top: 0;
  z-index: 8;
  transition: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.upcoming_event_box .upcoming_btn:hover:after {
  width: 100%;
}

.upcoming_event_box .upcoming_btn:hover span {
  color: #fff;
}

/* .upcoming_event_box .time_location .time{
  margin-bottom: 10px;
} */
/* ------------------------------------------
               testimonail
---------------------------------------------*/
.testimonail_inner {
  background-image: url(../image/an-img-03.png);
  background-position: bottom left;
  background-size: 30%;
  background-repeat: no-repeat;
  padding: 40px;
}

.middle_title {
  text-align: center;
}

.middle_title h5 {
  justify-content: center;
}

.testimonial_slider .testimonial_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: var(--sec-bg);
  padding: 30px 10px;
  text-align: center;
  height: 480px;
}

.testimonial_slider .testimonial_box .semicolan-img img {
  height: 80px;
  width: 80px;
  margin-bottom: 40px;
  object-fit: contain;
}

.testimonial_slider .testimonial_box p {
  margin-bottom: 15px;
  color: #000;
}

.testimonial_slider .testimonial_box .user_bio {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.testimonial_slider .testimonial_box .user_bio img {
  height: 100px;
  width: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.testimonial_slider .testimonial_box .user_bio p {
  margin: 0;
  color: #000;
}

.testimonial_slider .testimonial_box .user_bio h5 {
  color: #000;
}

/* ------------------------------------------
               book your seat
---------------------------------------------*/
.seat_inner {
  height: 770px;
  width: 100%;
  background-image: url(../image/search_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

/* .seat_mar {
  padding-right: 0 !important;
}
.saat{
  padding-right: 0 !important;
} */

.seat_inner h2 {
  color: #fff;
  font-size: 50px;
}

.seat_inner p {
  color: #96bece;
}

.seat_inner .form_part {
  margin-top: 30px;
}

.seat_inner .form-control,
.form-select:focus {
  box-shadow: none;
  border: 0;
}

.seat_inner input[type="submit"] {
  color: #fff;
  font-size: 20px;
  text-transform: capitalize;
  background: none;
  border: none;
  width: 100%;
  background-color: #2e3192;
  padding: 20px;
  text-align: center;
  height: 100%;
  transition: 0.5s ease-in;
}

.seat_inner input[type="submit"]:hover {
  background-color: var(--main-color);
}

.seat_inner .form_btn i {
  margin-left: 20px;
  transition: 0.5s;
  color: #fff;
}

.seat_inner .form_btn:hover i {
  transform: translateX(10px);
}

/* ------------------------------------------
               students story
---------------------------------------------*/
.story_inner .student_story_box {
  border: 1px dashed #dadada;
  background-color: #f3f4fd;
}

.eapps-widget-toolbar {
  opacity: 0;
  visibility: hidden;
}

#eapps-instagram-feed-1>a {
  display: none;
}

.insta_slider_box {
  position: relative;
}

.instagallery img {
  height: 330px;
  object-fit: cover;
}

.insta_slider_box:hover .overlay-insta-gallery {
  opacity: 1;
  visibility: visible;
}

.instagallery .overlay-insta-gallery {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  visibility: hidden;
}

.instagallery .overlay-insta-gallery i {
  font-size: 30px;
  color: #000;
}

.story_inner .student_story_box img {
  width: 100%;
}

.story_inner .story_overlay img {
  height: 50px;
  width: 70px;
}

.story_inner .student_story_box .text {
  padding: 25px;
}

.story_inner .student_story_box .text h4 {
  font-weight: 700;
  font-family: var(--third-font);
  font-size: 25px;
}

.story_inner .student_story_box .img_part {
  position: relative;
}

.story_inner .story_overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.student_story_box button {
  background-color: #f3f4fd;
  border: 1px dashed #dadada;
  color: #000;
  text-align: start;
  padding: 0;
  width: 100%;
}

.student_story_box .modal-content button {
  background: #fff;
  border: none;
  width: 20px;
}

.student_story_box button:hover {
  background-color: #f3f4fd;
  color: #000;
  border-color: #dadada;
}

button:focus {
  background-color: #f3f4fd;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  background-color: #f3f4fd;
  border-color: #dadada;
  color: #000;
}

.btn:focus-visible {
  background-color: #f3f4fd;
  border-color: #dadada;
  color: #000;
  box-shadow: none;
}

/* ------------------------------------------
               brand slider
---------------------------------------------*/
.brand_inner {
  background-color: #fff;
  padding: 50px 0px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.brand_inner img {
  height: 150px;
  object-fit: contain;
}

/* ------------------------------------------
              blog & news
---------------------------------------------*/

.blog_box {
  margin: 0 0 24px 0;
}

.blog_box .text_part {
  background-color: #f0f7ff;
  padding: 30px;
  /* height: 260px; */
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.blog_box .img_part {
  overflow: hidden;
  height: 250px;
}

.blog_box .img_part img {
  transition: 0.5s;
}

.blog_box:hover img {
  transform: scale(1.1);
}

.blog_box .admin {
  color: #777777;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.blog_box .admin i {
  margin-right: 10px;
  color: var(--main-color);
}

.blog_box .img_part img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog_box h3 {
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 24px;
}

.blog_box p {
  color: #777777;
  margin-bottom: 15px;
}

/* ------------------------------------------
                footer
---------------------------------------------*/
.footer_inner .icon_group ul {
  display: flex;
  gap: 30px;
}

.footer_inner {
  background-image: url(../image/footer_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  position: relative;
}

.footer_inner .container {
  z-index: 10;
  position: relative;
}

.footer_bg {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 9;
}

.footer_bg img {
  opacity: 0.1;
}

.footer_inner .icon_group ul li a {
  background-color: #777777;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.footer_inner .icon_group ul li a:hover {
  background-color: var(--main-color);
  transform: translateY(-3px);
  box-shadow: 1px 1px 5px #fff;
}

.footer_inner ul li a {
  color: #fff;
  transition: 0.5s;
  position: relative;
}

.footer_inner .link_foot {
  padding: 0 50px;
}

.footer_inner p {
  margin-bottom: 20px;
  color: #b2c0d8;
}

.footer_inner h3 {
  margin-bottom: 40px;
  color: #fff;
  position: relative;
}

.footer_inner h3::after {
  content: "";
  height: 1px;
  width: 30%;
  background-color: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -6px;
  animation: width 3s infinite alternate-reverse;
  transition: 0.5s;
}

@keyframes width {
  0% {
    width: 18%;
  }

  100% {
    width: 30%;
  }
}

.footer_inner .i_part ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}

.footer_inner .link_foot ul li {
  position: relative;
}

.footer_inner .link_foot ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.footer_inner .link_foot ul li a:hover:after {
  transform-origin: left;
  transform: scaleX(1);
}

.footer_inner .i_part ul li .icon_part {
  height: 50px;
  max-width: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
}

.footer_inner .i_part p {
  margin: 0;
}

.footer_inner hr {
  color: #b2c0d8;
  height: 2px;
}

.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px;
}

.footer_bottom ul {
  display: flex;
  gap: 30px;
}

.footer_bottom p {
  margin-bottom: 0;
}

/* -----------------------------------------
              About Our University
--------------------------------------------*/
.about_univarsity_inner .img_part {
  position: relative;
  height: 100%;
}

.about_univarsity_inner .img_part .row {
  height: 100% !important;
}

.about_univarsity_inner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about_univarsity_inner .center_img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about_univarsity_inner .about_image_up {
  height: 450px;
  width: 100%;
}

.about_univarsity_inner .img_part .experience_box {
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 55px;
  color: #fff;
  position: absolute;
  bottom: 80px;
  left: 100px;
  border-radius: 10px;
}

.about_univarsity_inner .img_part .experience_box h4 {
  font-size: 40px;
  font-weight: 700;
}

.about_univarsity_inner .img_part .experience_box p {
  font-size: 16px;
}

.about_univarsity_inner .text_part {
  padding: 40px 0;
}

.about_univarsity_inner .text_part .p {
  font-size: 16px;
  margin-bottom: 30px;
}

/* -----------------------------------------
             Associated with
--------------------------------------------*/
.associate_inner {
  position: relative;
  width: 100%;
}

.associate_inner .smallscreen {
  position: relative;
}

.associate_inner .warp_logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.associate_inner .warp_logo .associate_partner_box {
  height: 160px;
  width: 160px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.associate_inner .warp_logo .associate_partner_box .other {
  object-fit: cover;
}

.associate_inner .warp_logo .associate_partner_box img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
}

/* -----------------------------------------
        campus tour & powerful alumni
--------------------------------------------*/
.campus_inner .up_part {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.campus_inner .text_part {
  background-color: var(--sub-color);
  min-height: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.campus_inner .text_part h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.campus_inner .text_part p {
  color: #b2c0d8;
}

.campus_inner .campus {
  padding-left: 300px;
  padding-right: 50px;
}

.campus_inner .alumni {
  padding-right: 300px;
  padding-left: 50px;
}

.campus_inner .col-lg-6 {
  padding: 0;
}

/* -----------------------------------------
                   team
--------------------------------------------*/
.team_title {
  position: relative;
  margin-bottom: 30px;
}

.team_title .title {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0 60px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.team_title .title h2 {
  font-size: 40px;
}

.team_inner .team_box {
  position: relative;
  overflow: hidden;
}

.team_inner .team_box:hover .outer_name_warp {
  transform: translateY(0px);
}

.team_inner .outer_name_warp {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  bottom: 15px;
  transition: 0.5s ease-in-out;
  transform: translateY(100px);
}

.team_inner .name_box {
  background: #fff;
  text-align: center;
  padding: 10px 30px;
  border-radius: 8px;
}

.team_inner .name_box h5 {
  font-weight: 700;
  font-size: 18px;
}

.team_inner .name_box p {
  font-size: 13px;
  color: #777777;
  font-weight: 500;
}

/* -----------------------------------------
            BreadCumb
--------------------------------------------*/
.breadcumb_area {
  background: url(../image/bradecumb.png);
  min-height: 450px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 73px;
  position: relative;
}

.breadcrumb_title h4 {
  font-size: 70px;
  color: #fff;
  font-weight: 600;
}

.breadcrumb {
  display: inline-block;
  -ms-flex-wrap: wrap;
  flex-wrap: unset;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  background-color: unset;
  border-radius: 30px;
  background: #f69500;
  padding: 15px 35px;
  position: relative;
}

.breadcrumb li {
  display: inline-block;
}

.breadcrumb li a {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.breadcrumb_item+.breadcrumb_item::before {
  display: inline-block;
  padding-right: 15px;
  padding-left: 10px;
  color: #ddd;
  content: "|";
}

.breadcumb_wrap2 {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  bottom: -25px;
  z-index: 1;
}

/* ------------------------------------------------
            Start Gallery 
-----------------------------------------------------*/
.wrapper {
  margin: 100px auto;
}

.wrapper nav {
  display: flex;
  justify-content: center;
}

.wrapper .items {
  display: flex;
  max-width: 100%;
  width: 100%;
  justify-content: center;
  gap: 10px;
}

.items span {
  padding: 7px 25px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: #f69500;
  border: 2px solid #f69500;
  transition: all 0.3s ease;
}

.items span.active,
.items span:hover {
  color: #fff !important;
  background: #f69500;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.gallery .image {
  width: calc(100% / 4);
  padding: 7px;
}

.gallery .image span {
  display: flex;
  overflow: hidden;
  height: 100%;
}

.gallery .image img {
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
  object-fit: cover;
}

.gallery .image:hover img {
  transform: scale(1.1);
}

.gallery .image.hide {
  display: none;
}

.gallery .image.show {
  animation: animate 0.4s ease;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 1000px) {
  .gallery .image {
    width: calc(100% / 3);
  }
}

@media (max-width: 800px) {
  .gallery .image {
    width: calc(100% / 2);
  }
}

@media (max-width: 700px) {
  .wrapper nav .items {
    max-width: 600px;
  }

  nav .items span {
    padding: 7px 15px;
  }
}

@media (max-width: 600px) {
  .wrapper {
    margin: 30px auto;
  }

  .wrapper nav .items {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav .items span {
    margin: 5px;
  }

  .gallery .image {
    width: 100%;
  }
}

/* ------------------------------------------------
            End Gallery 
-----------------------------------------------------*/

/* -----------------------------------------
             course-detail
--------------------------------------------*/
.course_details_inner .left_side .benifit_part {
  background-color: #f0f7ff;
  padding: 30px;
  margin-bottom: 40px;
}

.course_details_inner .left_side .benifit_part h3 {
  color: var(--main-color);
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.course_details_inner .benifit_part ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #41246d;
  padding: 5px;
  font-size: 18px;
  color: #414141;
}

.course_details_inner .benifit_part ul li i {
  color: var(--main-color);
  margin-right: 15px;
}

.course_details_inner .course_detail_btn {
  background-color: var(--sub-color);
  width: 100%;
  display: inline-block;
  padding: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  position: relative;
}

.course_details_inner .course_detail_btn::after {
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--main-color);
  width: 0%;
  transition: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.course_details_inner .benifit_part .course_detail_btn:hover::after {
  width: 100%;
}

.course_detail_btn span {
  z-index: 10;
}

.course_details_inner .more_course_part {
  background-color: var(--main-color);
  padding: 30px;
}

.course_details_inner .more_course_part .head_tital {
  background-color: #fff;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.course_details_inner .more_course_part ul li {
  border-bottom: 1px solid #41246d;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.course_details_inner .more_course_part ul li img {
  width: 100px;
}

.course_details_inner .more_course_part ul li h6 {
  font-weight: 700;
  font-size: 18px;
  margin-left: 20px;
}

.up_box {
  background-color: var(--sec-bg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.up_box .line {
  height: 100px;
  width: 2px;
  border-radius: 20px;
  background-color: var(--main-color);
}

.up_box i {
  color: var(--main-color);
  font-size: 20px;
  margin-top: 10px;
}

.up_box .name {
  margin-left: 20px;
}

.up_box h6 {
  font-size: 19px;
  font-weight: 700;
}

.up_box h4 {
  color: var(--main-color);
  font-weight: 700;
  font-size: 30px;
}

.course_details_inner .right_side .img_box {
  margin: 30px 0;
}

.course_details_inner .right_side .img_box img {
  object-fit: cover;
  height: 480px;
  width: 100%;
}

.course_details_inner .right_side .down_box {
  background-color: var(--sec-bg);
  padding: 30px 20px;
}

.course_details_inner .right_side .down_box .up_btn ul {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.right_side .down_box .up_btn ul li a {
  background-color: #f5f5f5;
  padding: 10px 35px;
  border: 1px solid #1e1e1e;
  font-weight: 700;
  color: #000;
  transition: 0.6s;
}

.down_box .up_btn ul li a.active,
.down_box .up_btn ul li a:hover {
  background-color: #fff;
}

.right_side .down_box .info_part h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 900;
}

.right_side .down_box .info_part p {
  color: #1e1e1e;
  text-align: justify;
}

.right_side .down_box .info_part li {
  color: #1e1e1e;
  font-weight: 500;
  text-align: justify;
}

.course_details_inner .right_side .Instructor_part .instruter_team ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.course_details_inner .right_side .Instructor_part {
  display: none;
}

.course_details_inner .right_side .Instructor_part .instruter_team ul img {
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.course_details_inner .right_side .review_part {
  display: none;
}

.course_details_inner .right_side .review_part .img_part img {
  height: 100px;
  width: 100px;
  margin-right: 20px;
}

.course_details_inner .right_side .review_part .img_part {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.course_details_inner .right_side .review_part .img_part ul {
  display: flex;
  gap: 10px;
}

.course_details_inner .right_side .review_part .img_part ul i {
  color: var(--main-color);
  font-size: 13px;
}

.course_details_inner .right_side .review_part .img_part p {
  font-size: 14px;
  color: #000;
}

.course_details_inner .right_side .review_part .text_part p {
  color: #000;
}

.course_details_inner .right_side .review_part .img_part h5 {
  font-size: 28px;
  color: #000;
}

.course_details_inner .right_side .review_part .review_box {
  padding: 20px;
  border: 1px solid #2e3192;
}

.filtar_part .filtarelemnt.hide {
  display: none;
}

.filtar_part .filtarelemnt.show {
  display: block;
  transition: 0.5s;
}

/* -----------------------------------------
             blog-detail
--------------------------------------------*/
.up_blog_box {
  padding: 20px;
  background-color: var(--sec-bg);
}

.para_part p {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.tag_part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #1e1e1e;
  padding: 10px 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tag_part .tag ul {
  display: flex;
  gap: 30px;
}

.tag_part .tag ul li {
  background-color: #f5f5f5;
  padding: 5px 20px;
}

.tag_part .social ul {
  display: flex;
  gap: 10px;
}

.piro {
  margin-right: 20px;
  font-size: 16px;
  font-weight: 600;
}

.input_serch {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e8e8e8;
}

.input_serch input {
  background-color: transparent;
  border: none;
  width: 100%;
  padding-left: 10px;
}

.input_serch input:focus-visible {
  border: none;
  outline: none;
}

.input_serch i {
  background-color: #2e3192;
  color: #fff;
  padding: 10px 20px;
}

.part_img {
  margin-right: 20px;
}

.part_text p {
  font-size: 13px;
  color: #777777;
  margin-bottom: 5px;
}

.part_text p i {
  margin-right: 10px;
}

.part_text h4 {
  font-size: 18px;
}

.cate {
  background-color: var(--sec-bg);
  padding: 20px;
}

.part_categories ul li {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d6d6d6;
}

.part_tag ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.part_tag ul li {
  padding: 10px 15px;
  background-color: #fff;
}

/*======================================
           contact us 
 ======================================*/
.section_title {
  margin-bottom: 50px;
}

.section_title h5 {
  color: #f69500;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

.section_title h2 {
  font-size: 50px;
  font-weight: 700;
  font-family: jost;
}

.service_box {
  background-color: #eff7ff;
  padding: 50px;
  height: 100%;
}

.service_content2 h5 {
  font-size: 25px;
  margin-bottom: 15px;
}

.service_content2 p {
  color: #777;
}

.service_area .service_box:hover,
.service_area .service_box.active {
  background: #fff7ef;
}

.contact_form {
  background: #e7f0f8;
  padding: 50px 0;
  margin-top: 20px;
}

.form-control {
  height: 55px;
  border-radius: 0;
  border: none;
  font-size: 16px;
}

.form-select {
  height: 55px;
  border-radius: 0;
  border: none;
  font-size: 16px;
}

.form-control:focus {
  box-shadow: none;
}

.form-group {
  margin-bottom: 30px;
}

.textarea {
  width: 100%;
  border: none;
  padding: 15px;
  font-size: 16px;
}

.textarea:focus-visible {
  border: none;
  outline: none;
}

.slider_btn .btn {
  background-color: #2e3192;
  border: 1px solid #2e3192;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 20px 30px;
  text-align: center;
  text-transform: unset;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
  background: #ff7350;
  border: 1px solid #ff7350;
  overflow: hidden;
}

.slider_btn .btn i {
  margin-left: 10px;
}

/*===============================================
                    gallery 
 ===================================================*/
.gallery_img {
  overflow: hidden;
  position: relative;
  margin: 0;
}

.gallery_img::before {
  content: "+";
  font-family: "dripicons-v2" !important;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #fff;
  transition: 0.3s;
  opacity: 0;
  z-index: 9;
  background: #125875;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
}

.gallery_img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #f69500;
  opacity: 0;
  transition: 0.3s;
}

.gallery_img:hover::before {
  top: 50%;
  opacity: 1;
}

.gallery_img:hover::after {
  opacity: 0.85;
}

/* ============================================
                Event Detaials
=================================================*/
.upcoming_event_detils .events_banner {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.upcoming_event_detils .events_banner img {
  width: 100%;
  height: auto;
}

.events_Detils_part {
  background: #f0f7ff;
  padding: 20px;
}

.events_detil_text h4 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.coutdown {
  background: #f69500;
  margin: 40px 0;
  padding: 50px 0;
}

/* .timer {
  display: flex;
} */

.timer .timer_outer {
  text-align: center;
  width: 100%;
}

.timer .timer_outer .days {
  font-size: 50px;
  color: #fff;
  font-weight: 600;
  line-height: 20px;
}

.smalltext {
  color: #fff;
}

/* .social {
  margin-top: 30px;
} */

.social a {
  font-size: 16px;
  display: inline-block;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2e3192;
  text-align: center;
  line-height: 40px;
  color: #fff !important;
}

.active {
  color: var(--main-color) !important;
}

.blog_detalis_inner .main_img img {
  height: 600px;
  object-fit: cover;
}

pre {
  text-wrap: balance;
  font-family: jost;
  font-size: 16px;
  text-align: justify;
}

/* insta slider */
.lightwidget__lightbox--active {
  z-index: 1000000 !important;
}