* {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font);
  box-sizing: border-box;
}

:root {
  --heading-font: "Poppins", serif;
  --color-black: #000;
  --theme-color: #006cb4;
  --theme-color2: #f5f5f6;
  --theme-font: "Poppins", serif;
  --radius: 16px;
}

.common-radius {
  border-radius: var(--radius);
}

::-moz-selection {
  background-color: var(--theme-color);
  color: #fff;
}

::selection {
  background-color: var(--theme-color);
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

p {
  font-size: 16px;
  font-family: var(--theme-font);
  line-height: 1.9;
}

a {
  text-decoration: none;
  color: inherit;
}

.theme-color {
  color: var(--theme-color);
  font-family: inherit;
}

.common-btn {
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s linear;
  border-radius: 0;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 25px 14px 25px;
  line-height: 1;
  border-radius: 5px;
  margin-top: 1.5rem;
  font-weight: 600;
}
.common-btn:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.common-space {
  padding: 80px 0;
}

.common-heading {
  font-size: 30px;
  color: var(--theme-color);
  padding-top: 0rem;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 1.2rem;
}

header {
  z-index: 999;
  width: 100%;
}
header .logo-all-wrapper {
  display: flex;
}
header.sticky {
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: #fff;
  left: 0;
  width: 100%;
}
header.sticky nav.navbar ul.navbar-nav .nav-item .nav-link {
  padding: 15px 5px;
  color: #000;
}
header.sticky .navbar-brand img {
  max-width: 120px;
}
header .cl a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: var(--theme-color);
  color: #fff;
}
header .cl a i {
  color: #fff;
}
header .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
header .navbar-brand img {
  padding: 5px;
  max-width: 160px;
}
header .bg-body-tertiary {
  background-color: transparent !important;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}
header .top-bars {
  background-color: #212121;
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
}
header .top-bars .row-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: end;
}
header .top-bars .row-wrapper .top-box {
  padding-right: 15px;
}
header .top-bars .row-wrapper .top-box i {
  color: var(--theme-color);
}
header .colName {
  padding-right: 15px;
}
header .colName h4 {
  font-size: 14px;
  color: var(--theme-color);
}
header .colName p {
  font-size: 11px;
  margin-bottom: 0;
}
header nav.navbar ul.navbar-nav .nav-item {
  margin: 0px 5px;
  display: flex;
  align-items: center;
}
header nav.navbar ul.navbar-nav .nav-item .nav-link {
  font-weight: 500;
  padding: 32px 5px;
  position: relative;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  font-family: var(--heading-font);
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
}
header nav.navbar ul.navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-color);
}
header nav.navbar ul.navbar-nav .nav-item .nav-link.active {
  color: var(--theme-color);
}
header .righ-hd i {
  color: var(--theme-color);
  font-size: 25px;
  margin-right: 25px;
}

.sub-heading {
  text-transform: uppercase;
  color: var(--theme-color);
  letter-spacing: 3px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-size: 0.75rem;
}

.banner-home {
  position: relative;
  overflow: hidden;
  height: 65vh;
  overflow: hidden;
}
.banner-home h1 {
  font-size: 47px;
  padding-top: 4rem;
  font-weight: 700;
  line-height: 61px;
  margin-bottom: 2rem;
  position: relative;
}
.banner-home h1::before {
  content: "";
  position: absolute;
  right: 11px;
  bottom: -5px;
  width: 61%;
  content: "";
  background-image: url(img/lines.png);
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: -1;
}
.banner-home .img-wrpas img {
  border-radius: 8px;
  max-height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-home .bnr-wraps {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 1;
}
.banner-home .bnr-wraps h1 {
  color: white;
  margin-bottom: 10px;
  text-shadow: 2px 2px #000000;
}
.banner-home .bnr-wraps p {
  color: white;
  margin-bottom: 20px;
}
.banner-home .bnr-wraps .common-btn {
  background-color: var(--theme-color);
}
.banner-home video {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-home .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2901960784);
}

.about-home .rdMore {
  display: flex;
}

.anounc {
  display: flex;
  overflow: hidden;
  background-color: #efefef;
}
.anounc .anoubox-left {
  background-color: var(--theme-color);
  color: #fff;
  align-items: center;
  display: flex;
  padding: 10px;
}
.anounc .anoubox-left h4 {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}
.anounc .anou-right {
  padding: 10px;
  padding-left: 25px;
}
.anounc .anou-right p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.anounc .owl-dots {
  position: absolute;
}

#course {
  background-color: aliceblue;
}
#course .common-heading {
  font-size: 28px;
}
#course h4 {
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 18px;
}
#course ul {
  padding-left: 0;
}
#course ul li {
  list-style: none;
  padding: 8px 10px;
  background-color: #e9e9e9;
  margin-bottom: 18px;
}
#course ul li:nth-child(odd) {
  background-color: #e3f2ff;
}
#course.courses2 {
  background-color: #fff;
}

.counter {
  background-color: aliceblue;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.9098039216), rgba(255, 255, 255, 0.7882352941)), url(img/ev1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.counter .progra {
  background-color: var(--theme-color);
  text-align: center;
  padding: 22px 26px;
  color: #fff;
  text-align: center;
}
.counter .progra h4 {
  font-size: 48px;
  margin-bottom: 0;
}
.counter .progra p {
  margin-bottom: 0;
}

.evenets .blog-item {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.evenets .blog-item .img {
  position: relative;
  overflow: hidden;
}
.evenets .blog-item .img img {
  transition: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
  width: 100%;
}
.evenets .blog-item .img .date {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--theme-color);
  color: white;
  padding: 3px 8px;
}
.evenets .blog-item .content {
  padding: 30px 40px 30px 30px;
  position: relative;
  overflow: hidden;
}
.evenets .blog-item .content h4 {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 600;
}
.evenets .blog-item .content .rdmore {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
}
.evenets .blog-item:hover img {
  transform: scale(1.05);
}
.gals .gal-box-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.gals .gal-box-wrapper .gal-boxx {
  overflow: hidden;
}
.gals .gal-box-wrapper .gal-boxx img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
.gals .gal-box-wrapper .gal-boxx p {
  margin-bottom: 0;
}
.gals .gal-box-wrapper .gal-boxx:hover img {
  transform: scale(1.07);
}

.slidebox {
  display: flex;
  align-items: center;
  background-color: #fff9f9;
  padding: 22px;
}
.slidebox .img-wraper {
  display: flex;
  align-items: center;
}
.slidebox .img-wraper img {
  max-width: 150px;
  background-color: var(--theme-color);
  padding: 5px;
  border-radius: 125px;
}
.slidebox .slide-cont {
  padding-left: 2rem;
}
.slidebox .slide-cont h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 1rem;
}
.slidebox .slide-cont p {
  margin-bottom: 0;
  line-height: 1.6;
}

.bread-crumb {
  background-image: linear-gradient(45deg, rgb(0, 108, 180), rgba(0, 108, 180, 0.86)), url(img/blog-2.jpg);
  background-size: cover;
  width: 100%;
  background-position: center;
  padding: 6rem 0px 5rem;
}
.bread-crumb .content {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
}
.bread-crumb .content h1 {
  color: white;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 500;
}
.bread-crumb .content h1:first-letter {
  font-size: 1.17em;
}
.bread-crumb .content ul {
  margin-bottom: 0;
  display: flex;
  gap: 10px;
  color: #000;
  border-radius: 5px;
  list-style: none;
  padding-left: 0;
}
.bread-crumb .content ul li {
  position: relative;
  color: rgb(255, 255, 255);
  padding-right: 20px;
}
.bread-crumb .content ul li::before {
  position: absolute;
  right: 0;
  content: "\f061";
  color: white;
  font-family: "fontawesome";
  font-size: 15px;
  top: 2px;
}
.bread-crumb .content ul li a {
  color: rgb(255, 255, 255);
  position: relative;
}
.bread-crumb .content ul li:last-child:before {
  display: none;
}

.contact-page .form-wraps {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 80px 80px 120px 80px;
  position: relative;
  background-color: #0468aa;
}
.contact-page .form-wraps h4 {
  font-size: 30px;
  margin-bottom: 1.5rem;
  color: #fff;
}
.contact-page .form-wraps .row {
  margin-bottom: 1.5rem;
}
.contact-page .form-wraps input {
  border: none;
  background-color: #fcf9f0;
  height: 55px;
  line-height: 55px;
  border-radius: 0;
  margin-bottom: 1.5rem;
}
.contact-page .form-wraps textarea {
  border: none;
  background-color: #fcf9f0;
  border-radius: 0;
}
.contact-page .form-wraps .common-btn {
  border: transparent;
  background-color: #fff;
  color: #000;
  padding: 20px 29px;
  color: #454545;
  border: solid 1px transparent;
}
.contact-page .form-wraps .common-btn:hover {
  background-color: transparent;
  color: #fff;
  border: solid 1px #fff;
}
.contact-page .form-wraps .cont-hed {
  position: absolute;
  bottom: 0;
  right: 25px;
}
.contact-page .form-wraps .cont-hed h2 {
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  font-size: 83px;
  -webkit-text-stroke-width: 1px;
  font-weight: 700;
  opacity: 0.2;
  text-transform: uppercase;
}
.contact-page .con-rights {
  padding-top: 2rem;
  padding-right: 2rem;
  padding-left: 0rem;
  margin-bottom: 2rem;
}
.contact-page .con-rights h3 {
  margin-bottom: 1.5rem;
  font-size: 30px;
}
.contact-page .con-rights .cont-box-pg {
  display: flex;
  position: relative;
  border: 1px solid #f3f2f2;
  padding: 20px;
  margin-bottom: 10px;
}
.contact-page .con-rights .cont-box-pg i {
  font-size: 45px;
  margin-right: 1.5rem;
  color: var(--theme-color);
}
.contact-page iframe {
  margin-top: 5rem;
}

.gall-page .gal-page-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.gall-page .gal-page-wrapper a {
  display: flex;
  height: 100%;
}
.gall-page .gal-page-wrapper .img-wrapper {
  overflow: hidden;
}
.gall-page .gal-page-wrapper .img-wrapper img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.gall-page .gal-page-wrapper .img-wrapper:hover img {
  transform: scale(1.08);
}

.core-values-page .accordion-button {
  font-weight: 600;
  background-color: var(--theme-color);
  color: #fff;
}
.core-values-page .accordion-button::after {
  filter: invert(1);
}

.mission-vision-page h4 {
  font-weight: 500;
  color: var(--theme-color);
  font-weight: 600;
}

.mile-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.mile-wrapper .miles-box {
  box-shadow: 0 0 20px -11px #000;
  background-color: #f7f7f7;
  padding: 20px 20px;
}
.mile-wrapper .miles-box h4 {
  font-size: 32px;
  font-weight: 600;
  color: var(--theme-color);
}

.course-page {
  background-color: aliceblue;
}
.course-page .common-heading {
  font-size: 28px;
}
.course-page h4 {
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 18px;
}
.course-page ul {
  padding-left: 0;
}
.course-page ul li {
  list-style: none;
  padding: 8px 10px;
  background-color: #e9e9e9;
  margin-bottom: 18px;
}
.course-page ul li:nth-child(odd) {
  background-color: #e3f2ff;
}
.course-page#course.courses2-page {
  background-color: #fff;
}

.form-wrapper {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background-color: #f7f4f4;
  padding: 30px 25px;
}
.form-wrapper input {
  margin-bottom: 1rem;
}
.form-wrapper p {
  margin-bottom: 1.5rem;
}

.box-sec,
.box-sec1 {
  background-color: #f4fbff;
  padding: 15px;
  padding: 25px;
  margin-bottom: 1.5rem;
  text-align: center;
  box-shadow: 0 0 17px -11px #000;
}
.box-sec h4,
.box-sec1 h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

footer {
  background-color: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-logo {
  margin-bottom: 1.5rem;
}
footer .middle-widget-sec {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer h3 {
  font-size: 24px;
  line-height: 32px;
  color: white;
  font-weight: 600;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 10px;
}
footer .links-list {
  padding-left: 0rem;
}
footer .links-list li {
  position: relative;
  transition: all 0.3s;
  font-family: var(--theme-font);
  padding-bottom: 12px;
  list-style: none;
}
footer .links-list li:hover {
  color: var(--theme-color2);
}
footer .links-list li:hover:before {
  color: var(--theme-color2);
}
footer p {
  font-size: 15px;
  line-height: 28px;
  color: white;
}
footer ul {
  margin: 0;
  padding-left: 0;
}
footer ul li {
  font-size: 15px;
  line-height: 28px;
  color: #ffffff;
}
footer a {
  font-size: 15px;
  line-height: 28px;
  color: white;
}
footer .social-links li {
  position: relative;
  display: inline-block;
  padding: 5px 1px 4px 11px;
  position: relative;
  background-color: var(--theme-color);
  transition: all 0.3s;
}
footer .social-links li i {
  margin-right: 10px;
  transition: all 0.3s;
  color: white;
}
footer .social-links li:first-child:before {
  display: none;
}
footer .social-links li:hover {
  background-color: var(--theme-color2);
}
footer .social-links li:hover i {
  color: #000;
}
footer .footer-widget {
  padding: 65px 0 65px 0px;
}
footer .about-widget {
  position: relative;
}
footer .centred {
  position: relative;
}
footer .centred p {
  padding: 15px 0px;
  margin: 0;
  text-align: center;
  border-top: 1px solid grey;
}
footer .newsletter input {
  padding: 10px 15px;
}
footer .newsletter .common-btn {
  min-width: auto;
  font-size: 33px;
  width: auto;
  padding: 10px 15px;
  background: var(--theme-color);
  border: none;
  border-radius: 0;
}
footer .newsletter .new-form {
  display: flex;
}

@media only screen and (max-width: 1199px) {
  header nav.navbar ul.navbar-nav .nav-item .nav-link {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  header nav.navbar ul.navbar-nav .nav-item .nav-link {
    font-size: 10px;
  }
  header .colName h4 {
    font-size: 12px;
  }
  header .colName p {
    font-size: 9px;
  }
  header .navbar-brand img {
    padding: 5px;
    padding-left: 0;
    max-width: 111px;
  }
  header .top-bars .row-wrapper .top-box {
    font-size: 13px;
  }
}
@media only screen and (max-width: 991px) {
  button.navbar-toggler {
    position: absolute;
    right: 13px;
    top: 17px;
  }
  header nav.navbar ul.navbar-nav .nav-item .nav-link {
    padding: 12px 5px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) {
  #course .common-heading {
    font-size: 22px;
    line-height: 31px;
  }
  .counter .progra h4 {
    font-size: 30px;
  }
  .evenets .blog-item .content {
    padding: 15px;
  }
  .evenets .blog-item .content h4 {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
  }
  .gals .gal-box-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .slidebox {
    flex-direction: column;
  }
  .slidebox .slide-cont {
    padding-left: 0;
    text-align: center;
  }
  .slidebox .slide-cont {
    padding-left: 0;
    text-align: center;
    margin-top: 1.5rem;
  }
  .contact-page .form-wraps {
    padding: 20px;
  }
  .contact-page .con-rights .cont-box-pg i {
    font-size: 26px;
    margin-right: 0.5rem;
    color: var(--theme-color);
  }
  .contact-page .con-rights {
    padding-top: 0rem;
    margin-bottom: 2rem;
  }
  header .bg-body-tertiary {
    padding-right: 70px;
  }
  header nav.navbar ul.navbar-nav .nav-item {
    flex-direction: column;
    align-items: start;
  }
  .gall-page .gal-page-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
  }
  .banner-home video {
    height: 49vh;
  }
  .banner-home {
    height: 47vh;
  }
}
@media only screen and (max-width: 576px) {
  .counter .progra {
    background-color: var(--theme-color);
    padding: 22px 15px;
    border-bottom: solid 1px #c3e7ff;
  }
  footer {
    padding-top: 2.5rem;
  }
  .img-flkuod {
    margin-top: 2rem;
  }
  .courses2 img {
    margin-bottom: 15px;
  }
  .evenets .blog-item {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 26px;
  }
  .gals .gal-box-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .slidebox {
    display: flex;
    align-items: center;
    background-color: #fff9f9;
    padding: 22px;
    align-items: center;
    flex-direction: column;
  }
  .slidebox .slide-cont {
    padding-left: 0;
    text-align: center;
    margin-top: 1rem;
  }
  footer .footer-widget {
    padding: 15px 0 15px 0px;
  }
  .right-conts {
    font-size: 11px;
  }
  header nav.navbar ul.navbar-nav .nav-item {
    margin: 0px 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: start;
  }
  .gall-page .gal-page-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .contact-page .form-wraps {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
  }
  .mile-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
  .common-space {
    padding: 40px 0;
  }
  .banner-home {
    height: auto;
  }
  .banner-home video {
    height: auto;
  }
  .anounc {
    flex-direction: column;
  }
  .anounc .anou-right p {
    font-size: 14px;
  }
  header .top-bars .row-wrapper {
    gap: 8px;
  }
  header .top-bars .row-wrapper .top-box {
    padding-right: 0;
  }
  header .top-bars .row-wrapper {
    justify-content: center;
  }
  header .top-bars .row-wrapper .top-box {
    font-size: 11px;
  }
  .bread-crumb .content h1 {
    font-size: 30px;
  }
  .bread-crumb {
    padding: 4rem 0 4rem;
  }
}/*# sourceMappingURL=style.css.map */