@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

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

body {
  font-family: "Inter", sans-serif;
}

a {
  cursor: pointer !important;
}

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong{
  opacity: 1 !important;
}

h1 span{
  opacity: 1 !important;
}

p{
  font-size: 18px !important;
}

p,
li,
span {
  color: #000;
  opacity: 0.6 !important;
}
p strong, li strong, span strong {
  font-weight: 600 !important;
  opacity: 1 !important;
}
b{
  font-weight: 600 !important;
}


strong {
  color: #000 !important;
  opacity: 0.6;
  font-weight: 500 !important;
}

a,
span {
  font-family: "Inter", sans-serif;
}

li {
  font-size: 18px;
}

.container-fluid {
  padding: 0 40px;
}

/* menu css  */

.page-header {
  background-color: #fff;
  z-index: 999;
  position: relative;
  padding-top: 10px;
}

a.brand {
  margin-top: -30px !important;
  display: block;
}

a.brand img {
  width: 260px;
  margin-top: 20px;
}

#menu-bar .navbar {
  z-index: 999999;
  position: static;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* height: 4rem; */
  padding: 10px 0px;
  margin: 0 auto;
}

.left-area {
  display: flex;
  justify-content: right;
  padding-top: 0px;
}

.navbar .menu {
  margin-top: 0;
  margin-bottom: 5px;
  margin-left: auto;
  padding-right: 11px;
}

#menu-bar .menu-item {
  display: inline-block;
  margin-left: 35px;
  /* position: relative; */
}

#menu-bar .menu-item a {
  text-decoration: none;
}

#menu-bar .menu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 6px;
  font-size: 15px;
  line-height: inherit;
  cursor: pointer;
  text-transform: capitalize;
  color: #000000;
  transition: all 0.3s ease-in-out;
}

#menu-bar .menu-link:hover {
  outline: none;
  color: var(--colorPink);
}

/* #menu-bar .submenu-item:hover {
    background-color: var(--colorPink);
    color: #fff;
} */

/* #menu-bar .submenu-item:hover .submenu-link {
    color: #fff;
} */

.close {
  position: absolute;
  top: 16px;
  right: 5%;
  display: none;
  z-index: 99999;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid var(--colorPurple);
  padding: 3px 17px;
  border-radius: 3px;
}

.close i {
  font-size: 14px;
}

.brand-nav img {
  height: 50px;
  margin-left: 15px;
  margin-bottom: 20px;
  margin-top: 0px;
  display: none;
}

.top-header-wrapper {
  display: flex;
  justify-content: end;
  align-items: center;
}

.top-header-wrapper ul {
  padding-left: 0;
  margin-bottom: 0;
}

.top-header-wrapper ul li {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  padding: 0 10px;
}

.top-header-wrapper ul li a {
  text-decoration: none;
  color: #000000ef;
}

.top-header-wrapper ul li:first-child {
  border-right: 2px solid #00000099;
  padding-right: 13px;
}

.search_wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 0 20px !important;
  align-items: center;
  background-color: #d9d9d9;
  height: 36px;
  width: 260px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.search_wrapper input {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 14px;
}

.search_wrapper i {
  margin-left: -11px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

#menu-bar .burger {
  position: relative;
  display: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 2rem;
  height: 1.15rem;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

#menu-bar .burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.5px;
  opacity: 1;
  border: none;
  outline: none;
  background: #fff;
}

#menu-bar .burger-line:nth-child(1) {
  top: 0px;
  width: 80%;
}

#menu-bar .burger-line:nth-child(2) {
  top: 0.5rem;
  width: 100%;
}

#menu-bar .burger-line:nth-child(3) {
  top: 1rem;
  width: 70%;
}

#menu-bar .overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  background-color: rgba(0, 0, 0, 0.65);
}

/* .page-header.is-sticky #menu-bar .submenu {
    background-color: var(--colorPurple);
    color: #fff;
} */

/* .page-header.is-sticky #menu-bar .submenu-item:hover {
    background-color: var(--colorPink);
    color: #fff !important;
    transition: .2s all;
} */

/* .page-header.is-sticky #menu-bar .submenu-item:hover .submenu-link {
    color: #fff !important;
} */

#menu-bar .submenu.active {
  max-height: max-content;
  visibility: visible !important;
}

/* Active state for toggled submenu */
.menu-link.active + .submenu {
  max-height: max-content;
  visibility: visible !important;
}

@media screen and (max-width: 768px) {
  #menu-bar .submenu {
    max-height: 0;
    overflow: hidden;
    visibility: hidden !important;
    transition: max-height 0.3s ease, visibility 0.3s ease;
  }

  a.brand p {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    text-align: center;
  }

  .left-area {
    background-color: #fff;
    height: auto;
  }

  #menu-bar .burger {
    margin-top: 28px;
    margin-left: 13px;
  }

  #menu-bar .menu-link {
    color: #000;
  }

  #menu-bar .menu-link a {
    color: #000;
  }

  #menu-bar .submenu_sm {
    padding: 0px !important;
    width: 100% !important;
  }

  #menu-bar .submenu-link {
    font-weight: 400;
  }

  /*
    #menu-bar .submenu.active{
        max-height: max-content;
        visibility: visible !important;
    }
    #menu-bar .submenu{
        max-height: max-content;
        visibility: visible !important;
    } */
  .submenu {
    max-height: 0;
    overflow: hidden;
    visibility: hidden !important;
  }
}

/* @media screen and (min-width: 1100px) and (max-width: 1280px) {
    a.brand p {
        font-size: 15px;
    }

    #menu-bar .submenu-item {
        padding: 8px 20px;
    }

    #menu-bar .submenu-link {
        font-size: 13px;
    }

} */

@media only screen and (max-width: 992px) {
  .page-header {
    overflow-x: hidden;
    border-bottom: 1px solid #e1e1e1;
  }

  .wrapper {
    display: flex;
    width: 100%;
    justify-content: inherit;
    /* background-color: #EE4466; */
    padding: 10px 0;
  }

  a.brand img {
    height: auto;
    width: 160px;
  }

  .mbl-header {
    display: flex;
    justify-content: space-between;
  }

  #menu-bar .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 90%;
    height: 100%;
    z-index: 99999;
    opacity: 0;
    overflow-y: scroll;
    visibility: hidden;
    background-color: #f7f7f7;
    transition: all 0.5s ease;
  }

  .left-area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    /* background-color: #212529; */
  }

  /* .page-header {
        background-color: #EE4466;
    } */

  #menu-bar .menu {
    width: 100%;
    height: 100%;
    padding: 1rem 0;
    overflow-x: hidden;
  }

  #menu-bar .menu-item {
    display: block;
    margin: 0 auto;
  }

  #menu-bar .menu-link {
    justify-content: space-between;
    padding: 2px 20px 20px 20px;
  }

  .wrapper {
    margin: 0 auto;
    row-gap: 0rem;
  }

  #menu-bar .menu-link:hover {
    outline: none;
    color: var(--colorPink);
  }

  #menu-bar .burger {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
  }

  .close {
    display: block;
    background-color: #fff;
  }

  .close i {
    color: var(--colorPurple) !important;
  }

  .brand-nav img {
    display: block;
  }

  #menu-bar .burger-line {
    background-color: #1f243c;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1100px) {
  .left-area {
    display: flex;
    justify-content: left;
  }

  #menu-bar .menu-item {
    margin-left: 15px;
  }
}

@media screen and (min-width: 1599px) and (max-width: 3200px) {
  .container-fluid {
    width: 1600px !important;
  }
}

p {
  color: #000;
}

/* main {
    margin-top: 90px;
} */

/* banner */

.bg_theme {
  background-color: #3470ac;
}

/* .banner {
  background-color: #3470ac;
  height: 600px;
} */

.single-hs-item {
  height: 100%;
  width: 100%;
  position: relative;
}

/* .banner_image {
  position: absolute;
  top: 0;
  right: -12%;
  height: 599px;
  width: 90%;
} */
.banner .container-fluid {
  padding: 0 !important;
}

.banner_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

/* .single-hs-item {
  padding-left: 55px;
  padding-top: 4%;
} */

.single-hs-item h1 {
  font-size: 55px;
  color: #fff;
  font-weight: 600;
}

.single-hs-item h6 {
  font-size: 30px;
  color: #fff;
}

#home .owl-nav button.owl-prev {
  background-color: #99b7d6;
  position: absolute;
  left: 5%;
  top: 80%;
  color: #000;
  font-size: 30px;
  border-radius: 15px 0 0 15px;
  height: 50px;
  width: 60px;
  -webkit-border-radius: 15px 0 0 15px;
  -moz-border-radius: 15px 0 0 15px;
  -ms-border-radius: 15px 0 0 15px;
  -o-border-radius: 15px 0 0 15px;
}

#home .owl-nav button.owl-next {
  background-color: #99b7d6;
  position: absolute;
  left: 8%;
  top: 80%;
  color: #000;
  font-size: 30px;
  border-radius: 0 15px 15px 0;
  height: 50px;
  width: 60px;
  -webkit-border-radius: 0 15px 15px 0;
  -moz-border-radius: 0 15px 15px 0;
  -ms-border-radius: 0 15px 15px 0;
  -o-border-radius: 0 15px 15px 0;
}

.site_btn {
  background-color: #3470ac;
  outline: none;
  border: none;
  padding: 10px 30px;
  color: #fff;
  text-decoration: none;
  transition: 0.4s all;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  -ms-transition: 0.4s all;
  -o-transition: 0.4s all;
}

.site_btn i {
  margin-left: 20px;
}

.site_btn:hover {
  background-color: #ff5600;
  color: #fff;
}

.site_btn_white {
  background-color: #fff;
  padding: 10px 30px;
  color: #3470ac;
  text-decoration: none;
  transition: 0.4s all;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  -ms-transition: 0.4s all;
  -o-transition: 0.4s all;
}

.site_btn_white i {
  margin-left: 20px;
}

.site_btn_white:hover {
  background-color: #ff5600;
  color: #fff;
}

.white_image {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

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

.vid-sec {
  width: 100%;
  margin-bottom: 30px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 430px;
  max-width: 600px;
  margin: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.video-container iframe {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 10px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Slight dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.play-button {
  position: absolute;
  width: 120px;
  height: 120px;
  background: url("../images/youtube_play.png") no-repeat center center;
  background-size: contain;
}

.search_course {
  background-color: #ccdae9;
  padding: 30px 0;
}

.content_wrapper {
  display: flex;
  align-items: center;
}

.content_wrapper img {
  width: 50px;
}

.content_wrapper h2 {
  font-size: 34px;
  color: #3470ac;
  padding-left: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.content_wrapper p {
  font-size: 20px;
  padding-left: 15px;
  margin-top: 5px;
  color: #3470ac;
  margin-bottom: 0;
}

.content_wrapper_2 {
  display: flex;
  align-items: center;
}

.content_wrapper_2 img {
  width: 50px;
}

.content_wrapper_2 h2 {
  font-size: 34px;
  color: #3470ac;
  padding-left: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.job_card {
  background-color: #4aacc5;
  padding: 0px 70px;
  display: flex;
  align-items: center;
  color: #fff;
  height: 400px;
}

.job_card h2 {
  font-weight: bolder;
  font-size: 40px;
}

.job_image {
  height: 400px;
  width: 100%;
}

.job_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.job-card-2 {
  background-color: #ff0000;
}

footer {
  background-color: #3470ac;
  padding: 40px 0;
}

.footer_item {
  padding-top: 15px;
}

.footer_item ul li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  opacity: 1 !important;
}

.footer_item ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 1 !important;
}

.social_icon ul {
  display: flex;
  justify-content: end;
}

.social_icon ul li {
  list-style: none;
  margin-left: 20px;
  font-size: 25px;
  opacity: 1 !important;
}

.social_icon ul li a {
  text-decoration: none;
  color: #fff;
  opacity: 1 !important;
}

.point ul {
  padding-left: 0;
  display: flex;
  justify-content: end;
  gap: 12px;
  margin-bottom: 0;
}

.point ul li {
  color: #000000;
  list-style: none;
  font-size: 18px;
  margin-bottom: 0;
}

.input_group input {
  border: none;
  border-bottom: 2px solid #d9d9d9;
  height: 40px;
  margin-bottom: 15px;
  width: 100%;
  outline: none;
  background: transparent;
}

.input_group select {
  border: none;
  border-bottom: 2px solid #d9d9d9;
  height: 40px;
  margin-bottom: 15px;
  width: 100%;
  outline: none;
  background: transparent;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.phone-sec {
  display: flex;
}

.phone-sec .country-code {
  width: 20% !important;
  border: none !important;
  top: 1px;
  border-right: 1px solid #e1e1e1;
  background-color: transparent;
}

.iti {
  position: absolute;
  width: 20% !important;
}

.phone-sec .phn-num {
  width: 100% !important;
  padding-left: 100px !important;
  outline: 0 !important;
  height: 40px;
  border: none;
  background: transparent;
  border-bottom: 1px solid #d9d9d9;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 1px;
}

.iti__selected-flag {
  margin-top: 7px;
  outline: none;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
  border-right: 1px solid #d5d5d5;
}

input {
  outline: none;
}

.select2-container .select2-selection--single {
  height: 50px !important;
  padding-left: 16px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 47px;
  color: #757575;
  font-family: var(--Manrope);
  font-size: 14px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 21px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #888 transparent transparent;
  border-style: solid;
  border-width: 10px 6px 0 7px;
}

.flag-icon.flag-icon-squared {
  width: 1em;
  margin-right: 8px;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: -1px;
  right: 0;
  padding: 0 !important;
}

.select2-search__field:focus-visible {
  outline: 0 !important;
}

.select2-search--dropdown .select2-search__field {
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
}

/* .training_model  */

.training_model .col-lg-2 {
  width: 20% !important;
  margin: auto;
}

.training_model .model_item {
  height: 150px;
  width: 100%;
  transition: 0.4s all;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  -ms-transition: 0.4s all;
  -o-transition: 0.4s all;
}

.model_item:hover {
  margin-top: -20px;
}

.model_item:hover + h5 {
  color: red;
}

.training_model .model_item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.training_model h5 {
  font-size: 18px;
  color: #000;
  opacity: 0.6;
  min-height: 30px;
  margin-top: 20px;
  font-weight: 400;
}

.training_model a {
  text-decoration: none;
}

.training_model .model_item_2 {
  height: 200px;
  width: 100%;
  transition: 0.4s all;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  -ms-transition: 0.4s all;
  -o-transition: 0.4s all;
}

.model_item_2:hover {
  margin-top: -20px;
}

.model_item_2:hover + h5 {
  color: red;
}

.training_model .model_item_2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.training_model h5 {
  font-size: 18px;
  color: #000;
  min-height: 30px;
  margin-top: 20px;
  font-weight: 400;
}

/* lab_point */

.lab_point li {
  list-style: none;
  display: flex;
  gap: 13px;
  margin-bottom: 13px;
}

.lab_point li i {
  color: #3470ac;
  font-size: 16px;
  margin-top: 5px;
}

/* new menu css */

#menu-bar .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  margin: 0 auto;
  z-index: 99999;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* height: 4rem; */
  padding: 20px 0 13px 2%;
  margin: 0 auto;
}

.left-area {
  display: flex;
  justify-content: end;
}

#menu-bar .submenu-link {
  font-size: 15px;
  font-weight: 500;
  line-height: inherit;
  cursor: pointer;
  color: #414141 !important;
  transition: 0.4s all;
}

#menu-bar .submenu-link i {
  font-size: 14px;
  margin-left: 10px;
  color: #414141 !important;
}

#menu-bar .submenu-item .submenu-desc {
  font-size: 13px;
}

#menu-bar .submenu-item:hover .submenu-link,
#menu-bar .submenu-item:hover .submenu-desc {
  color: var(--colorOrange);
}

#menu-bar .submenu {
  position: absolute;
  top: 88px;
  right: 22%;
  width: auto;
  height: auto;
  padding: 15px 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 2px 3px 3px #00000014;
  border-radius: 20px;
  z-index: 9999;
}

#menu-bar .submenu_sm {
  width: 20% !important;
  right: 40% !important;
  padding: 12px 12px 12px 4px !important;
}

#menu-bar .noHover:hover .submenu-link,
#menu-bar .noHover:hover .submenu-desc {
  color: #fe6600;
}

#menu-bar .submenu-item {
  display: block;
  margin-top: 0;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  list-style: none;
  transition: 0.4s all;
}

#menu-bar .submenu-item:hover {
  /* background-color: var(--colorOrange); */
  color: var(--colorOrange) !important;
  padding-left: 12px;
}

#menu-bar .submenu-item:hover .submenu-link {
  color: var(--colorOrange) !important;
  padding-left: 12px;
}

.menu-drop::after {
  content: "\21AA";
  position: absolute;
  right: 20px;
  display: none;
}

.close {
  position: absolute;
  top: 16px;
  right: 5%;
  display: none;
  z-index: 99999;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid var(--colorPurple);
  padding: 3px 17px;
  border-radius: 3px;
}

.close i {
  font-size: 14px;
}

.brand-nav img {
  height: 50px;
  margin-left: 15px;
  margin-bottom: 20px;
  margin-top: 0px;
  display: none;
}

#menu-bar .burger {
  position: relative;
  display: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 2rem;
  height: 1.15rem;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

#menu-bar .burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.5px;
  opacity: 1;
  border: none;
  outline: none;
  background: #fff;
}

#menu-bar .burger-line:nth-child(1) {
  top: 0px;
  width: 80%;
}

#menu-bar .burger-line:nth-child(2) {
  top: 0.5rem;
  width: 100%;
}

#menu-bar .burger-line:nth-child(3) {
  top: 1rem;
  width: 70%;
}

#menu-bar .overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  background-color: rgba(0, 0, 0, 0.65);
}

.page-header.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
  opacity: 1;
  animation: slideDown 0.3s ease-out;
  z-index: 999;
  width: 100%;
  top: 0;
}

.page-header .logo-img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.page-header.is-sticky a.brand img {
  filter: brightness(1);
}

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

  to {
    transform: translateY(0);
  }
}

.page-header.is-sticky #menu-bar .menu-link {
  color: #fff;
}

.page-header.is-sticky #menu-bar .menu-link a {
  text-decoration: none;
  color: #fff;
}

/* .page-header.is-sticky #menu-bar .submenu {
    background-color: var(--colorPurple);
    color: #fff;
} */

/* .page-header.is-sticky #menu-bar .submenu-item:hover {
    background-color: var(--colorOrange);
    color: #fff !important;
    transition: .2s all;
} */

/* .page-header.is-sticky #menu-bar .submenu-item:hover .submenu-link {
    color: #fff !important;
} */

.page-header.is-sticky #menu-bar .burger-line {
  background: #1f243c;
}

@media only screen and (max-width: 992px) {
  .page-header {
    overflow-x: hidden;
  }

  .wrapper {
    display: flex;
    width: 100%;
    justify-content: inherit;
    /* background-color: #EE4466; */
    padding: 10px 0;
  }

  a.brand img {
    height: auto;
  }

  .mbl-header {
    display: flex;
    justify-content: space-between;
  }

  #menu-bar .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 90%;
    height: 100%;
    z-index: 99999;
    opacity: 0;
    overflow-y: scroll;
    visibility: hidden;
    background-color: #f7f7f7;
    transition: all 0.5s ease;
  }

  #menu-bar .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
  }

  #menu-bar .navbar.active .submenu .submenu-link {
    padding: 8px 0;
  }

  .left-area {
    width: 100%;
    display: flex;
    justify-content: left;
    padding: 10px 20px;
    /* background-color: #212529; */
  }

  .header-btns {
    display: none;
  }

  /* .page-header {
        background-color: #EE4466;
    } */

  .page-header .container {
    max-width: 100%;
  }

  #menu-bar .menu {
    width: 100%;
    height: 100%;
    padding: 1rem 0;
  }

  #menu-bar .menu-item {
    display: block;
    margin: 0 auto;
  }

  #menu-bar .menu-link {
    justify-content: space-between;
    padding: 2px 20px 20px 20px;
  }

  .wrapper {
    margin: 0 auto;
    row-gap: 0rem;
  }

  #menu-bar .menu-link:hover {
    outline: none;
    color: var(--colorOrange);
  }

  #menu-bar .burger {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
  }

  #menu-bar .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .page-header.is-sticky #menu-bar .menu-link {
    color: #1f243c;
  }

  .page-header.is-sticky #menu-bar .menu-link a {
    text-decoration: none;
    color: #1f243c;
  }

  .page-header.is-sticky #menu-bar .submenu {
    background-color: transparent;
  }

  .page-header.is-sticky #menu-bar .submenu-item:hover {
    width: 86.5% !important;
  }

  #menu-bar .submenu-item:hover {
    width: 86.5% !important;
  }

  #menu-bar .submenu {
    position: relative;
    top: -0.5rem;
    left: 0.5rem;
    width: 96%;
    max-height: 0;
    padding: 0px;
    border: none;
    outline: none;
    border-top: 1px solid #e1e1e1;
    color: #1f243c;
    opacity: 1;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    /* visibility: visible; */
    transform: translateY(0px);
    box-shadow: none;
    background: #fff !important;
    border-radius: 0px !important;
  }

  #menu-bar .menu-item.menu-dropdown.active .submenu {
    visibility: visible;
    visibility: visible;
    backface-visibility: hidden;
  }

  #menu-bar .submenu-link {
    color: #1f243c;
    font-weight: bold;
  }

  .close {
    display: block;
    background-color: #fff;
  }

  .close i {
    color: var(--colorPurple) !important;
  }

  .menu-link i {
    display: none;
  }

  #menu-bar .submenu-item {
    padding: 5px 10px;
  }

  .menu-drop::after {
    content: "\f078";
    font-family: "Font Awesome 5 pro";
    font-weight: 600;
    position: absolute;
    right: 20px;
    display: block;
  }

  .brand-nav img {
    display: block;
  }

  #menu-bar .burger-line {
    background-color: #1f243c;
  }
}

@media only screen and (min-width: 993px) {
  #menu-bar .menu-dropdown:hover > .submenu {
    display: block;
    opacity: 1;
    visibility: visible !important;
    transform: translateY(0);
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1100px) {
  .left-area {
    display: flex;
    justify-content: left;
  }

  #menu-bar .menu-item {
    margin-left: 15px;
  }

  #menu-bar .menu-link > i.fas {
    font-size: 16px;
    margin-left: 0px;
    color: inherit;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
  .phone {
    display: none;
  }

  .right-area {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}

.mbl_wrap {
  display: none;
}

.mbl_banner {
  display: none;
}

.left_rr {
  display: flex;
  align-items: center;
}

.gallery_item {
  height: 260px;
  width: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.gallery_item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.training_img {
  height: 430px;
  width: 100%;
  object-fit: contain;
}
@media only screen and (min-width: 1024px) and (max-width: 1320px) {
  .training_img {
    width: 90%;
    height: 430p;
    object-fit: contain;
  }
  p{
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .page-header {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .training_img {
    width: 100%;
  }

  a.brand img {
    width: 70%;
  }

  .container-fluid {
    padding: 0 10px;
  }

  .top-header-wrapper .fordesktop {
    display: none;
  }

  .mbl_wrap {
    display: block !important;
    margin-left: 7px;
  }

  .mbl_wrap img {
    width: 20px;
  }

  .top-header-wrapper {
    position: absolute;
    bottom: 10px;
    width: 80%;
  }

  #menu-bar .burger {
    top: 20px;
    position: absolute;
    right: 30px;
  }

  a.brand {
    margin-top: -25px !important;
    margin-bottom: 15px;
  }

  .search_wrapper {
    padding: 0 0 0 15px !important;
    height: 36px;
    width: 70% !important;
    position: relative;
  }

  .search_wrapper i {
    position: absolute;
    right: 15px;
  }

  .top-header-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
  }

  .search_wrapper input {
    font-size: 13px;
  }

  .close {
    display: block;
    background-color: #3470ac;
    color: #fff;
  }

  /* .single-hs-item {
    padding-left: 0;
    padding-top: 4%;
  } */

  .single-hs-item h1 {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
  }

  .single-hs-item h6 {
    font-size: 22px;
    color: #fff;
  }

  .single-hs-item {
    height: 100%;
    width: 100%;
    position: relative;
  }

  .banner_content {
    margin-top: 75%;
    padding: 10px 30px;
  }
  /* 
  .banner {
    height: 100%;
    overflow-x: hidden;
    padding-bottom: 40px;
  }

  .banner_image {
    position: absolute;
    top: 0;
    right: 0%;
    height: auto;
    width: 100%;
    padding: 0;
  } */

  /* .desktop_banner {
    display: none !important;
  } */

  /* .mbl_banner {
    display: block;
  } */

  #home .owl-nav button.owl-prev {
    left: 69%;
    top: 95%;
    font-size: 30px;
    height: 35px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #home .owl-nav button.owl-next {
    background-color: #99b7d6;
    position: absolute;
    left: 80%;
    top: 95%;
    height: 35px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .top-header-wrapper ul li {
    font-size: 15px;
    line-height: 1;
    padding: 0 7px;
  }

  .top-header-wrapper ul li:first-child {
    padding-right: 8px;
  }

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

  .better_img {
    margin-top: 40px;
  }

  .video-container {
    height: 250px;
  }

  .video_title {
    font-size: 18px;
    margin-top: 30px;
  }

  .content_wrapper {
    flex-direction: column;
  }

  .content_wrapper h2,
  .content_wrapper_2 h2 {
    font-size: 22px;
    font-weight: bold;
    padding-left: 20px;
  }

  .content_wrapper img {
    width: 35px;
  }

  .content_wrapper p {
    font-size: 17px;
    padding-left: 0px;
    margin-top: 5px;
    color: #3470ac;
    margin-bottom: 0;
    margin-top: 15px;
  }

  .job_card {
    height: 100%;
    padding: 40px 40px;
  }

  br {
    display: none;
  }

  .job_card h2 {
    font-size: 22px;
  }

  .job_image {
    height: auto;
    width: 100%;
  }

  .footer_logo {
    width: 200px;
  }

  .footer_item {
    padding-top: 15px;
    text-align: center;
  }

  .footer_item ul {
    padding-left: 0;
  }

  .social_icon ul {
    justify-content: center;
  }

  .breadcrumb {
    height: 200px;
    background-position: 100% 23%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  li {
    font-size: 16px;
  }

  .training_model .col-lg-2 {
    width: 100% !important;
    margin: auto;
  }

  .training_model .model_item {
    height: auto;
    width: 100%;
  }

  .lab_point ul {
    padding-left: 10px;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 1440px) {
  /* .banner {
    background-color: #3470ac;
    height: 550px;
  } */

  .single-hs-item {
    height: 100%;
    width: 100%;
    position: relative;
  }

  /* .banner_image {
    position: absolute;
    top: 0;
    right: -12%;
    height: 549px;
    width: 87%;
  } */

  .single-hs-item h1 {
    font-size: 48px;
    color: #fff;
    font-weight: 600;
  }

  .single-hs-item h6 {
    font-size: 26px;
    color: #fff;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1299px) {
  /* .banner {
    background-color: #3470ac;
    height: 500px;
  }

  .single-hs-item {
    height: 500px;
    width: 100%;
    position: relative;
  }

  .banner_image {
    position: absolute;
    top: 0;
    right: -11%;
    height: 499px;
    width: 87%;
  } */

  .single-hs-item h1 {
    font-size: 44px;
    color: #fff;
    font-weight: 600;
  }

  .single-hs-item h6 {
    font-size: 24px;
    color: #fff;
  }

  #menu-bar .menu-item {
    display: inline-block;
    margin-left: 20px;
    font-size: 16px;
    /* position: relative; */
  }
}

.error {
  color: red;
  font-size: 14px;
  font-weight: bold;
}
/* 
.testimonial-card {
    background-color: #3470ac;
    color: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    height: 330px;
    position: relative;
  }
  
  .testimonial-card::before{
      content: "";
      position: absolute;
      bottom: -10px;
      right: 30px;
      height: 30px;
      width: 30px;
      background-color: #3470ac;
      transform: rotate(145deg);
      z-index: -1;
  }
  
  .testimonial-card .quote_icon {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 30px;
    width: 30px !important;
    object-fit: contain;
  }
  .testimonial-card p {
    color: #fff;
    position: relative;
    max-height: 220px;
    overflow-y: scroll;
  }
  
  .testimonial-card p::-webkit-scrollbar {
      width: 5px;
    }
    
    .testimonial-card p::-webkit-scrollbar-track {
      background: transparent; 
    }
     
  
    .testimonial-card p::-webkit-scrollbar-thumb {
      background: #3585d4; 
    }
  
  .testimonial-card h5 {
    color: #f7f7f7;
    font-size: 24px;
    margin-bottom: 15px;
  }
  .testimonial .owl-prev, .testimonial .owl-next {
      position: absolute;
      background: #4aacc5 !important;
      color: white !important;
      font-size: 20px !important;
      width: 50px;
      height: 50px;
      top: 42%;
      border-radius: 50% !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
  }
  .testimonial svg{
      fill: #fff;
  }
  
  .testimonial  .owl-prev {
      left: -20px;
  }
  
  .testimonial .owl-next {
      right: -20px;
  } */

.testimonial-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.testimonial-section .testimonial-heading {
  text-align: center;
  font-size: 36px;
  color: #1a472a;
  margin-bottom: 50px;
  font-weight: bold;
}

.testimonial-section .testimonial-item {
  padding: 30px;
  text-align: center;
}

.testimonial-section .testimonial-content {
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
  color: #444;
  margin-bottom: 30px;
}

.testimonial-section .testimonial-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.testimonial-section .author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}

.testimonial-section .author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-section .author-name {
  font-weight: bold;
  font-size: 18px;
  color: #1a472a;
  margin-bottom: 5px;
  text-align: left;
}
.testimonial-section .author-name p {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

.testimonial-section .author-position {
  font-size: 14px;
  color: #666;
}

.testimonial-section .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-section .owl-dot {
  display: inline-block;
  margin: 0 0px !important;
}

.testimonial-section .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.testimonial-section .owl-dot.active span {
  background-color: #1a472a;
  opacity: 1;
  width: 20px;
}

@media (max-width: 768px) {
  .testimonial-section .testimonial-heading {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .testimonial-section .testimonial-item {
    padding: 0 !important;
  }

  .testimonial-section .testimonial-content {
    font-size: 16px;
  }
}
