* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif !important;
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  background: #fff;
}

.whatsAppLink{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 90px;
    height: 90px;
    z-index: 50;
    animation: circleScale 2s infinite;
    animation-delay:1s;
}
@keyframes circleScale {
	0% {transform: scale(1)  }
	50% { transform: scale(1.2) }
  100% { transform: scale(1) }
}
.whatsAppLink img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.p-lr {
  padding-left: 140px;
  padding-right: 140px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-40 {
  margin-top: 40px;
}

.title {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 54px;
}

.small-title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

.all-Item-btn {
    border-radius: 8px;
    border: 1px solid #E20019;
    color: black;
    padding:8px 16px;
  display: flex;
  width: max-content;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

.social-medias {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-medias .social-media-item {
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #F5F5F5;
}
.header .header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .header-left a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .header-left a span {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.header .header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header .header-right .language-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .header-right .language-buttons .lang-btn {
  display: flex;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border-radius: 4px;
  background: #F5F5F5;
}
.header .header-right .language-buttons .current-lang {
  border: 1px solid #E20019;
  color: black;
  background: #fff;
}

.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .nav-logo {
  width: 180px;
  height: 65px;
}
.mobilMenu {
    position: fixed;
    top: 0%;
    right: -100%;
    z-index: 99999;
    padding: 50px 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items:center;
    justify-content: start;
    flex-direction: column;
    overflow-y: scroll;
    transition:.6s;
  }
.navbar .nav-logo img {
  /*width: 100%;*/
  height: 100%;
}
.navbar .navbar-menu {
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .navbar-menu .navlinks {
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .navbar-menu .navlinks .nav-dropDownLinkArea{
    position:relative;
    padding-top:35px;
    padding-bottom:35px;
}

.navbar .navbar-menu .navlinks .nav-dropDownLinkArea .dropDownLink{
    display:flex;
    align-items:center;
    gap:8px;
}
.navbar .navbar-menu .navlinks .nav-dropDownLinkArea .nav-subMenu{
    display:flex;
    flex-direction:column;
    z-index:15;
    position: absolute;
    top: 89.5px;
    visibility:hidden;
    opacity:0;
    transition:.6s;
    width:max-content;
    background:#fff;
    box-shadow:12px 12px 24px 0px rgba(0, 0, 0, 0.1);
}
.navbar .navbar-menu .navlinks .nav-dropDownLinkArea .nav-subMenu .subMenu-link{
    padding: 10px 15px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition:.6s;
}

.navbar .navbar-menu .navlinks .closeMenu-btn {
  display: none;
}
.navbar .navbar-menu .navlinks .closeMenu-btn i {
  font-size: 26px;
}
.navbar .navbar-menu .navlinks .nav-link {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px;
}
.navbar .navbar-menu .navlinks .current-navlink {
  color: #E20019;
}
.navbar .navbar-menu .applyBtn {
  display: inline-flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #000;
  color: #F5F5F5;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  transition: 0.4s ease;
}
.navbar .navbar-menu .applyBtn:hover {
  background: #1E1E1E;
}
.navbar .navbar-menu .language-buttons {
  display: none;
  align-items: center;
  gap: 12px;
}
.navbar .navbar-menu .language-buttons .lang-btn {
  display: flex;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border-radius: 4px;
  background: #F5F5F5;
}
.navbar .navbar-menu .language-buttons .current-lang {
  border: 1px solid #E20019;
  color: #E20019;
  background: #fff;
}
.navbar .hamburger-btn {
  display: none;
  width:40px;
  height:40px;
}
.navbar .hamburger-btn svg {
  width:100%;
  height:100%;
}

.home-hero-Slide {
  width: 100%;
  height: 700px;
}
.home-hero-Slide .home-hero-item {
  position: relative;
  width: 100%;
}
.home-hero-Slide .home-hero-item .home-hero-img {
  width: 100%;
  height: 100%;
}
.home-hero-Slide .home-hero-item .home-hero-img img {
  width: 100%;
  height: 100%;
}
.home-hero-Slide .home-hero-item .home-hero-text-area {
  position: absolute;
  top: 50%;
  left: 0;
  max-width: 63%;
  transform: translate(0, -50%);
}
.home-hero-Slide .home-hero-item .home-hero-text-area .title {
  color: #fff;
}
.home-hero-Slide .home-hero-item .home-hero-text-area p {
  margin-top: 20px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.home-hero-Slide .swiper-pagination {
  bottom: 40px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-hero-Slide .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 6px;
  height: 6px;
}
.home-hero-Slide .swiper-pagination .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
}

.service-section {
  padding-right: 0 !important;
  width: 100%;
}
.service-Slide-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-right:140px;
}
.training-Slide-top{
     display:flex;
    align-items:center;
    justify-content:space-between;
    padding-right:140px;
}
.news-Slide-top{
     display:flex;
    align-items:center;
    justify-content:space-between;
    padding-right:140px;
}
.training-section {
  padding-right: 0 !important;
  width: 100%;
}
.news-section {
  padding-right: 0 !important;
  width: 100%;
}

.slide-item {
  width: 100%;
}
.slide-item .swiper-wrapper {
  padding-top: 68px;
}
.slide-item .swiper-button-next {
  width: 40px;
  top: 90px;
  right: 135px;
}
.slide-item .swiper-button-next::after {
  content: none;
  display: none;
}
.slide-item .swiper-button-prev {
  width: 40px;
  left: auto;
  top: 90px;
  right: 175px;
}
.slide-item .swiper-button-prev::after {
  content: none;
  display: none;
}
.slide-item .swiper-button-prev svg {
  transform: rotate(180deg);
}

.card-item {
  border-radius: 8px;
  background: #F5F5F5;
}
.card-item .card-img {
  display: block;
  width: 100%;
  height: 250px;
  border-radius: 8px 8px 0 0;
}
.card-item .card-img img {
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: 100%;
}
.card-item .card-body {
    min-height: 182px;
    display: flex;
    padding: 20px 16px;
    flex-direction: column;
    justify-content: space-between;
}
.card-item .card-body .date p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding-bottom: 12px;
}
.card-item .card-body .date {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding-bottom: 12px;
}
.card-item .card-body .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}
/*.card-desc{*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*    -webkit-line-clamp: 2;*/
/*    -webkit-box-orient: block-axis;*/
/*    display: -webkit-box;*/
/*    height: 52px;*/
/*}*/
.card-item .card-body .card-desc p {
  margin-top: 12px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.card-item .card-body .readMore {
  display: block;
  margin-top: 28px;
  width: 100%;
  padding: 8px 16px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #E20019;
  color: black;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.about-section {
  position: relative;
  width: 100%;
  height: 600px;
}
.about-section .about-section-img {
  width: 100%;
  height: 100%;
}
.about-section .about-section-img img {
  width: 100%;
  height: 100%;
}
.about-section .about-section-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-section .about-section-content .title, .about-section .about-section-content p {
  color: #fff;
  text-align: center;
}
.about-section .about-section-content p {
  margin-top: 20px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.about-section .about-section-content .learn-more {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 32px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  color: #fff;
  margin-top: 60px;
  border: 1px solid #FFF;
}

.news-section {
  width: 100%;
}
.news-section .news-items {
  width: 100%;
}
.news-section .news-items .card-item .card-img {
  height: 260px;
}
.news-section .news-items .card-item .readMore {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  color:black;
}

.contact-section .title {
  text-align: center;
}
.contact-section .letsCall {
  margin-top: 16px;
  text-align: center;
}
.contact-section .contact-section-mainArea {
  position: relative;
  width: 100%;
}
.contact-section .contact-section-mainArea .map {
  width: 100%;
  height: 800px;
}
.contact-section .contact-section-mainArea .map iframe {
  width: 100%;
  height: 100%;
}
.contact-section .contact-section-mainArea .contact-box {
  max-width: 510px;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 140px;
  background: #fff;
  padding: 40px;
  z-index: 50;
  border-radius: 8px;
  border: 1px solid #F5F5F5;
  box-shadow: 12px 12px 24px 0px rgba(0, 0, 0, 0.05);
}
.contact-section .contact-section-mainArea .contact-box .contact-box-title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.contact-section .contact-section-mainArea .contact-box .contact-box-details {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}
.contact-section .contact-section-mainArea .contact-box .contact-box-details a {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  gap: 8px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.contact-section .contact-section-mainArea .contact-box .contact-box-form {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #d9d9d9;
}
.contact-section .contact-section-mainArea .contact-box .contact-box-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.contact-section .contact-section-mainArea .contact-box .contact-box-form form input, .contact-section .contact-section-mainArea .contact-box .contact-box-form form textarea {
  width: 100%;
  border-radius: 8px;
  background: #F5F5F5;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 14px 20px 14px 16px;
  border: none;
  outline: none;
}
.contact-section .contact-section-mainArea .contact-box .contact-box-form form .sendForm {
  margin-top: 20px;
  width: 100%;
  background: #000;
  border-radius: 8px;
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #F5F5F5;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.partners-section {
  width: 100%;
}
.partners-section .partners {
  width: 100%;
}
.partners-section .partners .swiper-wrapper {
  align-items: center;
}
.partners-section .partners .swiper-wrapper .partner-item {
  max-height: 120px;
}
.partners-section .partners .swiper-wrapper .partner-item img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.footer {
  padding-top: 60px;
  background: #F5F5F5;
}
.footer .footer-main {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.footer .footer-main .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer .footer-main .footer-contact .footerlogo {
  width: 180px;
  height: 65px;
}
.footer .footer-main .footer-contact .footerlogo img {
  /*width: 100%;*/
  height: 100%;
}
.footer .footer-main .footer-contact .footer-contact-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-main .footer-contact .footer-contact-box a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.footer .footer-main .footer-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer .footer-main .footer-links a {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.footer .footer-socials {
  display: flex;
  justify-content: end;
  width: 100%;
  padding-bottom: 20px;
}
    .footer .footer-socials .social-medias {
        gap: 0;
  }
  .footer .footer-socials .social-medias .social-media-item{
      width:32px;
      height:32px;
      padding:6px;
  }
  .footer .footer-socials .social-medias .social-media-item img{
      width:100%;
      height:100%;
  }
.footer .footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #d9d9d9;
}
.footer .footer-bottom p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.all-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.all-trainings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.all-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.banner-area {
  position: relative;
  width: 100%;
}
.banner-area .banner-img {
  width: 100%;
  height: 600px;
}
.banner-area .banner-img img {
  width: 100%;
  height: 100%;
}
.banner-area .title {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.textArea {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.textArea p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.textArea .small-title {
  margin-top: 18px;
}
.textArea ul {
  padding-left: 15px;
}

.page-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.page-pagination .pages {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-pagination .pages .page-item, .page-pagination .pages p {
  width: 44px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 4px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
.page-pagination .pages .activePage {
  border: 1px solid #E20019;
  color: #E20019;
}
.page-pagination .prevBtn, .page-pagination .nextBtn {
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #F5F5F5;
}

.about-main-text .about-title {
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
.about-main-text p {
  margin-top: 20px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.why-choose-us-section .why-choose-us-title {
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
.why-choose-us-section .why-choose-us-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-choose-us-section .why-choose-us-boxes .choose-us-box {
  position: relative;
  padding: 40px 20px;
  background: #F5F5F5;
}
.why-choose-us-section .why-choose-us-boxes .choose-us-box .box-count {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #E20019;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.why-choose-us-section .why-choose-us-boxes .choose-us-box .choose-us-box-title {
  max-width: 90%;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.why-choose-us-section .why-choose-us-boxes .choose-us-box .choose-us-box-desc {
  margin-top: 12px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}

.our-staff-section .staff-title {
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
.our-staff-section .all-staff {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.our-staff-section .all-staff .staff-member-card {
  align-items: center;
  border-radius: 8px;
  background: #F5F5F5;
}
.our-staff-section .all-staff .staff-member-card .staff-member-card-img {
  height: 240px;
}
.our-staff-section .all-staff .staff-member-card .staff-member-card-img img {
  width: 100%;
  height: 240px;
}
.our-staff-section .all-staff .staff-member-card .staff-member-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.our-staff-section .all-staff .staff-member-card .staff-member-card-body .staff-member-card-name {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.our-staff-section .all-staff .staff-member-card .staff-member-card-body .staff-member-card-position {
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.staff-inside-area {
  width: 100%;
}
.staff-inside-area .member-details {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
.staff-inside-area .member-details .about-of-member .member-fullName {
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
.staff-inside-area .member-details .about-of-member .member-position {
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.staff-inside-area .member-details .about-of-member .about-of-member-text {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.staff-inside-area .member-details .about-of-member .about-of-member-text p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.staff-inside-area .member-details .about-of-member .member-study-area {
  margin-top: 40px;
}
.staff-inside-area .member-details .about-of-member .member-study-area .member-study-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.staff-inside-area .member-details .about-of-member .member-study-area p {
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.staff-inside-area .member-details .member-img {
  width: 468px;
  height: 484px;
  border-radius: 8px;
  background: #D9D9D9;
}
.staff-inside-area .member-details .member-img img {
  width: 468px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.staff-inside-area .member-work-experince-area .work-experince-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.staff-inside-area .member-work-experince-area .work-experince {
  margin-top: 16px;
  padding-left: 25px;
    line-height: 32px;
}
.staff-inside-area .member-work-experince-area .work-experince li {
  padding-bottom: 10px;
}
.staff-inside-area .member-work-experince-area .work-experince li p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.contact-area {
  display: flex;
  align-items: start;
  gap: 40px;
  padding-right: 0 !important;
}
.contact-area .contact-area-detail {
  max-width: 510px;
  width: 100%;
}
.contact-area .contact-area-detail .title {
  text-align: start;
}
.contact-area .contact-area-detail .letsCall {
  margin-top: 16px;
  text-align: start;
}
.contact-area .contact-area-detail .contact-box {
  margin-top: 40px;
  width: 100%;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #F5F5F5;
  background: #FFF;
  box-shadow: 12px 12px 24px 0px rgba(0, 0, 0, 0.05);
}
.contact-area .contact-area-detail .contact-box .contact-box-title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.contact-area .contact-area-detail .contact-box .contact-box-details {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}
.contact-area .contact-area-detail .contact-box .contact-box-details a {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.contact-area .contact-area-detail .contact-box .contact-box-form {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #d9d9d9;
}
.contact-area .contact-area-detail .contact-box .contact-box-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.contact-area .contact-area-detail .contact-box .contact-box-form form input, .contact-area .contact-area-detail .contact-box .contact-box-form form textarea {
  width: 100%;
  border-radius: 8px;
  background: #F5F5F5;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 14px 20px 14px 16px;
  border: none;
  outline: none;
}
.contact-area .contact-area-detail .contact-box .contact-box-form form .sendForm {
  margin-top: 20px;
  width: 100%;
  background: #000;
  border-radius: 8px;
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #F5F5F5;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.contact-area .map {
  width: 100%;
  height: 890px;
}
.contact-area .map iframe {
  width: 100%;
  height: 100%;
}

.news-inside-Slider {
  width: 100%;
  padding-bottom: 50px !important;
}
.news-inside-Slider .news-inside-img {
  width: 100%;
  height: 540px;
  border-radius: 8px;
}
.news-inside-Slider .news-inside-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.news-inside-Slider .swiper-pagination {
  width: -moz-max-content !important;
  width: max-content !important;
  bottom: 20px !important;
  display: flex;
  align-items: center;
  left: 48% !important;
}
.news-inside-Slider .swiper-pagination .swiper-pagination-bullet {
  background: #000;
  opacity: 1;
  width: 6px;
  height: 6px;
}
.news-inside-Slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #000;
  opacity: 1;
  width: 12px;
  height: 12px;
}
.news-inside-Slider .swiper-button-next {
  top: initial;
  right: 0 !important;
  bottom: 0 !important;
}
.news-inside-Slider .swiper-button-next::after {
  display: none;
}
.news-inside-Slider .swiper-button-prev {
  top: initial;
  left: initial;
  right: 50px !important;
  bottom: 0 !important;
  transform: rotate(180deg);
}
.news-inside-Slider .swiper-button-prev::after {
  display: none;
}

.news-name {
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}

.news-textarea {
  margin-top: 20px;
}
.news-textarea p {
  padding-bottom: 15px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.share-area p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.share-area .share-links {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.share-area .share-links .share-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #F5F5F5;
}

.otherNews-section {
  padding-right: 0 !important;
  width: 100%;
}
.otherNews-section .otherNews-Slide .swiper-button-next, .otherNews-section .otherNews-Slide .swiper-button-prev {
  top: 30px;
}

@media only screen and (min-width: 1700px) {
  .all-news {
    grid-template-columns: repeat(4, 1fr);
  }
  .all-trainings {
    grid-template-columns: repeat(4, 1fr);
  }
  .all-services {
    grid-template-columns: repeat(4, 1fr);
  }
  .banner-area .banner-img {
    height: 700px;
  }
}
@media only screen and (min-width: 1900px) {
  .banner-area .banner-img {
    height: 800px;
  }
}
@media only screen and (min-width: 1500px) {
  .our-staff-section .all-staff {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 60px;
    padding-right: 60px;
  }
  .mt-120 {
    margin-top: 100px;
  }
  .mt-48 {
    margin-top: 36px;
  }
  .all-Item-btn {
    font-size: 16px;
    line-height: 26px;
  }
  .title {
    font-size: 36px;
    line-height: 48px;
  }
  .home-hero-Slide {
    height: 600px;
  }
  .slide-item .swiper-wrapper {
    padding-top: 56px;
  }
  .slide-item .swiper-button-next {
    width: 35px;
    top: 76px;
    right: 60px;
  }
  .slide-item .swiper-button-prev {
    width: 35px;
    top: 76px;
    right: 106px;
  }
  .service-Slide-top{
    padding-right:60px;
}
.training-Slide-top{
    padding-right:60px;
}
.news-Slide-top{
    padding-right:60px;
}
  .contact-section .letsCall {
    margin-top: 10px;
  }
  .contact-section .contact-section-mainArea .map {
    width: 100%;
    height: 700px;
  }
  .contact-section .contact-section-mainArea .contact-box {
    max-width: 350px;
    width: 100%;
    left: 60px;
    padding: 30px;
  }
  .contact-section .contact-section-mainArea .contact-box .contact-box-title {
    font-size: 18px;
    line-height: 20px;
  }
  .contact-section .contact-section-mainArea .contact-box .contact-box-details {
    margin-top: 20px;
    gap: 10px;
  }
  .contact-section .contact-section-mainArea .contact-box .contact-box-details a {
    gap: 5px;
    font-size: 14px;
    line-height: 16px;
  }
  .contact-section .contact-section-mainArea .contact-box .contact-box-form {
    margin-top: 30px;
    padding-top: 30px;
  }
  .contact-section .contact-section-mainArea .contact-box .contact-box-form form {
    gap: 10px;
  }
  .contact-section .contact-section-mainArea .contact-box .contact-box-form form input, .contact-section .contact-section-mainArea .contact-box .contact-box-form form textarea {
    font-size: 14px;
    line-height: 20px;
    padding: 12px 18px 12px 14px;
  }
  .contact-section .contact-section-mainArea .contact-box .contact-box-form form .sendForm {
    margin-top: 15px;
    padding: 10px 28px;
    font-size: 14px;
    line-height: 20px;
  }
  .footer {
    padding-top: 40px;
  }
  .footer .footer-main .footer-links {
    gap: 15px;
  }
  .banner-area .banner-img {
    height: 500px;
  }
  .our-staff-section .all-staff {
    grid-template-columns: repeat(3, 1fr);
  }
  .staff-inside-area .member-details {
    gap: 30px;
  }
  .staff-inside-area .member-details .about-of-member .member-fullName {
    font-size: 24px;
    line-height: 36px;
  }
  .staff-inside-area .member-details .about-of-member .member-position {
    margin-top: 10px;
    font-size: 12px;
    line-height: 18px;
  }
  .staff-inside-area .member-details .about-of-member .about-of-member-text {
    margin-top: 15px;
    gap: 15px;
  }
  .staff-inside-area .member-details .about-of-member .about-of-member-text p {
    font-size: 12px;
    line-height: 18px;
  }
  .staff-inside-area .member-details .about-of-member .member-study-area {
    margin-top: 30px;
  }
  .staff-inside-area .member-details .about-of-member .member-study-area .member-study-title {
    font-size: 16px;
    line-height: 24px;
  }
  .staff-inside-area .member-details .about-of-member .member-study-area p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 18px;
  }
  .staff-inside-area .member-details .member-img {
    width: 408px;
    height: 424px;
  }
  .staff-inside-area .member-details .member-img img {
    width: 408px;
  }
  .staff-inside-area .member-work-experince-area .work-experince-title {
    font-size: 16px;
    line-height: 24px;
  }
  .staff-inside-area .member-work-experince-area .work-experince {
    margin-top: 12px;
      line-height: 32px;
  }
  .staff-inside-area .member-work-experince-area .work-experince li {
    padding-bottom: 5px;
  }
  .staff-inside-area .member-work-experince-area .work-experince li p {
    font-size: 12px;
    line-height: 18px;
  }
  .contact-area .contact-area-detail {
    max-width: 400px;
  }
  .contact-area .contact-area-detail .letsCall {
    margin-top: 10px;
  }
  .contact-area .contact-area-detail .contact-box {
    width: 100%;
    padding: 30px;
  }
  .contact-area .contact-area-detail .contact-box .contact-box-title {
    font-size: 18px;
    line-height: 20px;
  }
  .contact-area .contact-area-detail .contact-box .contact-box-details {
    margin-top: 20px;
    gap: 10px;
  }
  .contact-area .contact-area-detail .contact-box .contact-box-details a {
    gap: 5px;
    font-size: 14px;
    line-height: 16px;
  }
  .contact-area .contact-area-detail .contact-box .contact-box-form {
    margin-top: 30px;
    padding-top: 30px;
  }
  .contact-area .contact-area-detail .contact-box .contact-box-form form {
    gap: 10px;
  }
  .contact-area .contact-area-detail .contact-box .contact-box-form form input, .contact-area .contact-area-detail .contact-box .contact-box-form form textarea {
    font-size: 14px;
    line-height: 20px;
    padding: 12px 18px 12px 14px;
  }
  .contact-area .contact-area-detail .contact-box .contact-box-form form .sendForm {
    margin-top: 15px;
    padding: 10px 28px;
    font-size: 14px;
    line-height: 20px;
  }
  .contact-area .map {
    width: 100%;
    height: 700px;
  }
  .otherNews-section .otherNews-Slide .swiper-button-next, .otherNews-section .otherNews-Slide .swiper-button-prev {
    top: 25px;
  }
}
@media only screen and (min-width: 1024px){
    .navbar .navbar-menu .navlinks .nav-dropDownLinkArea:hover .nav-subMenu{
    visibility:visible;
    opacity:1;
    transition:.6s;

}
    .navbar .navbar-menu .navlinks .nav-dropDownLinkArea .nav-subMenu .subMenu-link:hover{
    color: #fff;
    background:#000;
}
}

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

  .nav-area .header {
    display: none;
  }
  .nav-area .navbar {
    padding-top:24px;
    padding-bottom:24px;
  }

  .nav-area .navbar .navbar-menu {
    display: none;
  }
  .nav-area .navbar .hamburger-btn {
    display: block;
  }
  .navbar .navbar-menu .navlinks .nav-dropDownLinkArea {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0px;
        padding:0;
  }
  .navbar .navbar-menu .navlinks .nav-dropDownLinkArea .dropDownLink{
      gap:20px
  }
  .navbar .navbar-menu .navlinks .nav-dropDownLinkArea .nav-subMenu{
        display:none;
        position: relative;
        visibility: visible;
        opacity: 1;
        top: initial;
        box-shadow: none;
  }
  .navbar .navbar-menu .navlinks .nav-dropDownLinkArea .showSubMenu{
      display:flex !important;
      align-items: center;
  }


  .mobilMenu .header {
      margin-top: 20px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    background: #fff;
    justify-content: start;
    gap: 10px;
    border:none;
  }
  .mobilMenu .header .header-right {
     gap:15px;
    flex-direction: column;
    align-items: center;
    width:100%;
  }
  .mobilMenu .header .header-right .social-medias {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 12px;
}
  .mobilMenu .header .header-left {
    flex-direction: column;
    align-items: center;
    gap:15px;
  }
 .mobilMenu .nav-logo {
    position: relative;
    width: 230px;
    height: 65px;
}
 .mobilMenu .nav-logo img {
    width: 100%;
    height: 100%;
}
.mobilMenu .navlinks .nav-dropDownLinkArea {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
}
.mobilMenu .navlinks .nav-dropDownLinkArea  .dropDownLink {
    display: flex;
    align-items: center;
    gap: 20px;
}
.mobilMenu .navlinks .nav-dropDownLinkArea  .dropDownLink i{
    display:none;
}
.mobilMenu .navlinks .nav-dropDownLinkArea .nav-subMenu{
    display: none;
    flex-direction: column;
    align-items: center;
}
.mobilMenu .navlinks .nav-dropDownLinkArea .showSubMenu{
    gap: 10px;
    text-align: center;
    display: flex;
}
.mobilMenu .navlinks .nav-dropDownLinkArea .subMenu-link {
    padding: 5px 15px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: .6s;
}

  .mobilMenu .navlinks {
      display:flex;
      align-items: center;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
  }
    .mobilMenu .nav-link {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
  }
  .mobilMenu .closeMenu-btn {
    display: block;
    position: absolute;
    top: 30px;
    right: 20px;
  }
  .mobilMenu .applyBtn {
      margin-top:15px;
    display: inline-flex;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #000;
    color: #F5F5F5;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: 0.4s ease;
    }

  .footer .footer-main {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
  }
  .footer .footer-main .footer-contact .footer-contact-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer .footer-main .footer-links {
    gap: 0;
    width: 100%;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 992px) {
  .all-services {
    grid-template-columns: repeat(2, 1fr);
  }
  .all-trainings {
    grid-template-columns: repeat(2, 1fr);
  }
  .all-news {
    grid-template-columns: repeat(2, 1fr);
  }
  .our-staff-section .all-staff {
    grid-template-columns: repeat(2, 1fr);
  }
  .staff-inside-area .member-details .member-img {
    width: 348px;
    height: 364px;
  }
  .staff-inside-area .member-details .member-img img {
    width: 348px;
  }
  .staff-inside-area .member-work-experince-area {
    margin-top: 10px;
  }
  .news-inside-Slider .news-inside-img {
    height: 440px;
  }
  .news-name {
    font-size: 24px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .p-lr {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mt-120 {
    margin-top: 60px;
  }
  .mt-48 {
    margin-top: 24px;
  }
  .title {
    font-size: 24px;
    line-height: 32px;
  }
  .whatsAppLink{
    width: 50px;
    height: 50px;
}
  .home-hero-Slide {
    height: 500px;
  }
  .home-hero-Slide .home-hero-text-area {
    max-width: 80% !important;
  }
  .home-hero-Slide .home-hero-text-area p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .all-Item-btn {
    font-size: 14px;
    line-height: 24px;
  }
  .about-section .about-section-content {
    width: 75%;
  }
  .about-section .about-section-content p {
    margin-top: 20px;
  }
  .about-section .about-section-content .learn-more {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    padding: 12px 32px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border-radius: 8px;
    color: #fff;
    margin-top: 60px;
    border: 1px solid #FFF;
  }
  .slide-item .swiper-wrapper {
    padding-top: 44px;
  }
  .slide-item .swiper-button-next {
    width: 30px;
    top: 65px;
    right: 20px;
  }
    .service-Slide-top{
    padding-right:20px;
}
.training-Slide-top{
    padding-right:20px;
}
.news-Slide-top{
    padding-right:20px;
}
  .slide-item .swiper-button-prev {
    width: 30px;
    top: 65px;
    right: 66px;
  }
  .card-item .card-body .card-title {
    font-size: 16px;
    line-height: 24px;
  }
  .card-item .card-body .card-desc {
    margin-top: 8px;
    font-size: 12px;
    line-height: 18px;
  }
  .card-item .card-body .readMore {
    margin-top: 20px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 20px;
  }
  .contact-section .contact-section-mainArea {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .contact-section .contact-section-mainArea .map {
    width: 100%;
    height: 300px;
  }
  .contact-section .contact-section-mainArea .contact-box {
    position: initial;
    max-width: 100%;
    width: 100%;
    padding: 20px;
    top: 0;
    left: 0;
    transform: translate(0);
  }
  .contact-section .contact-section-mainArea .contact-box .contact-box-title {
    font-size: 18px;
    line-height: 20px;
  }
  .contact-section .contact-section-mainArea .contact-box .contact-box-details {
    margin-top: 15px;
    gap: 10px;
  }
  .contact-section .contact-section-mainArea .contact-box .contact-box-form {
    margin-top: 30px;
    padding-top: 30px;
  }
  .contact-section .contact-section-mainArea .contact-box .contact-box-form form {
    gap: 10px;
  }
  .contact-section .contact-section-mainArea .contact-box .contact-box-form form input, .contact-section .contact-section-mainArea .contact-box .contact-box-form form textarea {
    font-size: 14px;
    line-height: 20px;
    padding: 12px 18px 12px 14px;
  }
  .contact-section .contact-section-mainArea .contact-box .contact-box-form form .sendForm {
    margin-top: 15px;
    padding: 10px 28px;
    font-size: 14px;
    line-height: 20px;
  }
  .footer {
    padding-top: 30px;
  }
  .footer .footer-main .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer .footer-main .footer-contact .footer-contact-box {
    gap: 10px;
  }
  .footer .footer-main .footer-contact .footer-contact-box a {
    gap: 5px;
    font-size: 14px;
    line-height: 18px;
  }
  .footer .footer-main .footer-links {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 15px;
  }
  .footer .footer-main .footer-links a {
    font-size: 16px;
    line-height: 24px;
  }
  .footer .footer-socials {
          margin-top: 20px;
    justify-content: center;
    padding-bottom: 0;
  }

  .footer .footer-bottom {
    padding: 15px 0;
  }
  .banner-area .banner-img {
    height: 400px;
  }
  .about-main-text .about-title {
    font-size: 24px;
    line-height: 32px;
  }
  .about-main-text p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 18px;
  }
  .why-choose-us-section .why-choose-us-boxes {
    grid-template-columns: repeat(1, 1fr);
  }
  .why-choose-us-section .why-choose-us-boxes .choose-us-box {
    padding: 20px 10px;
  }
  .why-choose-us-section .why-choose-us-boxes .choose-us-box .box-count {
    top: 10px;
    right: 10px;
    font-size: 24px;
    line-height: 36px;
  }
  .why-choose-us-section .why-choose-us-boxes .choose-us-box .choose-us-box-title {
    font-size: 16px;
    line-height: 22px;
  }
  .why-choose-us-section .why-choose-us-boxes .choose-us-box .choose-us-box-desc {
    margin-top: 8px;
    font-size: 12px;
    line-height: 18px;
  }
  .our-staff-section .all-staff .staff-member-card .staff-member-card-img {
    height: 200px;
  }
  .staff-inside-area .member-details {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    justify-content: start;
  }
  .staff-inside-area .member-details .about-of-member .member-fullName {
    font-size: 20px;
    line-height: 32px;
  }
  .staff-inside-area .member-details .about-of-member .member-study-area {
    margin-top: 20px;
  }
  .staff-inside-area .member-details .member-img {
    width: 100%;
    height: 484px;
  }
  .staff-inside-area .member-details .member-img img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
  }
  .contact-area {
    flex-direction: column;
    gap: 20px;
    padding-right: 20px !important;
  }
  .contact-area .contact-area-detail {
    max-width: 100%;
  }
  .contact-area .contact-area-detail .contact-box {
    max-width: 100%;
    width: 100%;
    padding: 20px;
  }
  .contact-area .contact-area-detail .contact-box .contact-box-title {
    font-size: 18px;
    line-height: 20px;
  }
  .contact-area .contact-area-detail .contact-box .contact-box-details {
    margin-top: 15px;
    gap: 10px;
  }
  .contact-area .contact-area-detail .contact-box .contact-box-form {
    margin-top: 30px;
    padding-top: 30px;
  }
  .contact-area .contact-area-detail .contact-box .contact-box-form form {
    gap: 10px;
  }
  .contact-area .contact-area-detail .contact-box .contact-box-form form input, .contact-area .contact-area-detail .contact-box .contact-box-form form textarea {
    font-size: 14px;
    line-height: 20px;
    padding: 12px 18px 12px 14px;
  }
  .contact-area .contact-area-detail .contact-box .contact-box-form form .sendForm {
    margin-top: 15px;
    padding: 10px 28px;
    font-size: 14px;
    line-height: 20px;
  }
  .contact-area .map {
    width: 100%;
    height: 300px;
  }
  .news-inside-Slider .news-inside-img {
    height: 400px;
  }
  .news-textarea p {
    font-size: 14px;
    line-height: 18px;
  }
  .otherNews-section .otherNews-Slide .swiper-button-next, .otherNews-section .otherNews-Slide .swiper-button-prev {
    top: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .home-hero-Slide {
    height: 400px;
  }

  .home-hero-Slide .home-hero-text-area {
    max-width: 100% !important;
  }
  .home-hero-Slide .home-hero-text-area p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 28px;
  }
  .all-services {
    grid-template-columns: repeat(1, 1fr);
  }
  .all-trainings {
    grid-template-columns: repeat(1, 1fr);
  }
  .all-news {
    grid-template-columns: repeat(1, 1fr);
  }
  .banner-area .banner-img {
    height: 300px;
  }
  .page-pagination {
    gap: 15px;
  }
  .page-pagination .pages {
    gap: 6px;
  }
  .page-pagination .pages .page-item, .page-pagination .pages p {
    width: 42px;
    height: 40px;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 18px;
  }
  .our-staff-section .all-staff {
    grid-template-columns: repeat(1, 1fr);
  }
  .our-staff-section .staff-member-card .staff-member-card-img {
    height: 260px !important;
  }
  .news-inside-Slider .news-inside-img {
    height: 280px;
  }
  .news-name {
    font-size: 20px;
    line-height: 24px;
  }
}/*# sourceMappingURL=style.css.map */
