@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,500;0,600;0,700;0,800;1,400;1,800&family=Roboto+Mono:wght@300;400;500;600;700&display=swap");
:root {
  --white: #fff;
  --black: #1c2b2d;
  --blue: #31326f;
  --color-primary: #9d0191;
  --color-sec: #db6400;
  --color-grey: #eee;
  --color-dark-grey: #222831; }

html {
  box-sizing: border-box;
  font-size: 62.5%; }

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

body {
  line-height: 1.5;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  font-family: "Roboto Mono", monospace; }

body.hidden-scrolling {
  overflow-y: hidden; }

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

p {
  margin-bottom: 2rem; }

.container {
  max-width: 1200px;
  margin: auto; }

.error {
  color: red; }
  
  
  .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

@media (max-width: 700px) {
  .container {
    padding: 0 2rem; }

  h2 {
    font-size: 2rem; }

  li, p {
    font-size: 16px; } }
.container-main {
  width: 100%;
  margin: auto; }

ul {
  list-style: none;
  margin: 0;
  padding: 0; }

a {
  text-decoration: none; }

/*header*/
.header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  padding: 15px; }

.header-main {
  background-color: #f97805;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-radius: 4px; }

.header .logo {
  padding: 0 15px; }

.header .logo a {
  font-size: 3rem;
  text-transform: capitalize;
  color: #fff;
  font-weight: 600; }

.header .nav-menu {
  padding: 0 15px; }

.header .menu > .menu-item {
  display: inline-block;
  margin-left: 30px;
  position: relative; }

.header .menu > .menu-item > a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease; }

.header .menu > .menu-item > a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none; }

.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after {
  content: '';
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: #fff;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease; }

.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after {
  background-color: #333; }

.header .menu > .menu-item > a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg); }

.header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
  color: #f97805; }

.header .menu > .menu-item:hover > a {
  color: #333; }

.header .menu > .menu-item > .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 220px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fffefe;
  padding: 10px 0;
  border-top: 3px solid #e91e63;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden; }

@media (min-width: 992px) {
  .header .menu > .menu-item-has-children:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible; }

  .header .menu > .menu-item-has-children:hover > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg); } }
.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block; }

.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  text-transform: capitalize;
  border-bottom: 1px solid #f97805; }

.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer; }

.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #fff;
  position: relative; }

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box; }

.header .open-nav-menu span:before {
  top: -7px; }

.header .open-nav-menu span:after {
  top: 7px; }

.header .close-nav-menu {
  height: 40px;
  width: 40px;
  background-color: #ffffff;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center; }

.header .close-nav-menu img {
  width: 16px; }

.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease; }

/*home section*/
.home-section {
  width: 100%;
  display: block;
  min-height: 100vh;
  background-image: url("../img/home.jpg");
  background-position: center top;
  background-size: cover; }

/* responsive */
@media (max-width: 991px) {
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1; }

  .header .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: #fffefe;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease; }

  .header .nav-menu.open {
    visibility: visible;
    right: 0px; }

  .header .menu > .menu-item {
    display: block;
    margin: 0; }

  .header .menu > .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center; }

  .header .menu > .menu-item > a {
    color: #333;
    padding: 12px 15px;
    border-bottom: 1px solid #333333; }

  .header .menu > .menu-item:first-child > a {
    border-top: 1px solid #333333; }

  .header .menu > .menu-item > a .plus:before,
  .header .menu > .menu-item > a .plus:after {
    background-color: #333; }

  .header .menu > .menu-item-has-children.active > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg); }

  .header .menu > .menu-item > .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden; }

  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 12px 45px;
    color: #333; }

  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex; }

  .header {
    padding: 0; }

  .header .logo a {
    font-size: 2rem; }

  .header .menu > .menu-item:hover > a {
    color: #f97805; } }
.footer {
  display: flex;
  flex-wrap: wrap; }

.footer-main {
  background-color: #24262b;
  padding: 70px 0;
  border-top: 4px solid #f97805; }

.footer-col {
  width: 25%;
  padding: 0 15px; }

.footer-col h4 {
  font-size: 18px;
  color: white;
  text-transform: capitalize;
  margin-bottom: 30px;
  font-weight: 500;
  position: relative; }

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #f97805;
  height: 2px;
  display: block;
  width: 50px; }

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  display: block;
  font-weight: 300;
  color: #bbb;
  display: block;
  transition: all 0.3s ease; }

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 8px; }

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 10px;
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease; }

.footer-col .social-links a:hover {
  color: #24262b;
  background: #fff; }

/* responsive */
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px; } }
@media (max-width: 574px) {
  .footer-col {
    width: 100%; } }
.intro-main {
  margin-top: 13rem;
  margin-bottom: 5rem; }

.intro-title {
  height: 7rem;
  display: flex;
  align-items: center;
  padding-left: 10rem; }

.intro {
  background-color: #333;
  color: white; }

@media (max-width: 700px) {
  .intro-title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; } }
.hero-main {
  width: 100%;
  margin: 0 auto;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/hero-image.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px;
  color: #fff;
  height: 700px;
  border: 20px solid blck;
  position: relative;
  margin-bottom: 5rem; }

.hidden {
  display: none; }

.hero {
  position: absolute;
  z-index: 50;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  text-align: center; }

.hero h3 {
  font-weight: 400;
  font-size: 30px;
  background-color: darkred;
  padding: 2rem;
  font-size: 2rem;
  width: 200px;
  border-radius: 50%;
  border: white 3px solid; }

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 5rem;
  text-align: left;
  margin-bottom: 3rem;
  margin-top: 2rem; }

input[type='submit'] {
  width: 100px;
  padding: 10px 20px;
  background-color: #da9248;
  color: black;
  cursor: pointer; }

input[type='submit']:hover {
  background-color: greenyellow;
  color: rgba(0, 80, 83, 0.8); }

.hero button {
  padding: 15px 25px;
  background-color: #f97805;
  color: white;
  cursor: pointer;
  border-radius: 8px; }

.hero button:hover {
  background-color: #da9248;
  color: white;
  z-index: 0; }

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: .4;
  z-index: 999;
  height: 100vh;
  width: 100%; }

.modal {
  position: absolute;
  border: 1px solid black;
  min-width: 400px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(67, 40, 23, 0.9);
  z-index: 1000;
  padding: 10px;
  color: white;
  border-radius: 10px; }

.input-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem; }

.modal .hide {
  display: none; }

.modal .error {
  margin-top: .4rem;
  background-color: #ccc;
  padding: .3rem;
  color: red;
  font-weight: 700;
  font-size: 1rem;
  font-style: italic; }

.modal .close {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 20px;
  background-color: darkred;
  color: white;
  cursor: pointer; }

.modal .close:hover {
  background-color: rgba(139, 0, 0, 0.5); }

.modal input {
  border-color: #ddd;
  font-size: 1.8rem; }

.cont {
  display: flex;
  flex-direction: column; }

.hero .new-service span {
  text-align: right;
  background-color: #4dff4d;
  display: inline-block;
  padding: 2rem;
  font-size: 2.5rem;
  border-radius: 50%;
  width: 15rem;
  text-align: center;
  border: darkred 5px solid;
  color: red;
  font-weight: 700;
  transform: rotate(30deg); }

@media (max-width: 700px) {
  .container {
    width: 100%; }

  .hero-main {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/hero-image-mobile.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px; }

  .hero {
    position: relative;
    top: 150px; }

  .hero .new span {
    background-color: #da9248;
    position: absolute;
    right: right;
    display: inline-block; }

  .hero h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 6rem; }

  .modal {
    max-width: 300px; }

  .input-group {
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 1rem; }

  .hero .new-service {
    text-align: right; }

  .modal {
    width: 100%; }

  .modal form {
    width: 95%;
    margin: 0 auto; }

  .modal input {
    width: 100%;
    margin: 0 auto; }

  .modal .input-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }

  .modal .close {
    margin-left: 30px; } }
.moto-main {
  margin-top: 5rem 0;
  background-color: #f3f3f3;
  padding: 5rem 0; }

.moto-detail {
  word-break: break-all; }

.moto-img {
  background-image: url("../img/train/abt.avif");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }

@media (max-width: 700px) {
  .moto-img {
    height: 300px; }

  .moto-detail h2 {
    text-align: center; } }
.notice-main {
  margin: 5rem 0;
  border-top: #f97805 4px solid;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url(../img/hero-image.jpg);
  height: 400px;
  background-size: cover;
  background-attachment: fixed; }

.notice-title {
  padding: 4rem  20rem  4rem;
  color: white;
  text-align: center;
  line-height: 1.8; }

.notice .col-1 {
  padding: 100px; }

@media (max-width: 700px) {
  .notice-title {
    padding: 3rem;
    color: white;
    text-align: center;
    line-height: 1.8; } }
.zoom-img {
  background-image: url(../img/zoom-register-2.jpg);
  background-repeat: no-repeat;
  border-radius: 2rem; }

.zoom-main {
  margin: 5rem 0;
  background-color: #fff3e6;
  padding: 5rem 0; }

.zoom-title {
  margin: 3rem 0; }

.zoom-detail li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center; }

.zoom-main .btn {
  background-color: #f97805;
  color: white;
  padding: 1rem;
  border: 0;
  margin-top: 2rem; }

.about-main {
  border: 2px solid black;
  background-color: #f3f3f3; }

.client-main {
  margin-top: 5rem; }

.slide-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto; }

.arrow {
  width: 2rem;
  margin: 0 1rem; }

.section-slide {
  width: 100%;
  /* height: 300px; */
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* border: 1px solid black; */ }

.section-slide::-webkit-scrollbar {
  height: 5px;
  width: 2px;
  border: 1px solid #d5d5d5;
  background: #d5d5d5; }

.section-slide::-webkit-scrollbar-track {
  --webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); }

.section-slide::-webkit-scrollbar-thumb {
  background-color: #f97805;
  outline: 1px solid #eee;
  /* border-radius: 100px; */ }

.section-slide .thumbnail {
  flex: 0 0 auto;
  object-fit: cover;
  cursor: pointer;
  margin: 5px;
  border: 1px solid var(--black);
  overflow: hidden;
  transform: scale(0.95);
  transition: all .3s; }

.section-slide .thumbnail:hover {
  transform: scale(1); }

.course-main {
  margin: 5rem 0;
  background-color: #f3f3f3;
  padding: 5rem 0; }

.course-con {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url("../img/train/con.avif");
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white; }

.course-mem {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url("../img/train/mm.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white; }

.course {
  margin-bottom: 5rem; }

.course-more {
  text-align: center; }

.course-more .btn {
  background-color: #f97805;
  color: white;
  padding: 1rem; }

.course-detail, .course-detail-mem {
  word-wrap: break-word;
  display: flex;
  justify-content: space-around;
  flex-direction: column; }

.btna {
  background-color: #333;
  color: white;
  padding: .5rem 1rem;
  border-radius: .3rem;
  display: inline;
  width: 200px;
  text-align: center;
  transition: all .3s; }

.btna:hover {
  background-color: #f97805; }

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px; }

.col-2-1 {
  grid-column: 1/7; }

.col-2-2 {
  grid-column: 7/13; }

.col {
  grid-column: 1/12; }

.course-mem {
  grid-column: 6/12;
  grid-row: 1/2; }

.course-detail-mem {
  grid-column: 1/6;
  grid-row: 1/2; }

@media (max-width: 700px) {
  .grid {
    display: block; }

  .col-2-2, .col-2-1 {
    margin-bottom: 4rem; }

  .col {
    margin-bottom: 4rem; } }
.courses {
  margin-bottom: 5rem; }

.courses-img-con {
  background-image: url(../img/train/con.avif);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  border-radius: 2rem; }

.courses-img-mem {
  background-image: url(../img/train/mm.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  border-radius: 2rem; }

.courses-img-cre {
  background-image: url(../img/train/cre.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  border-radius: 2rem; }

.courses-img-sat {
  background-image: url(../img/train/sat.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  border-radius: 2rem; }

.courses-img-typ {
  background-image: url(../img/train/typ.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  border-radius: 2rem; }

.courses-img-web {
  background-image: url(../img/train/web.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  border-radius: 2rem; }

.training-main {
  margin-bottom: 5rem; }

.training {
  padding: 0 10rem; }
  .training li {
    margin-bottom: 1rem; }

.training-title {
  padding: 0 10rem;
  margin-bottom: 2rem;
  text-transform: uppercase; }

.more-course {
  padding: 0 10rem;
  margin: 2rem 0; }

.heading-tertiery {
  text-transform: uppercase; }

@media (max-width: 700px) {
  .training, .training-title, .more-course {
    padding: 0;
    margin-left: 2rem; }

  .training li {
    word-break: break-all; } }
.contact-main {
  margin-bottom: 5rem; }

.contact {
  padding: 2rem; }

.contact li {
  line-height: 1.6; }

.frm {
  margin-top: 3rem;
  width: 400px; }

.contact input {
  padding: .3rem; }

.frm h3 {
  margin-bottom: 3rem; }

.frm textarea {
  height: 200px; }

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

.fa-square-check {
	margin-right: 1rem;
}

.fa-file-arrow-down:hover {
	color: darkgray;
}

.active-class {
  border-bottom: 2px solid black;
}

@media (max-width: 900px) {
  .active-class {
      background-color: #333;
      color: white !important;
  }
}