/* Font-Family */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');


html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth !important;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  position: relative;
}

/* h1,h2,h3,h4,h5,h6{
  font-family: "roboto" !important;
} */
:root {
  --primary-color: #C80F2E;
  --secondary-color: #012269;
  --info-color: #FD2E35;
  --text-black: #000000;
  --text-dark: #121113;
  --text-grey: #74757B;
}

/* colors */
main {
  z-index: 0;
  position: relative;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-black {
  color: var(--text-black) !important;
}

.text-info {
  color: var(--info-color) !important;
}

.text-grey {
  color: var(--text-grey);
}

.text-dark {
  color: var(--text-dark) !important;
}

.bg-light {
  background-color: rgba(1, 34, 105, .1) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}


/* Anchor */
a {
  text-decoration: none;

}

a.mail-anchor {
  word-break: break-all;
}

/* Font-weight */
.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

/* Tyopgraphy */

.h1 {
  font-size: 62px;
}

.h2 {
  font-size: 48px;
}

.h3 {
  font-size: 32px;
}

.h4 {
  font-size: 30px;
}

.h5 {
  font-size: 24px;
}

.h6 {
  font-size: 18px;
}


.fs-18 {
  font-size: 18px;
}


.fs-20 {
  font-size: 20px;
}


.fs-16 {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px;
}

/* Spacing */
.section {
  padding: 100px 0;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-50 {
  padding-top: 50px;
}

/* Extra-css */
.rounded-lg {
  border-radius: 29px !important;
}

.z-99 {
  z-index: 99;
}

/* Button-css */
.primary_btn,
.readmore_btn {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: 0.2s ease-in;
}

.primary_btn:hover {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.primary_btn-large {
  padding: 12px 30px !important;
  font-size: 16px !important;
}

.readmore_btn {
  border-radius: 5px;
}

.readmore_btn svg {
  fill: white
}

.readmore_btn:hover svg {
  fill: var(--primary-color);
}

.readmore_btn:hover {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

/* Header-css */
header {
  position: absolute;
  left: 0;
  right: 0;
  transition: 0.3s;
  z-index: 1;
}

.header-fixed .header_bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  animation: slideDown 0.3s ease forwards;
  z-index: 999;
}

.header-fixed .header_bg {
  border-radius: 0 !important;
  width: 100%;
  transition: 0.3s;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.top-header {
  padding-top: 30px;
}

.header_bg {
  padding: 20px 25px;
  border-radius: 15px;
}

.social-media li svg {
  fill: white;
}

/* Navbar-css */
.main_navigation {
  gap: 2rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  list-style: none;
  padding: 20px;
  margin: 0;
  display: none;
  box-shadow: 0px 8px 15px rgb(165 165 165 / 20%);
  border: 1px solid #f1f1f1;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: var(--primary-color);
  background-color: transparent;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}


.main_navigation .nav-link {
  font-weight: 500;
  color: var(--text-black) !important;
}

.main_navigation .nav-link.active,
.main_navigation .nav-link.show,
.main_navigation .nav-link:hover {
  color: var(--primary-color) !important;
}

.main_navigation .nav-link.active svg {
  fill: var(--primary-color);
}

.main_navigation .nav-link svg {
  fill: #A6A7AB;
}

.main_navigation .nav-link:hover svg {
  fill: var(--primary-color) !important;
}


@media screen and (min-width: 769px) {
  .dropend:hover>.dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }

  .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }
}


/* hero-section-css */
.hero_section {
  background-image: url(../img/banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 300px 0 180px 0;
  min-height: 810px;
}

.course-hero-section {
  padding: 250px 0 50px 0;
  min-height: 550px;
  background: var(--secondary-color);
}


.illust-icon-box {
  width: 370px;
  height: 300px;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: .15;
}

.illust-icon-box img {
    width: 100%;
    height: 100%;
}

.about_banner {
  background-image: url(../img/about-banner.png);
}

.testimonials_banner {
  background-image: url(../img/testimonial-banner.png);
}

.contact_banner {
  background-image: url(../img/contact-bg.png);
}

.testimonial-body {
  background-image: url(../img/testimonial-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  padding: 150px 0;
  background-position: 75% 450px;
}

.heading {
  color: white;
  font-size: 60px;
  position: relative;
  padding-bottom: 10px;
  font-weight: bold;
  width: fit-content;
}

.heading::after {
  position: absolute;
  content: '';
  height: 4px;
  width: 100%;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.sub-heading {
  color: white;
  font-size: 30px;
  font-weight: 500;
  padding: 20px 0;
  line-height: 36px;
}

/* About-us-css */

.about-us,
.about_section {
  position: relative !important;
  z-index: 99;
}

.about-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-black);
}

.about-subheading {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-black);
}

/* Service-css */

.service_img img {
  border-radius: 10px 10px 0 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.service-icon>img {
  object-fit: contain;
}

.about_service_section .service_img img {
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.service-icon img {
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

.service-card-bottom {
  background-color: var(--primary-color);
  padding: 15px 10px;
  border-radius: 0 0 10px 10px;
}

.service-card-bottom a {
  text-transform: uppercase;
}

.service_card {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.service_card h2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service_card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service_body {
  min-height: 190px;
}

.about_service_card-body {
  min-height: 190px;
  background: #fdfdfd;
}

.about_service_card-body h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service_card .service_img img {
  transition: 0.3s;
}

.service_card {
  overflow: hidden;
}

.service_card:hover .service_img img {
  transform: scale(1.1);
}

.service_card:hover .service-icon img {
  transform: none;
}

.service-icon {
  border: 2px solid var(--primary-color);
  display: flex;
  padding: 15px;
  border-radius: 50px;
  position: absolute;
  bottom: -30px;
  height: 70px;
  width: 70px;
  right: 30px;
  background-color: white;
  z-index: 10;
}

.service-icon img {
  border-radius: 0 !important;
}

.service_main .service_img img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: top;
}

.service_main .service-icon {
  top: 3rem;
}

.service-mission {
  padding: 50px 0;
}

.service-mission {
  background-color: #c80f2e0f
}

/* Courses-css */
.courses-list {
  background-color: rgb(255 255 255 / 30%);
  padding: 12px 15px;
  border-radius: 12px;
  width: fit-content;
}

.courses-list li {
  background-color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 12px;
}

.courses-list-right p {
  text-align: right;
}

.courses-list-left {
  min-width: 50%;
}

.course-sections {
  height: 48.5rem;
}

.courses_main-list {
  padding: 30px 0;
  border-bottom: 1px solid rgba(200, 15, 46, 0.3);
}

.courses_main-list:last-child {
  border-bottom: none;
}

.course_right_image img {
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
}

hr {
  border-top: 1px solid var(--primary-color) !important;
}

.card-padding {
  padding: 30px 40px;
}

.badges {
  background-color: rgba(1, 34, 105, .1) !important;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 600;
}

.bg-primary-light {
  background-color: rgb(1 34 105 / 40%);
}

.truck-2-img {
  max-height: 382px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  object-position: center;
}


.flex-container {
  width: 100%;
  display: -webkit-flex;
  /* Safari */
  display: flex;
  overflow: hidden;
  gap: 2rem;
}

.flex-slide .service_card .service_img>img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
}

.service_body_content {
  min-height: 188px;
}

.flex-slide:hover .service_card .service_img>img {
  height: 310px;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 768px) {
  .flex-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .flex-title {
    transform: rotate(0deg) !important;
  }
}

.flex-about {
  opacity: 0;
  color: #f1f1f1;
  position: relative;
  width: 70%;
  font-size: 2vw;
  padding: 5%;
  top: 20%;
  border: 2px solid #f1f1f1;
  border-radius: 10px;
  line-height: 1.3;
  margin: auto;
  text-align: left;
  transform: rotate(0deg);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media screen and (max-width: 768px) {
  .flex-about {
    padding: 0%;
    border: 0px solid #f1f1f1;
  }
}

.flex-slide {
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  width: 33.33%;
  height: fit-content;
  overflow: hidden;
}

.flex-slide p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.flex-slide:hover {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .flex-slide {
    overflow: auto;
    overflow-x: hidden;
  }
}

.flex-about-home {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .flex-about-home {
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}


/* Mission-css */
.mission-section {
  max-width: 1600px;
  margin: 0 auto;
}

.mission-body {
  padding: 90px;
  border-radius: 48px;
  position: relative;
}

.mission-body::after {
  position: absolute;
  content: '';
  top: -300px;
  right: 0px;
  background-image: url(.././img/mission-vector.svg);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right;
}

.mission-card {
  margin-top: 30px;
  background-color: #001B56;
  padding: 40px 20px;
  border-radius: 20px;
}

.mission-card p {
  min-height: 70px;
}

.mission_card-icon {
  background-color: white;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
}

.mission_inner_cards img {
  transition: 0.4s ease-in-out;
}

.mission_inner_cards {
  z-index: 99;
}

.mission_inner_cards:hover img {
  transform: rotateY(180deg);
}

.mission_card-icon img {
  transition: 0.4s ease-in-out;
}

.mission_card-icon:hover img {
  transform: rotateY(180deg);
}

.about_mission-icon {
  width: 250px;
  height: auto;
}





/* why-choose-us-css */
.why-choose-us {
  background-image: url('.././img/why-choose-us.png');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  margin-top: 100px;
}

/* vector-shape-css */

.choose-shape-1 {
  position: absolute;
  left: 7rem;
  top: 9.5rem;
}

.choose-shape-2 {
  position: absolute;
  right: 100px;
  bottom: 15rem;
}


/* Get-started-css */
.get_started_main {
  background-image: url(.././img/get-started-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
  margin: 80px 0;
  border-radius: 20px;
}

.icon svg {
  width: 5rem;
  height: 40px;
  object-fit: cover;
}

/* vector-shape-css-end */

.why-choose-us h2 {
  font-size: 40px;
}

.why-choose-card {
  background-color: white;
  border-radius: 20px;
  height: 100%;
  transition: 0.2s ease-in-out;
  top: 0px;
  position: relative;
}

.why-choose-card:hover {
  position: relative;
  top: -10px;
  transition: 0.2s ease-in-out;
}

.why-choose-body {
  padding: 30px;
}

.why-choose-card h2 {
  background-color: var(--primary-color);
  display: inline-flex;
  padding: 15px;
  border-radius: 20px 0 0;
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 400;
}

.why-choose-card span {
  background-color: white;
  clip-path: polygon(0 0, 64% 0, 100% 25%, 100% 100%, 26% 100%, 0 73%);
  padding: 10px;
  font-weight: 500;
}

.why-choose-body h4 {
  color: #3D3D3D;
  line-height: 30px;
  font-weight: 500;
}

/* Gallery-css */
.gallery-row-first {
  display: flex;
  gap: 1rem;
  margin: 0 -200px;
}

@keyframes moveSlideshow {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-30.6666%);
  }
}

@keyframes moveSlideshow2 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(20.6666%);
  }
}

.gallery-row-first,
.gallery-start {
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.gallery-row-first {
  animation-name: moveSlideshow;
}

.gallery-start {
  animation-name: moveSlideshow2;
}


.gallery-row-second {
  display: flex;
  gap: 1rem;
  margin: 0 -350px;
}

.gallery-start img {
  height: 100%;
}

/* Testimonials-css */
.testimonials-section {
  padding-bottom: 90px;
}

.testinonial-card {
  border: 1px solid var(--primary-color);
  border-radius: 17px;
  padding: 25px;
  backdrop-filter: blur(5px);
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
}

.testimonials-user img{
  width: 45px;
}


.testinonial-card::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background-image: url(.././img/horizontal-divider.svg);
  bottom: -20px;
  background-size: cover;
  background-repeat: no-repeat;
}

.blog-slider {
  width: 95%;
  position: relative;
  max-width: 800px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 30px;
  border-radius: 25px;
  height: 320px;
  transition: all 0.3s;
}

@media screen and (max-width: 992px) {
  .blog-slider {
    max-width: 680px;
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .blog-slider {
    min-height: 400px;
    height: auto;
    position: relative;
    left: -10px;
  }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 350px;
  }
}

.blog-slider__item {
  display: flex;
  align-items: center;
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>* {
  opacity: 1;
  transform: none;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(1) {
  transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(2) {
  transition-delay: 0.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(3) {
  transition-delay: 0.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(4) {
  transition-delay: 0.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(5) {
  transition-delay: 0.7s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(6) {
  transition-delay: 0.8s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(7) {
  transition-delay: 0.9s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(8) {
  transition-delay: 1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(9) {
  transition-delay: 1.1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(10) {
  transition-delay: 1.2s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(11) {
  transition-delay: 1.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(12) {
  transition-delay: 1.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(13) {
  transition-delay: 1.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(14) {
  transition-delay: 1.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(15) {
  transition-delay: 1.7s;
}

.blog-slider__img {
  width: 0;
  flex-shrink: 0;
  height: 300px;
  background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}

.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s;
}

.blog-slider__content {
  padding-right: 5px;
}

@media screen and (max-width: 768px) {
  .blog-slider__content {
    text-align: left;
    padding: 0 30px;
  }
}

@media screen and (max-width: 576px) {
  .blog-slider__content {
    padding: 0;
  }
}

.blog-slider__content>* {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}

.blog-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}

.blog-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 20px;
}

.blog-slider__text {
  color: #2B2B2B;
  margin-bottom: 30px;
  line-height: 1.5em;
  font-size: 16px;
  font-weight: 500;
}

.blog-slider__button {
  display: inline-flex;
  background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}

@media screen and (max-width: 576px) {
  .blog-slider__button {
    width: 100%;
  }
}

.blog-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.blog-slider .swiper-pagination-custom,
.blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

body .blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: -50px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    right: -25px !important;
    width: 100% !important;
  }
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}

.blog-slider__pagination .swiper-pagination-bullet {
  width: 4px;
  height: 35px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all 0.3s;
}

.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color);
  height: 35px;
  box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 35px;
    width: 4px;
  }
}

/* location-css */
.location-section {
  padding-bottom: 90px;
}

.location-card {
  padding: 30px 90px;
  border-radius: 48px;
  position: relative;
  background-color: var(--secondary-color);
}

/* Contact-us-css */
.contact-section {
  background-image: url('.././img/contact-us.png');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}

.contact_form_section {
  background-image: url(.././img/contact-form-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  height: 35rem;
  border-radius: 20px;
}

.send-enquiry {
  background-color: rgb(1 34 105 / 60%);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  max-width: 80%;
  margin: 0 auto;
  margin-top: -180px;
}

/* Footer-css */
.footer-section {
  background-color: #000000;
  padding: 100px 0;
}

.footer-main {
  /* max-width: 1200px; */
  margin: 0 auto;
}

.footer-section p {
  color: #C4C4C4;
}

.footer-section h5::before {
  position: absolute;
  content: '';
  height: 2px;
  width: 50px;
  left: 0;
  background-color: var(--primary-color);
  bottom: -13px;
}

.footer-links li a {
  color: #C3C4C8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .8rem;
  transition: 0.4s ease-in-out;
}

.footer-links li a svg {
  fill: #C3C4C8;
}

.footer-links li a:hover {
  color: var(--primary-color);
  transition: 0.4s ease-in-out;
}

.footer-links li a:hover svg {
  fill: var(--primary-color);
  transition: 0.4s ease-in-out;
}

.footer-input .form-control {
  border-radius: 10px !important;
  border: 0;
}

.footer-input .input-group-text {
  background-color: white;
}

.footer-icon {
  background-color: white;
  border-radius: 0 10px 10px 0;
}

.footer-small {
  color: #C3C4C8;
  font-size: 14px;
}

.about-content_inner
{
   width: calc(100% - 100px) !important;
}
.about-icon-box {
  width: 100px !important;
  text-align: center;
}
.service-media {
  width: 100%;
  min-height: 170px;
  background: var(--secondary-color) !important;
  position: relative;
}

.service-media::before {
  position: absolute;
  content: '';
  background: url('../img/pro-truck-watermark.svg') no-repeat;
  width: 100%;
  height: 80%;
  background-size: contain;
  background-position: center;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  opacity: .11;
}

.overlay-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* background: #06060687; */
  height: 100%;
  z-index: 9;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s ease-in;

}

.overlay-title h5 {
  color: #fff;
  font-size: 20px;
  opacity: 1;
  transition: all .4s ease-in;
  text-align: center;
}

.overlay-title:hover {
  background: #0606061a;
}

.overlay-title:hover h5 {
  opacity: 1;
  transition: all .4s ease-in;
}


/* Media-queires */

@media (min-width: 1201px) and (max-width: 1366px) {
  .heading {
    font-size: 48px;
  }

  .sub-heading {
    font-size: 24px;
  }

  .section {
    padding: 80px 0;
  }


  .about-heading {
    font-size: 42px;
  }

  .mission-body::after {
    top: -350px;
  }

  .about-subheading {
    font-size: 32px;
  }

  .h2 {
    font-size: 42px;
  }

  .why-choose-us {
    padding: 80px 0;
    margin-top: 80px;
  }

  .why-choose-card {
    height: 100%;
  }

  .choose-shape-1 {
    display: none;
  }

  .gallery-start img {
    width: 26%;
  }

  /* .social-media li svg {
    fill: var(--text-black);
  } */

  .main_navigation {
    gap: 1rem;
  }

  @keyframes moveSlideshow {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-30.6666%);
    }
  }

  @keyframes moveSlideshow2 {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(20.6666%);
    }
  }
}


@media (min-width: 1366px) and (max-width: 2500px) {
  .dropdown .dropdown-menu {
    display: none;
  }

  .dropdown:hover>.dropdown-menu,
  .dropend:hover>.dropdown-menu {
    display: block;
    margin-top: 0.125em;
    margin-left: 0.125em;
  }
}



@media (min-width: 992px) and (max-width: 1200px) {

  .overlay-title h5 {
    font-size: 17px;
  }

  .heading {
    font-size: 42px;
  }

  .sub-heading {
    font-size: 24px;
  }

  .about-heading {
    font-size: 42px;
  }

  .about-subheading {
    font-size: 36px;
  }

  .main_navigation {
    gap: 1rem;
  }

  .section {
    padding: 80px 0;
  }

  .h2 {
    font-size: 32px;
  }

  .why-choose-us {
    margin-top: 60px;
    padding: 60px 0;
  }

  .why-choose-card {
    height: 100%;
  }

  .choose-shape-1,
  .choose-shape-2 {
    display: none;
  }

  .gallery-start img {
    width: 20%;
  }

  .location-section {
    padding-bottom: 50px;
  }

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

}

@media (min-width: 768px) and (max-width: 991px) {
  .h1 {
    font-size: 32px;
  }

  .h2 {
    font-size: 30px;
  }

  .h3 {
    font-size: 24px;
  }

  .h4 {
    font-size: 30px;
  }

  .h5 {
    font-size: 24px;
  }

  .h6 {
    font-size: 18px;
  }

  .heading {
    font-size: 32px;
    line-height: 40px;
  }

  .sub-heading {
    font-size: 18px;
    padding: 10px 0;
    line-height: 26px;
  }

  .header_main .container {
    padding: 0 !important;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }

  .header_bg {
    border-radius: 0px;
    padding: 20px 10px;
  }

  .header_main {
    margin: 0 !important;
    z-index: 999;
    position: relative;
  }

  /* .social-media li svg {
    fill: var(--text-black);
  } */

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler-icon {
    background-image: url('.././img/toggle.svg') !important;
  }

  .mission-section {
    max-width: 720px;
  }

  .main_navigation {
    gap: .8rem;
    margin-top: 20px;
  }

  .courses-list-right p {
    text-align: left;
  }

  .mission-section img {
    width: 100%;
  }

  .mission-card p {
    min-height: 30px;
  }

  .hero_section {
    padding: 250px 0 120px 0;
    background-position: bottom;
  }

  .section {
    padding: 60px 0;
  }

  .contact-section {
    margin-bottom: -1px;
  }

  .why-choose-card {
    height: 100%;
  }

  .about-heading {
    font-size: 40px;
    padding-top: 50px;
  }

  .about_page_section .about-heading {
    padding-top: 0;
  }

  .about_mission-icon {
    width: 100px;
  }

  .about-subheading {
    font-size: 36px;
  }

  .service_img>img {
    min-height: 400px;
    object-fit: cover;
  }

  .mission-body {
    padding: 45px;
  }

  .mission-body::after {
    top: -590px;
  }

  .mission-time h4,
  .mission-date {
    font-size: 48px;
    font-weight: 600;
  }

  .mission-card {
    background-color: white;
  }

  .mission-card h4,
  .mission-card p {
    color: #000000 !important;
  }

  .goals-cards {
    margin-top: 40px;
  }

  .why-choose-us {
    padding: 100px 0;
    margin-top: 60px;
    background-position: bottom;
  }

  .choose-shape-1,
  .choose-shape-2 {
    display: none;
  }

  .why-choose-body {
    padding: 20px 30px 40px 30px;
  }

  .gallery-start img {
    width: 50%;
    height: 200px;
    object-fit: cover;
  }

  .gallery-row-second {
    margin: 0px -120px;
  }

  .location-card {
    padding: 30px 45px;
  }

  .location-section {
    padding-bottom: 45px;
  }

  .contact-section .form-control {
    border-radius: 15px;
    height: 50px;
    margin-bottom: 20px;
    border: 0;
  }

  .contact_form_section {
    height: 53rem;
    background-position: center;
  }

  .hero_section {
    min-height: 600px;
  }

  .footer-section {
    padding: 50px 0;
  }

  .navbar-nav .dropdown-menu {
    position: relative !important;
    width: 100%;
  }

  .overlay-title h5 {
    font-size: 17px;
  }
  .client_img{
    width: 100px;
  }


}

@media (max-width: 767px) {
  .overlay-title h5 {
    font-size: 17px;
  }

  .h1 {
    font-size: 32px;
  }

  .h2 {
    font-size: 30px;
  }

  .h3 {
    font-size: 24px;
  }

  .h4 {
    font-size: 30px;
  }

  .h5 {
    font-size: 24px;
  }

  .h6 {
    font-size: 18px;
  }

  /* .social-media li svg {
    fill: var(--text-black);
  } */

  .heading {
    font-size: 26px;
    line-height: 40px;
  }

  .sub-heading {
    font-size: 18px;
    padding: 10px 0;
    line-height: 26px;
  }

  .header_main .container {
    padding: 0 !important;
  }

  .header-fixed .header_bg {
    top: -1px;
  }

  .header_bg {
    border-radius: 0px;
    padding: 20px 10px;
  }

  .header_main {
    margin: 0 !important;
    z-index: 999;
    position: relative;
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none !important;
  }

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

  .navbar-toggler-icon {
    background-image: url('.././img/toggle.svg') !important;
  }

  .main_navigation {
    gap: .8rem;
    margin-top: 20px;
  }

  .hero_section {
    padding: 200px 0 80px 0;
    background-position: bottom;
  }

  .section {
    padding: 60px 0;
  }

  .service_main .service-icon {
    top: unset;
  }

  .about-heading {
    font-size: 28px;
    padding-top: 50px;
  }

  .about_page_section .about-heading {
    padding-top: 0;
  }

  .about_mission-icon {
    width: auto;
    height: auto;
  }

  .about-subheading {
    font-size: 26px;
  }

  .service_img>img {
    min-height: 400px;
    object-fit: cover;
  }

  .mission-body {
    padding: 45px;
  }

  .mission-body::after {
    top: -590px;
  }

  .mob-fs-14 {
    font-size: 14px;
    word-break: break-all;
  }

  .mission-time h4,
  .mission-date {
    font-size: 48px;
    font-weight: 600;
  }

  .mission-card {
    background-color: white;
  }

  .mission-card h4,
  .mission-card p {
    color: #000000 !important;
  }

  .card-padding {
    padding: 30px 20px;
  }

  .courses-list li {
    padding: 10px 10px;
  }

  .courses-list-left {
    min-width: 100%;
  }

  .fs-18 {
    font-size: 16px;
  }

  .service-mission .goals-cards {
    margin-top: 70px;
  }

  .get_started_main {
    padding: 50px 25px;
  }

  .goals-cards {
    margin-top: 40px;
  }

  .why-choose-us {
    padding: 100px 0;
    margin-top: 120px;
    background-position: bottom;
  }

  .choose-shape-1,
  .choose-shape-2 {
    display: none;
  }

  .why-choose-body {
    padding: 20px 30px 40px 30px;
  }

  .gallery-start img {
    width: 30%;
    height: 100px;
    object-fit: cover;
  }

  .gallery-row-second {
    margin: 0px -120px;
  }

  .location-card {
    padding: 30px 45px;
    border-radius: 25px !important;
  }

  .location-section {
    padding-bottom: 45px;
  }

  .icon svg {
    width: 5rem;
    height: 40px;
    object-fit: cover;
  }

  .contact-section {
    background-position: left;
  }

  .contact-section .form-control {
    border-radius: 15px;
    height: 50px;
    margin-bottom: 20px;
    border: 0;
  }

  .footer-section {
    padding: 50px 0;
  }

  .contact-section {
    margin-bottom: -1px;
  }

  .contact_form_section svg {
    width: 50px;
  }

  .contact_form_section {
    padding: 100px 30px;
    height: 55rem;
    border-radius: 0;
  }

  .about-us {
    overflow: hidden;
  }

  .send-enquiry {
    max-width: 90%;
    padding: 50px 25px;
  }

  .send-enquiry .form-control {
    border-radius: 15px;
    height: 50px;
    margin-bottom: 20px;
    border: 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #333;
  }

  .nav-menu.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
  }

  .navbar-nav .dropdown-menu {
    position: relative !important;
    width: 100%;
  }

  .hero_section {
    min-height: 550;
  }

  .courses-list-right p {
    text-align: left;
  }

  .illust-icon-box {
    opacity: .05;
}
.client_img{
  width: 100px;
}

}

.policy-container a:hover 
{
  color: var(--info-color) !important;;
}