@charset "UTF-8";
/*----------------------------------------------

[Master Stylesheet]

Project:    Firebird
Version:    1.0
Last change:    11-02-2026
Primary use:    AGT 
Author:   Praveen Maddy

-----------------------------------------------*/
/*----------------------------------------------

[Table of contents]

1. Body
2. Header
3. Main
4. Footer

-----------------------------------------------*/
/*----------------------------------------------

[Fonts]

Base Fonts(Headings & Content)  : Roboto
Icon Fonts                      : Fontawesome 5.15.4

------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  scroll-padding-top: 100px;
  --swiper-wrapper-transition-timing-function: linear !important;
}

html {
  margin: 0;
  padding: 0;
  scroll-padding-top: 100px;
}

body {
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  position: relative;
  font-family: "Roboto", sans-serif;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none !important;
  margin-block-start: 0;
  -ms-margin-block-start: 0;
  -moz-margin-block-start: 0;
  -o-margin-block-start: 0;
  margin-block-end: 0;
  -ms-margin-block-end: 0;
  -moz-margin-block-end: 0;
  -o-margin-block-end: 0;
  padding-inline-start: 0;
  -ms-padding-inline-start: 0;
  -moz-padding-inline-start: 0;
  -o-padding-inline-start: 0;
}

li {
  text-decoration: none !important;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
}
button:focus {
  box-shadow: none;
  outline: none;
}

a,
a:link,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

::-ms-expand {
  display: none;
}

::-ms-clear {
  display: none;
}

:focus {
  box-shadow: none !important;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
}

.mx-0-auto {
  margin: 0 auto;
}

.btn.focus,
btn.focus,
.btn:focus,
btn:focus,
button:focus {
  outline: none !important;
  box-shadow: none !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input:-internal-autofill-selected {
  background-color: transparent;
}

/* clears the ‘X’ from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input:focus {
  outline: none;
  box-shadow: none;
}

select:focus {
  outline: none;
  box-shadow: none;
}

textarea {
  resize: none;
}
textarea:focus {
  outline: none;
  box-shadow: none;
}

.bdr-rad-10 {
  border-radius: 10px;
}

.bg-gray {
  background-color: #f1f3f9;
}

.theme-button {
  background-color: #FECE11 !important;
  color: #00184b !important;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  margin-right: 15px;
  display: inline-block;
}
.theme-button:hover {
  transform: translateY(-3px);
}

/*------------------------------------------------Main-SCSS------------------------------------------------*/
.custom-spacing {
  padding-top: 80px;
  padding-bottom: 80px;
}

header .navbar .navbar-brand img {
  width: 200px;
}

.landing-banner {
  position: relative;
  z-index: 5;
  padding: 160px 0px;
  background-image: url(../images/banner.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.landing-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
  opacity: 0.6;
  animation: pulse 8s ease-in-out infinite;
  z-index: -1;
}
.landing-banner h1 {
  font-size: 50px;
  line-height: 62px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding-bottom: 15px;
}
.landing-banner p {
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
  text-align: center;
  padding-bottom: 30px;
}
.landing-banner ul {
  display: flex;
  justify-content: center;
}
.landing-banner ul li a.theme-button {
  background: #FECE11;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  margin-right: 15px;
  display: inline-block;
}
.landing-banner ul li a.white-button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 13px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}
.landing-banner ul li a.white-button:hover {
  background-color: #ffffff;
  color: #00184b;
}
.landing-banner ul li a:hover {
  transform: translateY(-3px);
}
@media (max-width: 1200px) {
  .landing-banner h1 {
    font-size: 44px;
    line-height: 52px;
  }
}
@media (max-width: 992px) {
  .landing-banner h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 768px) {
  .landing-banner h1 {
    font-size: 38px;
    line-height: 46px;
  }
}
@media (max-width: 576px) {
  .landing-banner h1 {
    font-size: 34px;
    line-height: 46px;
  }
}

.why-firebird .section-title {
  padding-bottom: 50px;
  text-align: center;
}
.why-firebird .section-title h2 {
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  color: #00184b;
  display: inline-block;
}
@media (max-width: 1200px) {
  .why-firebird .section-title h2 {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (max-width: 992px) {
  .why-firebird .section-title {
    padding-bottom: 40px;
  }
  .why-firebird .section-title h2 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (max-width: 768px) {
  .why-firebird .section-title {
    padding-bottom: 30px;
  }
  .why-firebird .section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .why-firebird .section-title {
    padding-bottom: 20px;
  }
  .why-firebird .section-title h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.why-firebird .row-gap {
  gap: 30px 0px;
}
.why-firebird .why-firebird-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #00184b;
}
.why-firebird .why-firebird-card h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  padding-bottom: 15px;
  color: #00184b;
  display: flex;
  gap: 15px;
  align-items: center;
}
.why-firebird .why-firebird-card h3 img {
  width: 50px;
  height: 50px;
}
.why-firebird .why-firebird-card ul {
  padding-left: 20px;
}
.why-firebird .why-firebird-card ul li {
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  color: #080808;
  padding-bottom: 5px;
  list-style-type: circle;
}
.why-firebird .why-firebird-card ul li::marker {
  color: #00184b;
}
.why-firebird .why-firebird-card ul li:last-child {
  padding-bottom: 0;
}
.why-firebird .why-firebird-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-width: 2px;
}
@media (max-width: 576px) {
  .why-firebird .row-gap {
    gap: 20px 0px;
  }
  .why-firebird .why-firebird-card {
    padding: 20px;
  }
}

.student-advantages {
  background-color: #f5f6fd;
}
.student-advantages .section-title {
  padding-bottom: 50px;
  text-align: center;
}
.student-advantages .section-title h2 {
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  color: #00184b;
  display: inline-block;
}
@media (max-width: 1200px) {
  .student-advantages .section-title h2 {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (max-width: 992px) {
  .student-advantages .section-title {
    padding-bottom: 40px;
  }
  .student-advantages .section-title h2 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (max-width: 768px) {
  .student-advantages .section-title {
    padding-bottom: 30px;
  }
  .student-advantages .section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .student-advantages .section-title {
    padding-bottom: 20px;
  }
  .student-advantages .section-title h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.student-advantages .row-gap {
  gap: 30px 0px;
}
.student-advantages .advantages-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 20px;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.student-advantages .advantages-card h4 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  color: #00184b;
}
.student-advantages .advantages-card img {
  margin-bottom: 10px;
  border-radius: 10px;
}
.student-advantages .advantages-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.student-advantages .apply-now-btn {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 576px) {
  .student-advantages .row-gap {
    gap: 20px 0px;
  }
}

.firebird-story {
  background: linear-gradient(135deg, #00184b 0%, #021436 50%, #00184b 100%);
}
.firebird-story .row-gap {
  gap: 30px 0px;
}
.firebird-story .section-title h2 {
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 20px;
}
.firebird-story .section-title p {
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  padding-bottom: 12px;
}
.firebird-story .section-title p:last-child {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .firebird-story .section-title h2 {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (max-width: 992px) {
  .firebird-story .section-title h2 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (max-width: 768px) {
  .firebird-story .section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .firebird-story .section-title h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.firebird-story img {
  border-radius: 5px;
}
@media (max-width: 576px) {
  .firebird-story .row-gap {
    gap: 20px 0px;
    flex-direction: column-reverse;
  }
}

.about-the-programme .context {
  padding-bottom: 40px;
}
.about-the-programme .context h2 {
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  color: #00184b;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.about-the-programme .context p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #080808;
  padding-bottom: 8px;
}
.about-the-programme .context p:last-child {
  padding-bottom: 0px;
}
.about-the-programme .context p b {
  color: #00184b;
}
.about-the-programme h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: #00184b;
  padding-bottom: 30px;
}
.about-the-programme .feature-card {
  padding: 25px;
  border-radius: 15px;
  transition: 0.4s ease;
  height: 100%;
  background-color: #f5f6fd;
}
.about-the-programme .feature-card i {
  font-size: 32px;
  color: #00184b;
}
.about-the-programme .feature-card p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #000000;
}
.about-the-programme .feature-card:hover {
  transform: translateY(-8px);
  background-color: #f1f3f9;
}
@media (max-width: 1200px) {
  .about-the-programme .context h2 {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (max-width: 992px) {
  .about-the-programme .context h2 {
    font-size: 36px;
    line-height: 46px;
  }
  .about-the-programme h3 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 768px) {
  .about-the-programme .context h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .about-the-programme h3 {
    font-size: 26px;
    line-height: 34px;
  }
}
@media (max-width: 576px) {
  .about-the-programme .context h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

.international-mba {
  background-color: #f5f6fd;
}
.international-mba img {
  border-radius: 5px;
}
.international-mba h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: #00184b;
  padding-bottom: 10px;
}
.international-mba p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #080808;
  padding-bottom: 15px;
}
.international-mba p b {
  color: #00184b;
}
.international-mba h4 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  color: #00184b;
  padding-bottom: 10px;
}
.international-mba ul {
  padding-bottom: 20px;
}
.international-mba ul:last-child {
  padding-bottom: 0;
}
.international-mba ul li {
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #080808;
  padding-bottom: 10px;
  position: relative;
  padding-left: 23px;
}
.international-mba ul li::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  color: #00184b;
  left: 0;
  font-size: 16px;
}
.international-mba ul li:last-child {
  padding-bottom: 0;
}
@media (max-width: 992px) {
  .international-mba h3 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 768px) {
  .international-mba h3 {
    font-size: 26px;
    line-height: 34px;
  }
  .international-mba h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 992px) {
  .international-mba .row-gap {
    flex-direction: column-reverse;
    gap: 30px 0px;
  }
}
@media (max-width: 576px) {
  .international-mba .row-gap {
    gap: 20px 0px;
  }
}

.specialisations-offered {
  background: linear-gradient(135deg, #00184b 0%, #021436 50%, #00184b 100%);
}
.specialisations-offered .row-gap {
  gap: 40px 0px;
}
.specialisations-offered .section-title {
  text-align: center;
  padding-bottom: 30px;
}
.specialisations-offered .section-title h2 {
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  color: #ffffff;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.specialisations-offered table {
  --bs-table-bg: transparent;
  border: 1px solid #ffffff;
  height: 100%;
}
.specialisations-offered table thead {
  background-color: #ffffff;
}
.specialisations-offered table thead tr th {
  font-size: 20px;
  line-height: 32px;
  color: #00184b;
}
.specialisations-offered table tbody tr td {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  padding-left: 40px;
  vertical-align: middle;
}
.specialisations-offered table tbody tr td::before {
  position: absolute;
  content: "";
  background-color: #ffffff;
  left: 25px;
  top: 20px;
  border-radius: 50px;
  width: 5px;
  height: 5px;
}
@media (max-width: 1200px) {
  .specialisations-offered .section-title h2 {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (max-width: 992px) {
  .specialisations-offered .section-title h2 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (max-width: 768px) {
  .specialisations-offered .row-gap {
    gap: 30px 0px;
  }
  .specialisations-offered .section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .specialisations-offered .row-gap {
    gap: 20px 0px;
  }
  .specialisations-offered .section-title {
    padding-bottom: 15px;
  }
  .specialisations-offered .section-title h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

.campus-tour .container-fluid {
  max-width: 80%;
}
.campus-tour .row-gap {
  gap: 30px 0px;
}
.campus-tour h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: #00184b;
  padding-bottom: 30px;
  text-align: center;
}
.campus-tour .feature-card {
  background: #f5f6fd;
  border-radius: 10px;
  padding: 20px 20px;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.campus-tour .feature-card p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  text-align: left;
  color: #00184b;
  transition: 0.4s ease;
  padding: 15px;
  position: absolute;
  bottom: 0px;
  opacity: 0;
}
.campus-tour .feature-card img {
  margin-bottom: 10px;
  border-radius: 10px;
  transition: 0.4s ease;
}
.campus-tour .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.campus-tour .feature-card:hover p {
  opacity: 1;
  bottom: 20px;
}
.campus-tour .feature-card:hover img {
  opacity: 0.5;
}
@media (max-width: 1200px) {
  .campus-tour .container-fluid {
    max-width: 960px;
  }
}
@media (max-width: 992px) {
  .campus-tour .container-fluid {
    max-width: 720px;
  }
  .campus-tour h3 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 768px) {
  .campus-tour .container-fluid {
    max-width: 540px;
  }
  .campus-tour h3 {
    font-size: 26px;
    line-height: 34px;
  }
}
@media (max-width: 576px) {
  .campus-tour .row-gap {
    gap: 20px 0px;
  }
}

.cta {
  background: linear-gradient(135deg, #00184b 0%, #021436 50%, #00184b 100%);
}
.cta h2 {
  font-size: 40px;
  line-height: 62px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding-bottom: 15px;
}
.cta p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  padding-bottom: 30px;
}
.cta ul {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.cta ul li a.theme-button {
  background-color: #FECE11;
  color: #00184b !important;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-right: 0;
}
.cta ul li a.white-button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 13px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}
.cta ul li a.white-button:hover {
  background-color: #ffffff;
  color: #00184b;
}
.cta ul li a:hover {
  transform: translateY(-3px);
}
@media (max-width: 992px) {
  .cta h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (max-width: 768px) {
  .cta h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .cta h2 {
    font-size: 28px;
    line-height: 40px;
  }
}

footer {
  background: #ffffff;
  color: #00184b;
  padding: 20px 0;
  text-align: center;
}

/*-------------------------------------------------Media Queries------------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .custom-spacing {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .text-center-xl {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .custom-spacing {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .text-center-lg {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 768px) {
  .custom-spacing {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .text-center-md {
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  .custom-spacing {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/* -------------------------- Max-Width: < 1400px ---------------------- */
/* -------------------------- Max-Width: < 1366px ---------------------- */
/* -------------------------- Max-Width: < 1200px ---------------------- */
/* -------------------------- Max-Width: < 992px ---------------------- */
/* -------------------------- Max-Width: < 768px ---------------------- */
/* -------------------------- Max-Width: < 576px ---------------------- */
@media (max-width: 576px) {
  .row-gap {
    gap: 20px 0px;
  }
}
/*------------------------------------------------Key-Frames------------------------------------------------*/
@keyframes bounce {
  from {
    transform: rotateX(0deg);
  }
  to {
    transform: rotateX(20deg);
  }
}
@keyframes rotate {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
/* pulseBig */
@keyframes pulseBig {
  0% {
    -webkit-box-shadow: 0 0 0 0 #16223b;
    box-shadow: 0 0 0 0 #d3d3d4;
  }
  50% {
    -webkit-box-shadow: 0 0 0 30px rgba(1, 93, 199, 0);
    box-shadow: 0 0 0 30px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
@-webkit-keyframes pulseBig {
  0% {
    -webkit-box-shadow: 0 0 0 0 #16223b;
    box-shadow: 0 0 0 0 #d3d3d4;
  }
  50% {
    -webkit-box-shadow: 0 0 0 30px rgba(1, 93, 199, 0);
    box-shadow: 0 0 0 30px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
.bg-light-blue {
  background-color: rgba(242, 242, 242, 0.3490196078);
}

.bg-white {
  background-color: #ffffff;
}

@keyframes rotate {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
.widget-form {
  padding: 20px;
  background-color: #00184b;
}

.widget_container {
  background-color: #031749;
}

.widget_heading p {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #fff;
}

.form-control {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.agree-condition {
  color: #fff;
}

#home-banner .home-banner-item video {
  width: 100%;
  height: 100%;
}

#home-banner .swiper .swiper-slide {
  height: auto !important;
}

#home-banner .swiper-pagination-bullets-dynamic {
  margin: 0;
  bottom: 50px;
}

#home-banner .swiper-pagination-bullet {
  width: 15px;
  height: 10px;
  background: rgba(254, 206, 17, 0.4588235294);
  transition: all 0.6s ease-in-out;
}

#home-banner .swiper-pagination-bullet-active {
  background: #ffca19 !important;
  transition: all 0.6s ease-in-out;
  width: 40px;
}

header .row {
  align-items: center;
}

#home-banner .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(1);
}

#home-banner .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(1);
}

#home-banner .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(1);
}

#home-banner .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(1);
}

/***********************************************************************************************/
#home-banner {
  position: relative;
  overflow: hidden;
}

#home-banner img {
  width: 100%;
}

#home-banner .swiper .swiper-slide .context {
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 2%;
  transform: translate(2%, -50%);
}

#home-banner .swiper .swiper-slide .context h1 {
  color: #fff;
  margin-bottom: 30px;
  text-align: left;
  font-size: 42px;
  line-height: 54px;
  font-weight: 400;
}

#home-banner .swiper .swiper-slide .context .border-text {
  border-top: 1px solid #fff;
  display: inline-flex;
  border-bottom: 1px solid #fff;
  align-items: center;
  padding: 5px 0px;
  color: #fff;
  gap: 20px;
  margin-bottom: 50px;
}

#home-banner .swiper .swiper-slide .context .border-text .text-one {
  font-weight: 700;
  font-size: 30px;
}

#home-banner .swiper .swiper-slide .context .border-text .text-two {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
}

#home-banner .swiper .swiper-slide .context .border-text .text-two .bdr-under {
  border: 1px solid #fff;
}

#home-banner .swiper .swiper-slide .context .border-text .text-three {
  font-weight: 700;
  font-size: 30px;
}

#home-banner .swiper .swiper-slide .context .apply-btn {
  background-color: transparent;
  padding: 20px 25px 20px 25px;
  border: 2px solid #ffffff;
  border-radius: 0px;
  position: relative;
  width: max-content;
  margin-bottom: 30px;
}

#home-banner .swiper .swiper-slide .context .apply-btn .year {
  background-color: #FECE11;
  color: #00184b;
  font-weight: 600;
  display: inline-block;
  padding: 2px 8px;
  margin-bottom: 5px;
  position: absolute;
  width: max-content;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

#home-banner .swiper .swiper-slide .context .apply-btn .admission-open {
  display: block;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.3px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

#home-banner .swiper .swiper-slide .context button {
  background-color: #FECE11 !important;
  color: #00184b !important;
  font-family: Roboto, serif !important;
  font-size: 18px !important;
  font-weight: bold !important;
  padding: 10px 20px !important;
  border: 2px solid #00184b !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  transition: 0.3s !important;
  text-decoration: none !important;
  display: inline-block !important;
}

@media (max-width: 1300px) {
  #home-banner .swiper .swiper-slide .context h1 {
    font-size: 34px !important;
    line-height: 42px !important;
  }
}
@media (max-width: 1200px) {
  #home-banner .swiper .swiper-slide .context .border-text {
    display: none;
  }
}
@media (max-width: 992px) {
  #home-banner .swiper .swiper-slide .context h1 {
    font-size: 40px !important;
    line-height: 52px !important;
    margin-bottom: 15px;
    line-height: 36px;
  }
  #home-banner .swiper .swiper-slide .context .border-text .text-one {
    font-size: 24px;
    line-height: 32px;
  }
  #home-banner .swiper .swiper-slide .context .border-text .text-two {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
  }
  #home-banner .swiper .swiper-slide .context .border-text {
    margin-bottom: 30px;
  }
  #home-banner .swiper .swiper-slide .context .apply-btn .year {
    font-size: 20px;
  }
  #home-banner .swiper .swiper-slide .context .border-text .text-three {
    font-size: 24px;
    line-height: 32px;
  }
  #home-banner .swiper .swiper-slide .context .apply-btn {
    padding: 20px 25px 5px 25px;
    margin-bottom: 15px;
  }
  #home-banner .swiper .swiper-slide .context .apply-btn .admission-open {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  #home-banner .swiper .swiper-slide .context .apply-btn {
    display: none;
  }
  #home-banner .swiper .swiper-slide .context h1 {
    font-size: 36px !important;
    line-height: 48px !important;
  }
}
@media (max-width: 576px) {
  #home-banner .swiper .swiper-slide .context .border-text {
    display: none;
  }
  #home-banner .swiper .swiper-slide .context h1 {
    font-size: 28px !important;
    line-height: 36px !important;
    text-align: center !important;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .desktop-banner {
    display: none;
  }
  #home-banner .swiper .swiper-slide .context {
    top: unset;
    bottom: 0px;
    transform: translate(8%, -20%);
    text-align: center;
  }
  #home-banner .swiper .swiper-slide .context .border-text {
    display: inline-flex;
  }
  #home-banner .swiper .swiper-slide .context .apply-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 576px) {
  #home-banner .swiper .swiper-slide .context {
    bottom: 10%;
    transform: unset;
  }
  #home-banner .swiper .swiper-slide .context h1 br {
    display: none;
  }
  #home-banner .swiper .swiper-slide .context .apply-btn {
    display: none;
  }
  #home-banner .swiper .swiper-slide .context .border-text {
    gap: 10px 0px;
  }
  #home-banner .swiper .swiper-slide .context .border-text .text-one {
    font-size: 20px;
    line-height: 28px;
  }
  #home-banner .swiper .swiper-slide .context .border-text .text-two {
    font-size: 16px;
  }
  #home-banner .swiper .swiper-slide .context .border-text .text-three {
    font-size: 20px;
    line-height: 28px;
  }
  #home-banner .swiper .swiper-slide .context .border-text {
    margin-bottom: 30px;
  }
}
@media (min-width: 769px) {
  .mobile-banner {
    display: none;
  }
}
/*--------------------------------------------------Clients-------------------------------------------------*/
.why-firebird {
  background-color: #ffffff;
  overflow-x: hidden !important;
}
.why-firebird .swiper-wrapper {
  transition-timing-function: linear;
  align-items: center;
}
.why-firebird .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}
.why-firebird .client-image img {
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 120px;
}
.why-firebird .client-image img:hover {
  filter: unset;
}
.why-firebird .swiper-button-next:after,
.why-firebird .swiper-button-prev:after,
.why-firebird .swiper-pagination {
  display: none;
}

/*# sourceMappingURL=landing.css.map */
