@import url('https://fonts.googleapis.com/css2?family=Ovo&display=swap');
@import url('../fonts/overused-grotesk/stylesheet.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Reduce image brightness - add overlay */
.slide-holder {
    position: relative;
}

.slide-image {
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 606px;
    object-fit: cover;
}

/* Dark Overlay to improve text readability */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* Change opacity here */
    z-index: 1;
}

/* Text holder should appear above overlay */
.slide-text-holder {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    width: 60%;
}

/* Better readability */
.slide-text-holder h2 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.slide-text-holder p {
    font-size: 18px;
    line-height: 1.6;
}


.nav.nav-tabs.m-b-45 {
    flex-wrap: nowrap !important;
}

.instructor-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Alternative: If you want to ensure faces are centered */
.instructor-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* For equal height cards */
.instructor-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.instructor-info {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/**/

#team-photo {
  width: 415px;
  height: 415px;
  object-fit: cover;
  border-radius: 20px;
}

/* ===== Course Pagination Styles ===== */
.pagination-holder {
  display: inline-block;
  margin-top: 20px;
}
.pagination-holder .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 3px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
}
.pagination-holder .page-numbers.current {
  background: #d1001f;
  color: #fff;
  border-color: #d1001f;
}
.pagination-holder .page-numbers:hover {
  background: #d1001f;
  color: #fff;
}
/* end pagination */
html {
  height: 100%;
}

body {

  background: #fff;
  font-family: 'Overused Grotesk';
  font-weight: 300;
  font-style: normal;
  font-size: 17px;
  color: #fff;

}

input:focus,
button:focus,
a:focus {
  outline: none !important;
  box-shadow: none !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 65px;
}

h2 {
  font-size: 55px;
  line-height: 74px;
}

h3 {
  font-size: 50px;
  line-height: 64px;
}

h4 {
  font-size: 45px;
  line-height: 54px;
}

h5 {
  font-size: 35px;
  line-height: 44px;
}

h6 {
  font-size: 25px;
  line-height: 34px;
}

a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: #fff;
}

img {
  max-width: 100%;
}

.f-size-11 {
  font-size: 11px;
}

.f-size-12 {
  font-size: 12px;
}

.f-size-14 {
  font-size: 14px;
}

.f-size-16 {
  font-size: 16px;
}

.f-size-18 {
  font-size: 18px;
}

.f-size-30 {
  font-size: 30px;
}

.f-weight-100 {
  font-weight: 100;
}

.f-weight-200 {
  font-weight: 200;
}

.f-weight-300 {
  font-weight: 300;
}

.f-weight-400 {
  font-weight: 400;
}

.f-weight-500 {
  font-weight: 500;
}

.f-weight-600 {
  font-weight: 600;
}

.f-weight-700 {
  font-weight: 700;
}

.f-weight-800 {
  font-weight: 800;
}

.f-weight-900 {
  font-weight: 900;
}

.f-weight-bold {
  font-weight: bold;
}

.m-t-5 {
  margin-top: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.b-r-10 {
  border-radius: 10px !important;
}

.b-r-15 {
  border-radius: 15px !important;
}

.b-r-20 {
  border-radius: 20px !important;
}

.b-r-25 {
  border-radius: 25px !important;
}

.b-r-30 {
  border-radius: 30px !important;
}






button.owl-prev,
button.owl-next {
  width: 50px;
  height: 50px;
  display: inline-block;
  text-indent: -100px;
  background: url(../img/nav.svg) no-repeat center !important;
  overflow: hidden;
  border-radius: 100%;
}

button.owl-prev {
  transform: rotate(180deg);
  border-left: 0 !important;

}

button.owl-next {
  border-left: 0 !important;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  margin: 10px;
}

button.owl-dot.active {
  background: #000 !important;
  width: 45px !important;
  height: 10px;
  border-radius: 30px;
}

body button.owl-dot {
  border-radius: 30px;
  width: 50px;
  height: 10px;
  background: #fff;
  display: block;
  z-index: 122;
  position: relative;
}

.owl-dots.disabled {
  display: block !important;
  text-align: center;
  margin-top: 25px;
}

.btn-fill {
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
}

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

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

.btn-border {
  border-radius: 30px;
  padding: 6px 15px 1px;
  color: #fff;
  border: 1px solid #fff;
}

.font-ovo {
  font-family: "Ovo", serif;
  font-weight: 400;

}

.navbar-dark .navbar-nav .nav-link {
  color: #1A1A1A;
  font-weight: 400;
}

nav.navbar {
  background: #E9E9E9;
  border-radius: 30px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0 10px;
}


.social li a {
  width: 40px;
  height: 40px;
  display: block;
  border: 1px solid #D20428;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

.btn-fill {
  color: #fff;
  padding: 4px 8px 6px 25px;
  border-radius: 5px;
  border: none;
  background: #DF042B;
  border-radius: 30px;
  line-height: 10px;
  display: flex;
  align-items: center;
}

.btn-fill img {
  background: #fff;
  padding: 10px;
  border-radius: 100%;
  margin-left: 10px;
  display: inline-block;
}

header.site-header {
  padding: 25px 0;
}

.slide-holder {
  border-radius: 20px;
  overflow: hidden;
}

.btn-border {
  color: #fff;
  padding: 3px 6px 3px 22px;
  border-radius: 5px;
  border: 1px solid #fff;
  border-radius: 30px;
  line-height: 10px;
  display: flex;
  align-items: center;
}

.btn-holder img {
  width: initial !important;
}

.slide-text-holder {
  padding: 50px;
  position: absolute;
  top: 50%;
  z-index: 999;
  width: 50%;
}

.btn-fill img {
  background: #fff;
  padding: 10px;
  border-radius: 100%;
  margin-left: 10px;
  display: inline-block;
}

.btn-border img {
  background: #df042b;
  padding: 10px;
  border-radius: 100%;
  margin-left: 10px;
  display: inline-block;
}

.text-dark {
  color: #1A1A1A;
}

.red-box {
  background: #D20428;
  display: inline-block;
  color: #fff;
  font-weight: 100;
  border-radius: 10px;
  font-size: 19px;
  padding: 0 10px;
}

.furure-item-holder {
  background: #013E6F;
  color: #fff;
  padding: 20px;
  border-radius: 30px;
  text-align: center;
}

.icon-holder {
  background: #D20428;
  display: inline-flex;
  padding: 10px;
  border-radius: 20px;
  border: 13px solid #fff;
  top: -20px;
  position: relative;
  margin-top: -40px;
}

.furure-item-holder.img-only img {
  margin-top: -115px;
}

.furure-item-holder.img-only {
  padding: 0;
  height: 240px;
  margin-top: 171px;
}

.star-holder img {
  background: #013660;
  padding: 5px;
  border-radius: 7px;
  margin-right: 6px;
}

.blue {
  color: #013660;
}

.red-border {
  border-color: #D20428;
  color: #E2042B;
}

.course-holder {
  background: #EDEDED;
  padding: 25px;
  border-radius: 20px;
  min-height: 282px;
}

.course-holder.blue-box {
  background: #013E6F;
  padding: 25px;
  border-radius: 20px;
  color: #fff;
}

.star-holder.red img {
  background: #df042b;
  padding: 5px;
  border-radius: 7px;
  margin-right: 6px;
}

.owl-carousel .owl-item img {
  width: initial !important;
}

.author {
  border-left: 1px solid #1A1A1A;
  padding-left: 10px;
}

.testi-holder {
  background: #EEEEEE;
  padding: 20px;
  border-radius: 20px;
  min-height: 470px;
}

.owl-nav.disabled {
  display: block;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background-color: #FECDD6 !important;

}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  background-color: #D20428 !important;
}

.owl-dots {
  display: flex;
}

.owl-carousel button.owl-dot {
  margin: 0;
  border-radius: 0;
}

body .owl-dot.active {
  background-color: #D20428 !important;
}

.testi .owl-nav {
  position: absolute;
  left: -330px;
  top: 310px;
}

.testi h6 {
  font-size: 22px;
  line-height: 34px;
}

.testi .owl-dots {
  display: flex;
  position: absolute;
  left: -264px;
  top: 342px;
}

.testi button.owl-next {
  position: relative;
  left: 86px;
}

.site-footer .container {

  background-color: #013E6F;
  padding: 40px;
  border-radius: 20px;
}

.site-footer .social img {
  filter: brightness(100);
}

.site-footer .social li a {
  background: #D20428;
}

.link-items li a {
  border-right: 1px solid #C8C8C8;
  padding: 0 10px;
}

.link-items li:last-child a {
  border-right: none;
}

footer.site-footer {
  padding: 50px 0;
}

.contact .social li a {
  background: #D20428;
  border-radius: 10px;

}

.contact .social li a img {
  max-width: 100%;
  filter: brightness(100);
}

label {
  display: block;
}

.contact-form {
  background: #EFEFEF;
  padding: 25px;
  border-radius: 20px;
}

label {
  display: block;
  font-weight: 400;
  margin-bottom: 10px;
}

input.field-item {
  width: 100%;
  padding: 10px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
}

select {
  width: 100%;
  padding: 10px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
}

.inner-content {
  padding-top: 50px;
}

.field-item:focus {
  border-color: #D20428;
}

.nav-tabs .nav-link {
  width: 31%;
  text-align: center;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: 1px solid transparent;
  border-color: #D20428;
  margin: 1%;
  color: #D20428;
  border-radius: 10px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #ffffff;
  background-color: #D20428;
}

.nav-tabs {
  border-bottom: none;
}

.home-banner .owl-dots {
  display: flex;
  justify-content: center;
  position: relative;
  top: -39px;
}

.home-banner .owl-carousel button.owl-dot {
  margin: 0;
  border-radius: 5px;
}

.site-section {
  padding: 50px 0 0;
}

.home-banner .owl-carousel .owl-item>img {
  width: 100% !important;
}

section.site-section.testi.text-dark {
  padding-top: 80px;
  padding-bottom: 30px;
}

.testi .owl-carousel .owl-item .testi-img {
  width: 100%;
  border-radius: 1000%;
}

.course-holder .img-holder img {
  width: 280px;
  object-fit: cover;
}

.btn-border.red-border:hover {
  color: #df042b;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #df042b;
}

.nav-item img {
  margin-top: -3px;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link {
  color: #DE042B;
}

.home-banner .owl-carousel .owl-item .slide {
  width: 100% !important;
}

.course-property .item {
  background: #FECDD6;
  border-radius: 5px;
  padding: 10px 15px;
  margin-right: 20px;
}

.course-property .item img {
  width: 45px;
  height: 45px;
  background: #D20428;
  padding: 5px;
  border-radius: 3px;
  margin-right: 5px;
}

.item-list li {
  background: #013E6F;
  padding: 20px 10px;
  border-radius: 20px;
  color: #fff;
}

.tick {
  background: #D20428;
  padding: 8px;
  border-radius: 10px;
  margin-right: 10px;
  border-bottom: 2px solid #fff;
}

.accordion-item {
  background-color: #FECDD6;
  border: none;
  margin-bottom: 25px;
  border-radius: 15px;
}

.accordion-button:not(.collapsed) {
  color: #1A1A1A;
  background-color: #FECDD6;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button {
  background-color: #fecdd6;
  padding: 0px 25px;
  border-radius: 15px;

}

.accordion-button::after {

  background-color: #D20428;
  padding: 11px;
  border-radius: 4px;
}

.student .testi-holder {
  min-height: initial;
}

.author img {
  border-radius: 100%;
}

.text-white {
  color: #fff;
}

.purpose-item-holder {
  background-color: #013E6F;
}

.purpose-item-holder {
  background-color: #013E6F;
  padding: 25px;
  border-radius: 20px;
}

.red-bg {
  background-color: #D20428;
}

.gray-bg {
  background-color: #EFEFEF;
  border: 1px solid #C8C8C8;

}

.purpose-item-holder.gray-bg {
  display: block;

}

.purpose-item-holder.gray-bg li img {
  max-width: 100%;
  width: 50px;
}

.purpose-item-holder.gray-bg li {
  margin-left: -10px;
}

.main-icon {
  background: #013e6f;
  padding: 14px;
  border-radius: 8px !important;
}

.timeline-holder .date {
  background: #D20428;
  padding: 10px 20px;
  display: block;
  color: #fff;
  font-weight: 400;
  border-radius: 20px;
  transform: rotate(-90deg);
  margin-left: -19px;
  height: 50px;
  margin-top: 11px;
}

.timeline-holder img {
  background: #013762;
  padding: 16px;
  border-radius: 20px;
  width: 95px;
}

.test-holder {
  background-color: #013E6F;
  padding: 40px 30px;
  border-radius: 20px;
  color: #fff;
}

.test-holder .social li a {
  width: 40px;
  height: 40px;
  display: block;
  border: 1px solid #D20428;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #D20428;
}

.test-holder .social li a img {
  filter: brightness(100);
}

.experts .gray-bg {
  padding: 15px;
}

.blue-bg {
  background: #013E6F;
  color: #fff;
  padding: 15px;
}

.experts {
  padding-bottom: 35px;
}

.img-width {
  width: 121px !important;
}

@media (max-width: 1369px) {

  .testi .owl-nav {
    top: 390px;
  }

  .testi .owl-dots {
    top: 423px;
  }

  .testi-holder {
    min-height: 540px;
  }

}

@media (max-width: 1200px) {
  .slide-text-holder {
    top: -7%;

  }

  .testi .owl-nav {
    left: -250px;
    display: block !important;
  }

  .testi .owl-dots {
    left: -184px;
  }

  .testi .owl-nav {
    top: 345px;
  }

  .testi .owl-dots {
    left: -214px;
  }

  .img-width {
    width: 196px !important;
  }

  .timeline-holder img {
    width: 165px;
  }
}

@media (max-width: 992px) {

  nav.navbar {
    background: #df042b;
  }

  .navbar-collapse {
    position: absolute;
    right: -80px;
    top: 44px;
    z-index: 99;
    background: #ffffff;
    width: 200px;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 0 20px rgb(0 0 0 / 38%);
  }

  li.nav-item {
    padding: 4px 0;
  }

  .navbar {
    padding: 5px;
  }

  .slide-text-holder {
    width: 100%;
    background: #013e6f;
    position: initial;
  }

  .owl-carousel .owl-dots.disabled,
  .owl-carousel .owl-nav.disabled {
    position: initial;
  }

  .owl-dots {
    display: none !important;
  }

  .testi-holder {
    min-height: inherit;
  }

  .testi .owl-nav {
    position: initial;
    display: flex !important;
    justify-content: space-between;
  }

  .testi button.owl-next {
    left: 0;
  }

  .slider-property {
    margin-bottom: 25px;
  }

  .container-fluid {
    padding: 0;
  }

  .header-left {
    width: 140px;
  }

  .slide-text-holder {
    padding: 25px;
    width: 100%;
  }

  .heading-holder {
    flex-direction: column;
  }

  .purpose-item-holder {
    margin-top: 25px;
  }

  .timeline-holder img {
    width: 156px;
  }
}

@media (max-width: 768px) {

  .header-right .social {
    display: none !important;
  }

  .course-holder {
    flex-direction: column;
  }

  .course-holder .img-holder img {
    width: 100%;
    margin-bottom: 15px;
  }

  .img-holder {
    margin-right: 0 !important;
  }

  .timeline-holder img {
    width: 236px;
  }

  .img-width {
    width: 286px !important;
  }
}

@media (max-width: 500px) {

  .slide-text-holder a {
    font-size: 12px;
  }

  .header-right .btn-fill {
    font-size: 11px;
  }

  .btn-holder {
    flex-direction: column;
  }

  .btn-holder a {
    margin: 0 !important;
    margin-bottom: 15px !important;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .timeline-holder img {
    width: 346px;
  }

  .img-width {
    width: 406px !important;
  }
}