@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@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=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alumni+Sans+Inline+One:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

@font-face {
  font-family: gotham-l;
  src: url(../fonts/gotham/GOTHAM-LIGHT.TTF);
}

@font-face {
  font-family: gotham;
  src: url(../fonts/gotham/GOTHAM-MEDIUM.TTF);
}

@font-face {
  font-family: gotham-b;
  src: url(../fonts/gotham/GOTHAM-BOLD.TTF);
}

:root {
  /*** theme colors ***/
  --theme-color: #1a3c54;
  --theme-color-2: #ff7700;
  --theme-color-3: #425c6e;
}

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

body {
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

ul {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Alumni Sans Inline One", sans-serif;
}

p {
  color: var(--theme-color-3);
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s all;
}

a:hover {
  color: #000;
}

.theme-btn {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--theme-color-2);
  padding: 14px 30px;
  border-radius: 50px;
  background: var(--theme-color-2);
  transition: 0.2s all;
}

.theme-btn:hover {
  background: transparent;
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 2px 5px 10px 0 var(--theme-color-2);
  color: var(--theme-color-2);
}

.theme-btn:hover img {
  filter: brightness(0) saturate(100%) invert(51%) sepia(65%) saturate(2918%)
    hue-rotate(360deg) brightness(102%) contrast(106%);
}

.theme-btn-2 {
  color: var(--theme-color-2);
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--theme-color-2);
  padding: 14px 30px;
  border-radius: 50px;
  background: transparent;
}

.theme-btn-2 img {
  filter: brightness(0) saturate(100%) invert(51%) sepia(65%) saturate(2918%)
    hue-rotate(360deg) brightness(102%) contrast(106%);
}

.theme-btn-2:hover {
  background: var(--theme-color-2);
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 2px 5px 10px 0 #000;
  color: #fff;
}

.theme-btn-2:hover img {
  filter: unset;
}

.theme-btn-3 {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--theme-color);
  padding: 14px 30px;
  border-radius: 50px;
  background: var(--theme-color);
}

.theme-btn-3:hover {
  background: transparent;
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 2px 5px 10px 0 var(--theme-color);
  color: var(--theme-color);
}

.theme-btn-3:hover img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(19%) saturate(1406%)
    hue-rotate(162deg) brightness(94%) contrast(97%);
}

.theme-btn-4 {
  color: var(--theme-color-2);
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--theme-color);
  padding: 14px 30px;
  border-radius: 50px;
  background: #fff;
}

.theme-btn-4:hover {
  background: transparent;
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 2px 5px 10px 0 var(--theme-color);
  color: #fff;
}

.theme-btn-4 img {
  filter: brightness(0) saturate(100%) invert(51%) sepia(65%) saturate(2918%)
    hue-rotate(360deg) brightness(102%) contrast(106%);
}

.theme-btn-4:hover img {
  filter: unset;
}

.autoRotate {
  animation: autoShowRotate;
  animation-timeline: view();
}

@keyframes autoShowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.autoMoveY {
  animation: autoMoverY 3.5s linear infinite;
}

@keyframes autoMoverY {
  50% {
    transform: translateY(-20px);
  }
}

.autoMoveX {
  animation: autoMoverX 3.5s linear infinite;
}

@keyframes autoMoverX {
  50% {
    transform: translateX(-20px);
  }
}

/* Header CSS Start */

.serv-a {
  position: relative;
  cursor: pointer;
}

.serv-a a {
  padding-bottom: 28px;
}

li.serv-a a i {
  padding-left: 11px;
}

.nav-dropdown {
  position: absolute;
  top: 50px;
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-dropdown ul {
  display: block;
  background-color: var(--theme-color);
}

.serv-a:hover .nav-dropdown {
  visibility: visible;
  opacity: 1;
  clip: inherit;
  -webkit-transform: scaleY(1);
  -khtml-transform: scaleY(1);
  transform: scaleY(1);
}

.nav-dropdown ul li {
  transition: 0.2s all;
}

.nav-dropdown ul li a {
  padding: 10px 20px;
  width: 200px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

.nav-dropdown ul li:hover {
  background-color: #000;
}

.nav-dropdown ul li:hover a {
  color: var(--theme-color);
}

.offcanvas,
.offcanvas-btn {
  display: none;
}

a.btn.offcanvas-btn {
  display: none;
}

.closebtn {
  position: absolute;
  right: 20px;
  top: 30px;
  cursor: pointer;
}

.closebtn i {
  color: #000;
  font-size: 30px;
}

header {
    position: relative;
    width: 100%;
    background: transparent;
    z-index: 1000;
    left: 0;
    padding: 5px 0;
    top: 0;
    opacity: 1;
    transition: all 0.3s ease, opacity 0.3s ease;
}

header.menu_fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--theme-color-3);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /*opacity: 0.95;*/
    transition: all 0.3s ease, opacity 0.3s ease;
}

header .head-wrap {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 99;
  gap: 50px;
}

/* Call Wrap (Contact Us) */
.call-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-wrap p {
  margin-bottom: 0;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: capitalize;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}

.call-wrap p a {
  color: orange; /* Match theme color */
  text-decoration: none;
}

.call-wrap p a:hover {
  color: #e69500; /* Slightly darker orange for hover */
}

/* Navigation */
.navigation {
  margin: 0; /* Remove the large margin */
  position: relative;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}

.navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  list-style: none;
}

.navigation ul li a {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
}

.navigation a.active {
  color: var(--theme-color-2, orange);
}

.navigation ul li a:hover {
  color: var(--theme-color-2, orange);
}

.navigation ul li {
  position: relative;
}

.navigation ul li::after {
  content: "";
  position: absolute;
  right: -21px;
  width: 1px;
  height: 100%;
  background-color: #fff;
}

.navigation ul li:last-child::after {
  content: unset;
}

/* Search Wrap */
.search-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.search-wrap a {
  border: 1px solid #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.search-wrap a img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.search-wrap a:hover {
  background-color: var(--theme-color-2, orange);
  border-color: var(--theme-color-2, orange);
}

.search-wrap form {
  position: relative;
  display: flex;
  align-items: center;
}

.search-wrap form input {
  width: 100%;
  background-color: rgb(255, 255, 255, 0.1);
  border: 1px solid rgb(255, 255, 255, 0.1);
  padding: 13px 25px;
  border-radius: 50px;
  outline: none;
  color: #fff;
  font-size: 16px;
}

.search-wrap form button {
  position: absolute;
  right: 8px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--theme-color-2, orange);
  background: var(--theme-color-2, orange);
  border-radius: 50%;
  transition: 0.2s all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-wrap form button img {
  width: 14px;
  height: 14px;
  object-fit: cover;
}

.search-wrap form button:hover {
  background: transparent;
}

.search-wrap form input::placeholder {
  color: #fff;
}

/* Scrolling Content (Logo and Slogan) */
.scrolling-content {
  padding-top: 160px; /* Adjust based on fixed header height */
  text-align: center;
}

.logo img {
  width: 100%;
  height: 140px;
  object-fit: contain;
}

.logo a {
  display: flex;
  /* justify-content: center; */
}

/* Offcanvas Menu (Mobile) */
.offcanvas-btn {
  display: none;
  color: white;
  font-size: 24px;
  text-decoration: none;
}

@media (max-width: 991px) {
  .navigation {
    display: none;
  }

  .offcanvas-btn {
    display: block;
  }

  header .head-wrap {
    flex-wrap: wrap;
  }

  .call-wrap {
    width: auto;
  }

  .search-wrap {
    margin-left: auto;
  }
}

main {
  padding-top: 40px;
  position: relative;
  z-index: 0;
}

.call-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 20px;
}

/* Header CSS End */

/* Banner CSS Start */

section.banner-section {
  background: url(../images/home-banner.png);
  padding: 24px 0 40px;
  position: relative;
  z-index: 99;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 30%;
}

section.banner-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(26, 60, 84, 0.9);
}

section.banner-section .banner-wrap {
  position: relative;
  z-index: 1;
}

.banner-wrap {
  text-align: center;
}

.banner-wrap h1 {
  color: #fff;
  font-size: 80px;
  margin-bottom: 0;
  line-height: normal;
  position: relative;
}

.banner-wrap h1 span {
  color: var(--theme-color-2);
}

.banner-wrap p {
  color: #fff;
  font-size: 23px;
  width: 80%;
  margin: 0 auto 20px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: "Oswald", sans-serif;
}

.banner-btn {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 50px;
  margin: 10px 0 0;
}

section.about-section {
  padding: 100px 0;
}

.about-left {
  display: flex;
  align-items: start;
  gap: 24px;
}

.about-img img {
  animation: ready-3 6s linear infinite;
  width: 100%;
}

@keyframes ready-3 {
  50% {
    transform: translateY(-20px);
  }
}

.counter-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.counter-box {
  text-align: center;
  background-color: var(--theme-color);
  width: 100%;
  padding: 23px 0;
  border-radius: 12px;
}

.counter-box2 {
  background: var(--theme-color-2);
}

.counter-box h4 {
  color: #fff;
  font-size: 48px;
  font-family: Inter;
  font-weight: 700;
  margin-bottom: 13px;
}

.counter-box p {
  color: #fff;
  font-size: 15px;
  line-height: 24px;
}

.about-right h6 {
  font-size: 20px;
  font-weight: bold;
  color: var(--theme-color-2);
  /* padding-left: 20px; */
  position: relative;
  margin-bottom: 16px;
}

.about-right {
  padding-left: 40px;
}

.about-right h2 {
  font-size: 64px;
  line-height: 57px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--theme-color-3);
  text-align: center;
}

.about-right h2 span {
  color: var(--theme-color-2);
}

.about-right p {
  margin-bottom: 30px;
}

.about-right p span {
    font-weight: 700;
    opacity: .9;
}

.about-wrap {
  display: flex;
  align-items: start;
  gap: 28px;
  margin-bottom: 40px;
}

.about-wrap-img {
  padding: 21px;
  border: 1px solid #222222;
  border-radius: 50%;
}

.about-wrap-img img {
  width: 38px;
  height: 38px;
  object-fit: cover;
}

.about-txt h5 {
  margin-bottom: 11px;
  font-weight: 700;
}

.about-txt p {
  margin-bottom: 0;
}

.about-txt p span {
  font-family: gotham;
  opacity: 0.9;
  text-transform: capitalize;
}

.about-wrap2 {
  margin-bottom: 72px;
}

.about-btn {
  display: flex;
  align-items: center;
  gap: 32px;
}

.about-other-wrap {
  margin: 25px 0 0;
}

.about-heading {
  margin-bottom: 15px;
  border: 1px solid var(--theme-color);
  padding: 20px;
}

.about-heading h3 {
  border-bottom: 2px solid var(--theme-color-2);
  display: inline-block;
  font-family: "Oswald";
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-heading p {
  margin-bottom: 8px;
}

.about-other-wrap p b {
  font-size: 20px;
}

.about-heading:last-child {
  margin-bottom: 60px;
}

.ceo-wrap {
  display: flex;
  align-items: start;
  gap: 17px;
}

.ceo-wrap img {
  width: auto;
}

.ceo-txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ceo-txt img {
  width: 60%;
  object-fit: fill;
}

.ceo-txt h6 {
  position: unset;
  padding: 0;
  margin-bottom: 0;
}

.ceo-txt h6::before {
  content: unset;
}

.business-section {
  padding: 46px 0 0;
  background-image: url(../images/home-page-sec-bg.png);
  position: relative;
  height: 500px;
}

.business-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(26, 60, 84, 0.9);
}

.business-section .business-wrap {
  position: relative;
  z-index: 1;
}

.business-wrap h2 {
  font-size: 75px;
  margin-bottom: 50px;
  color: #fff;
}

.business-wrap h2 span {
  color: var(--theme-color-2);
}

.business-wrap {
  width: 85%;
  margin: 0 auto;
  text-align: center;
}

.business-img {
  position: relative;
  border: 12px solid #fff;
}

.business-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.orange-line {
  width: 9%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 119, 0, 1) 0%,
    rgba(255, 119, 0, 0) 80%
  );
  position: absolute;
  right: 15%;
}

section.course-section {
  padding: 120px 0;
}

.course-left .banner-btn {
  justify-content: start;
  gap: 14px;
}

.course-right {
  border: 10px solid #fff;
  position: relative;
}

.course-right img {
  width: 100%;
  height: 424px;
  object-fit: cover;
  object-position: top;
}

.course-right::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 500px;
  background-color: var(--theme-color);
  transform: rotate(164deg);
  top: -50px;
  left: 100px;
  z-index: -1;
}

.course-right::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 500px;
  background-color: var(--theme-color-2);
  transform: rotate(-164deg);
  top: -50px;
  right: 100px;
  z-index: -2;
}

.inner-banner-section .banner-wrap h1 {
  margin: 0;
  text-transform: uppercase;
}

.inner-banner-section {
  height: 300px;
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 29px 0 0 0 !important;
}

section.course-section .about-other-wrap {
    margin-top: 50px;
}

/* Banner CSS End */

/* Quotes CSS Start */

.quotes-section {
  padding: 100px 0 0;
}

.quote-wrap {
  padding: 50px 90px;
  border-radius: 40px;
  box-shadow: 0 13px 157px 0 rgb(0 0 0 / 15%);
}

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

.quote-left form input,
.quote-left form select,
.quote-left form textarea {
  background: #e9f2ea;
  border-radius: 40px;
  border: 0;
  width: 100%;
  padding: 21px 32px;
  margin-bottom: 30px;
  color: #414141;
  outline: none;
}

.quote-left form .select-wrapper {
  position: relative;
}

.quote-left form select {
  appearance: none;
}

.quote-left form .select-wrapper::after {
  content: "";
  background-image: url(../images/arrow-down.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 3%;
  top: 39%;
  width: 12px;
  height: 12px;
  pointer-events: none;
  z-index: 9;
  transform: translateY(-50%);
}

.quote-left form input::placeholder,
.quote-left form select,
.quote-left form textarea::placeholder {
  color: #414141;
}

.quote-left form textarea {
  height: 282px;
  resize: none;
}

.quote-right img {
  width: 100%;
}

/* Quotes CSS End */

/* Request CSS Start */

.request-wrap {
  padding: 80px 100px 100px;
  background-image: url(../images/info-bg.png);
  background-size: 100% 100%;
  position: relative;
  margin-top: -290px;
  margin-bottom: 30px;
}

.request-right {
  position: absolute;
  bottom: 0;
  right: 80px;
}

.request-right img {
  width: 90%;
}

.request-left h6 {
  color: #fff;
}

.request-left h6::before {
  background-color: #fff;
}

.request-left h2 {
  color: #fff;
}

.request-left a {
  border: 0;
}

/* Request CSS End */

/* Footer CSS Start */

footer {
  background-color: var(--theme-color);
  padding: 70px 0;
  margin: 0;
}

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

.foot-logo a {
    display: inline-block;
}

.foot-logo img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

.col1 {
  text-align: center;
}

.col1 h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 35px;
  margin-bottom: 20px;
}

.col1 ul {
  list-style: none;
}

.col1 ul li {
  margin-bottom: 8px;
}

.col3 ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 10px;
}

.col3 ul li i {
    color: var(--theme-color-2);
    font-size: 16px;
    margin-top: 5px;
}

.col1 ul li a {
  color: #fff;
  text-align: left;
}

.col1 ul li a:hover {
  color: var(--theme-color-2);
}

.col4 ul {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.col4 ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  width: 35px;
  height: 35px;
}

.col4 ul li a i {
  color: var(--theme-color-2);
}

.col4 ul li a:hover {
  background-color: var(--theme-color-2);
}

.col4 ul li a:hover i {
  color: var(--theme-color);
}

/* Footer CSS End */

/* Copyright CSS Start */

.copyright {
  background-color: var(--theme-color-2);
  padding: 20px 0;
  text-align: center;
}

.copyright p {
  margin-bottom: 0;
  color: #fff;
}

.outer-txt p {
  color: white;
  margin: 0;
  text-transform: capitalize;
  font-family: "Oswald", sans-serif;
  font-size: 21px;
}

.outer-txt-responsive {
    display: none;
}

/* Copyright CSS End */

.inner-txt p {
  margin: 0;
  color: white;
}

.slogan-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.technician img {
  width: 100%;
}

.industry-experiance {
  padding: 110px 0 120px;
}

.technician-txt h2 {
  font-size: 57px;
  line-height: 57px;
  text-transform: uppercase;
  color: var(--theme-color-3);
  text-align: center;
}

.privacy-policy {
  padding: 70px 0;
}

.about-section.inner {
  padding: 100px 0 79px;
}

.vision-sec {
  padding: 100px 0 79px;
}

.loan-sec {
  padding: 100px 0 120px;
}

.contact-us-sec {
  padding: 80px 0 120px;
}

input#exampleFormControlInput11 {
  padding: 15px 15px 15px;
  border-radius: 0;
  margin: 0 0 25px;
  width: 100%;
}

.bio-sec {
  padding: 60px 0 120px;
}

.course-left.vision-txt {
    margin: 0 0 0 0;
}

.vision-txt h2 {
  font-size: 70px;
  color: var(--theme-color-3);
  text-align: center;
  text-transform: uppercase;
}

.btn-slogan {
  padding: 40px 0 0;
}

.btn-slogan-one p {
  width: 100%;
}

.btn-slogan-two p {
  width: 100%;
}

.abt-image-main img {
  width: 100%;
  height: 424px;
  object-fit: cover;
  object-position: top;
}

.contact-main img {
  width: 100%;
}

.contact-sub-btn {
  text-align: center;
}

.contact-sub-btn a {
  background: #ff7701;
  color: white;
  padding: 10px 40px 10px;
  border-radius: 25px;
}

.bio-bg img {
  width: 100%;
}

.vision-bg img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
}

.btn-slogan-one p {
  margin: 0;
}

.slogan-txt p {
  margin-bottom: 15px;
}

.btn-slogan-one {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px;
}

.btn-slogan-one a {
    width: 180px;
    justify-content: center;
}

.site-map {
  padding: 70px 0 0;
}

.bio-wrap h4 {
  font-size: 40px;
  text-transform: uppercase;
}

.disclaimer {
  margin-bottom: 40px;
  overflow: hidden; /* Hide overflow to create marquee effect */
  white-space: nowrap; /* Keep text in a single line */
}

.disclaimer p {
  color: #fff;
  font-size: 15px;
  display: inline-block; /* Allow animation to move text */
  animation: marquee 20s linear infinite; /* Apply marquee animation, adjusted duration for longer text */
  padding-right: 20px; /* Space between repeated text for smooth looping */
  position: relative;
}

.disclaimer p::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    background: #fff;
    top: 0;
    right: 8px;
}

.disclaimer p b {
  font-size: 20px;
  margin-right: 10px;
}

/* Keyframes for marquee effect */
@keyframes marquee {
  0% {
    transform: translateX(0); /* Start from initial position */
  }
  100% {
    transform: translateX(-100%); /* Move to left, adjusted for three repetitions */
  }
}

.banner-points {
  margin: 25px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.banner-points p {display: inline-block;color: #fff;margin: 0 0 8px;text-align: left;font-size: 17px;font-weight: unset;width: unset;}

.about-other-wrapper h3 {
  font-size: 30px;
  text-transform: uppercase;
  font-family: 'Inter';
  color: var(--theme-color-3);
  font-weight: 600;
}

button.back-to-top{
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
  height: 0px;
  width: 0px;
  overflow: hidden;
  -moz-border-radius: 50px;
  color: transparent;
  clear: both;
  visibility: hidden;
  position: fixed;
  cursor: pointer;
  display: block;
  border: none;
  right: 50px;
  bottom: 75px;
  font-size: 0px;
  outline: 0 !important;
  z-index: 99;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  cursor: pointer;
}
button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus,{
  outline: 0 !important;
}
button.back-to-top::before,
button.back-to-top::after {
  content: "";
  display: block;
  vertical-align: middle;
  border-bottom: solid 10px var(--theme-color-2);
  border-left: solid 10px transparent;
  line-height: 0;
  border-right: solid 10px transparent;
  height: 0;
  margin: 18px auto 0;
  width: 0;
  border-radius:20px;
  visibility: hidden;
}
button.back-to-top.show::after,
button.back-to-top.show::before{
  visibility: visible;
}
button.back-to-top::after {
  border-bottom-color: #ffffff;
  position: relative;
  top:-24px;
}
button.back-to-top.show {
  display: block;
  background: #ffffff;
  font-size: 25px;
  right: 25px;
  bottom: 50px;
  height: 50px;
  width: 50px;
  visibility: visible;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--theme-color-2);
}
button.back-to-top.show:active {
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}

.mobile-ham {
    display: none;
}


@media only screen and (max-width: 1400px) {
}
@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 991px) {
  .offcanvas-btn {
    font-size: 30px;
    color: #fff;
    background-color: var(--theme-color);
    padding: 12px;
    line-height: 24px;
    border-radius: 6px;
  }
  .offcanvas-btn:hover,
  .offcanvas-btn:active {
    background: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
    color: #fff !important;
  }
  .offcanvas,
  .offcanvas-btn {
    display: block !important;
  }
  .offcanvas {
    background-color: var(--theme-color);
  }
  .offcanvas-body {
    padding: 50px 0 0 0;
  }
  .navigation {
    display: block;
  }
  
}

@media only screen and (max-width: 767px) {
  .call-wrap,
  .search-wrap {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }
  .contact-col {
    display: none;
  }
  .course-row {
    flex-direction: column;
  }
  .course-row-first {
    flex-direction: column-reverse;
  }
  .course-row .course-right {
      margin-bottom: 60px;
  }
  .about-row {
    flex-direction: column-reverse;
  }
    
  .about-row-two .about-right {
    margin: 60px 0 0;
  }
}

@media only screen and (max-width: 576px) {
    .mobile-ham {
        display: block !important;
    }
    
    .logo {
        display: none;
    }
    
    .mobile-menue-ham {
        display: flex;
        flex-direction: reverse !important;
        justify-content: space-between !important;
        align-items: baseline;
        padding: 0 20px 0;
    }
    
    div#main {
        margin: 0 0 0 !important;
    }
    
    .inner-fields {
        padding: 80px 0 0;
    }
    
    header.menu_fixed {
        position: unset;
    }
    
    .technician-txt {
        padding: 70px 0 0;
    }
    
    .vision-txt {
        padding: 70px 0 70px;
    }
    
    section.course-section {
        padding: 0px 0;
    }
    
    .course-left.vision-txt.responsive {
        padding: 0 0 0;
    }
    
    .about-right p {
        margin-bottom: 0px;
    }
    
    .about-right.responsive {
        padding: 70px 0 0;
    }
    
    .course-left.about-right.vision-txt.responsive {
        padding: 0 0 90px;
    }
    
    .loan-sec {
        padding: 100px 0 0px;
    }
    
    .foot-logo {
        text-align: center;
    }
    
    .course-left.about-right.vision-txt {
        padding-top: 0;
    }
}

@media only screen and (max-width: 450px) {
    
.foot-nav .col-6 {
    width: 33%;
}

.col1 ul li a {
    font-size: 13px;
}
    
.col1 h4 {
    font-size: 30px;
}

.disclaimer {
    margin-bottom: 10px;
}

.foot-logo img {
    width: 80%;
    display: block;
}
    
.logo {
    display: none;
}

.course-right.responsive-set {
    margin: 50px 0 0;
}

.outer-txt p {
    font-size: 14px;
    padding: 0 0 30px;
}

header .head-wrap {
    justify-content: center;
}

div#main {
    margin: 0 0 0 !important;
}

.logo-mobile {
    width: 150px;
    height: 100px;
}

.logo-mobile img {
    width: 100%;
}

.mobile-ham {
    display: block !important;
}

.mobile-menue-ham {
    display: flex;
    flex-direction: reverse !important;
    justify-content: space-between !important;
    align-items: baseline;
    padding: 0 20px 0;
}

.vision-txt {
    padding: 50px 0 0;
}

header.menu_fixed {
    position: unset;
}

.course-right::after {
    content: "";
    position: absolute;
    width: 30%;
    height: 500px;
    background-color: var(--theme-color-2);
    transform: rotate(-155deg);
    top: -40px;
    right: 140px;
    z-index: -2;
}

.course-right::before {
    content: "";
    position: absolute;
    width: 30%;
    height: 500px;
    background-color: var(--theme-color);
    transform: rotate(157deg);
    top: -40px;
    left: 100px;
    z-index: -1;
}

.banner-wrap h1 {
    font-size: 50px;
    line-height: 40px;
}

.banner-wrap {
    padding: 60px 0 0;
}

.banner-btn {
    gap: 15px;
}

.theme-btn {
    padding: 15px 20px;
}

.technician-txt {
    padding: 60px 0 0;
}

.course-section {
    padding: 60px 0;
}

.course-left.about-right.vision-txt {
    padding: 50px 0 60px;
}

.course-right.responsive {
    padding: 0 0 50px;
}

.vision-txt-responsive {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

section.course-section {
    padding: 0px 0;
}

.about-right {
    padding: 45px 8px 0;
}

.about-right h2 {
    margin-bottom: -20px;
    padding: 0 0 50px;
}

.inner-fields {
    padding: 60px 0 0 !important;
}

.foot-logo {
    text-align: center;
}

.navigation ul {
    display: none !important;
}

footer {
    padding: 45px 0;
}

.quote-wrapper p small {
    font-size: 11px;
}
.quote-wrapper p.mx-5 {
    margin: 0px !important;
}

.about-row .course-left.about-right.vision-txt.responsive {
    padding-bottom: 0;
}

.about-row-two .about-right {
    margin: 0;
}
    
}

@media only screen and (max-width: 380px) {
    .col1 ul li a {
        font-size: 11px;
    }
    .outer-txt {
        display: none;
    }
    .outer-txt-responsive {
        display: block;
      overflow: hidden;
      white-space: nowrap;
    }
    
    .outer-txt-responsive p {
      color: #fff;
      font-size: 15px;
      display: inline-block;
      animation: marquee 20s linear infinite;
      padding-right: 20px;
      position: relative;
    }
    
    .outer-txt-responsive p::after {
        content: "";
        position: absolute;
        height: 50%;
        width: 2px;
        background: #fff;
        top: 0;
        right: 8px;
    }
}



/*MOBILE__HAM__START__*/

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #ffffffd6;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #1a3c54;
  display: block;
  transition: 0.3s;
  border-bottom: 1px solid #1a3c5429;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  border-bottom: transparent;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #fff;
  color: #1a3c54;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color: #444;
}

#main {
  transition: margin-left .5s;
  padding: 16px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}

.sidebar {
  z-index: 9999; /* Change this from 1 to 9999 */
}


/*MOBILE__HAM__ENDS*/


.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

[data-aos] {
    will-change: auto !important;
    transform: none !important;
}

body, html {
    overflow-x: hidden;
}

/* Hide default arrow for all accordion buttons */
.accordion-button::after {
  display: none;
}

/* Show custom white arrow only for Weight Class */
.weight-class-arrow {
  position: relative;
}

.weight-class-arrow::after {
  content: '\f107'; /* FontAwesome down arrow */
  font-family: "Font Awesome 5 Free"; /* Or 6 Free depending on version */
  font-weight: 900;
  color: white;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}



