/* ============ oswald-gfont ============ */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
/* =============== roboto ============== */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1440px;
  width: 100%;
  padding: 0 20px;
}
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}
p {
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  object-fit: cover;
  height: auto;
}
.cmn-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4091c8;
  color: #ffffff;
  text-transform: capitalize;
  border-radius: 10px;
  position: relative;
  z-index: 999;
  overflow: hidden;
  transition: 0.3s ease all;
}
.cmn-btn:hover {
  background-color: #fa8626;
}
/* =========== header ================ */
.header-top {
  background-color: #4091c8;
}
.header-top-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  flex-wrap: wrap;
}
.header-top-box .top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-top-box .top-left a {
  color: #ffffff;
  transition: 0.3s ease;
}
.header-top-box .top-left a i {
  margin-right: 5px;
}
.header-top-box .top-left a:hover {
  color: #fa8626;
}
.header-top-box .top-right {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #ffffff;
}
.header-top-box .top-right p {
  color: #ffffff;
  text-transform: capitalize;
  position: relative;
  font-weight: 500;
}
.header-top-box .top-right .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-top-box .top-right .social-icon a {
  color: #ffffff;
  background-color: #3a7197;
  border-radius: 100%;
  display: inline-block;
  height: 30px;
  width: 30px;
  text-align: center;
  align-content: center;
  transition: 0.3s ease;
}
.header-top-box .top-right .social-icon a:hover {
  background-color: #fa8626;
}
.header-top-box .top-right .social-icon .mob-only-icon {
  display: none;
}
header .nav-link,
header .dropdown-item {
  text-transform: capitalize;
  color: #000;
  font-weight: 600;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding: 10px 20px;
  transition: 0.3s ease;
}
.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #fa8626;
}
.navbar-brand {
  max-width: 200px;
}
/* mobile-menu start*/

/* GLOBAL STYLES
-------------------------------------------------- */

:root {
  --dark: #182b38;
  --dark2: #222222;
  --white: #ffffff;
  --orange: #fb8626;
  --blue: #4091c8;
  --grey-bg: #f8f8f8;
}

/* CUSTOMIZE THE NAVBAR
-------------------------------------------------- */

/* Special class on .container surrounding .navbar, used for positioning it into place. */
.navbar-wrapper {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
}

/* Flip around the padding for proper display in narrow viewports */
.navbar-wrapper > .container {
  padding-right: 0;
  padding-left: 0;
}
.navbar-wrapper .navbar {
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 0;
  min-height: 72px;
}
.navbar-wrapper .navbar .container {
  width: auto;
}
header {
  background: var(--white);
}
.mob-only-navbar .navbar-brand > img {
  width: 200px;
  height: auto;
  margin-top: 6px;
}
.navbar-wrapper.scroll-fix ~ .navbar-wrapper {
  display: none;
}
.navbar-wrapper {
  background: var(--white);
  height: 72px;
  border-radius: 0;
}
.navbar-wrapper.scroll-fix {
  border-radius: 0;
}
.top-nav {
  background: #f5f5f5;
  font-family: "Roboto", sans-serif;
  padding: 12px 0;
  text-align: center;
}
.top-nav .top-mail a {
  font-size: 14px;
  color: var(--dark);
  font-weight: 400;
}
.top-nav .top-mail a .fa {
  margin-right: 5px;
}
.top-nav .top-mail a:hover {
  color: var(--blue);
}
.top-nav .top-social a {
  font-size: 16px;
  color: var(--dark);
  padding: 0 13px;
  border-right: 1px solid #333333;
}
.top-nav .top-social a:hover {
  color: #fa8626;
}
.top-nav .top-social a:last-child {
  border-right: 0;
}
.top-nav .ph-quote a {
  font-size: 16px;
  color: #222222;
  padding: 2px 40px 0;
  display: inline-block;
  font-weight: 500;
  transition: all ease-in-out 0.3s;
}
.top-nav .ph-quote a:hover {
  color: #4091c8;
}
.top-nav .ph-quote a .fa {
  margin-right: 6px;
  background: #4091c8;
  color: #fff;
  width: 30px;
  height: 30px;
  padding-top: 7px;
  border-radius: 50%;
}
.desktopON {
  display: block;
}
.mobileON {
  display: none;
}
.top-nav.mb-only {
  display: none;
}
.closeNav {
  display: none;
}
.navbar-wrapper .btn-modal {
  background: #4091c8;
  padding: 10px 12px;
  color: #ffffff;
  font-size: 14px;
  float: right;
  border: 0;
  border-radius: 8px;
  /*transform: skew(-20deg, 0deg);*/
  transition: all ease-in-out 0.3s;
  margin-top: 15px;
}
.navbar-wrapper .btn-modal:hover {
  background: #fa8626;
}
.bookConsult {
  padding: 10px 12px;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  /*transform: skew(-20deg, 0deg);*/
  transition: all ease-in-out 0.3s;
  margin-top: 0px;
}
.bookConsult:hover {
  text-decoration: none;
  color: #ffffff;
}
.mobileON .mob-social {
  margin: 0 auto;
  text-align: center;
}
.mob-social .more-act {
  background: #dddddd;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.mob-social .more-act img {
  width: 22px;
  margin-top: 8px;
}
.navbar-wrapper .btn-modal span {
  /* transform: skew(20deg, 0deg); */
  display: block;
}
.navbar-wrapper .btn-modal .fa {
  margin-left: 8px;
}
.navbar-wrapper .btn-modal:focus {
  border: 0;
  outline: 0;
}
.top-social {
  padding-top: 5px;
  text-align: center;
}
.top-mail {
  padding-top: 5px;
  text-align: left;
}
.navbar-inverse .navbar-collapse {
  border-color: transparent;
}
.navbar-inverse {
  background: transparent;
  border: 0;
}
.navbar-nav {
  float: right !important;
}
.navbar-inverse .navbar-nav > li {
  padding: 26px 0;
  list-style: none;
}
.navbar-inverse .navbar-nav > li > a {
  font-size: 16px;
  color: var(--dark2);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-left: 25px !important;
  padding-right: 25px !important;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: var(--orange);
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: var(--orange);
  background: transparent !important;
}
.dropdown-menu {
  background: #f5f5f5 !important;
}
.dropdown-menu > li > a {
  padding: 8px 20px !important;
  border-bottom: 1px solid #dddddd !important;
  transition: all 0.3s ease-in-out !important;
}
.dropdown-menu > li:last-child a {
  border-bottom: 0 !important;
}
.dropdown-menu > li > a:hover {
  /* color: #fa8626; */
}
.navbar-brand {
  height: 55px !important;
  padding: 5px 0 0 !important;
}
.nav-item {
  padding: 0.5rem 0xp;
}

.dropdown-hover:hover > .dropdown-menu {
  display: inline-block;
}

.dropdown-hover > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}
.mob-only-navbar .navbar .navbar-nav .dropdown-menu {
  right: 0;
  padding: 20px;
  top: 72px;
  border-radius: 15px;
}
.navbar-nav .dropdown-menu .list-group strong {
  color: #4091c8;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 20px;
}
.navbar-nav .dropdown-menu .list-group .list-group-item {
  background: none;
  font-size: 16px;
  transition: all ease-in-out 0.3s;
  border: 0;
  padding: 15px;
  border-radius: 15px;
  color: var(--dark2);
}
.navbar-nav .dropdown-menu .list-group .list-group-item:hover {
  background: #eeeeee;
  color: var(--orange);
  padding-left: 30px;
}
.navbar-nav .dropdown-menu .list-group .list-group-item::before {
  content: "\f105";
  position: absolute;
  left: 0px;
  top: 11px;
  display: block;
  font-family: "FontAwesome";
  font-size: 20px;
  color: var(--dark2);
  transition: all ease-in-out 0.3s;
}
.navbar-nav .dropdown-menu .list-group .list-group-item:hover::before {
  color: var(--orange);
  left: 15px;
}
.navbar-nav .dropdown-menu .list-group .email-link {
  position: relative;
  font-size: 16px;
  padding-left: 25px;
  color: var(--dark2);
  transition: all ease-in-out 0.3s;
}
.navbar-nav .dropdown-menu .list-group .email-link:hover {
  color: var(--orange);
}
.navbar-nav .dropdown-menu .list-group .email-link::before {
  content: "\f0e0";
  position: absolute;
  left: 0px;
  top: 1px;
  display: block;
  font-family: "FontAwesome";
  font-size: 14px;
  color: var(--dark2);
  transition: all ease-in-out 0.3s;
}
.list-group .sm-icons {
  margin: 20px 0;
}
.list-group .sm-icons a {
  font-size: 28px;
  margin-right: 25px;
  color: var(--dark);
}
.list-group .sm-icons a:hover {
  color: var(--orange);
}
.mg-phone {
  position: relative;
  border: 1px solid #fa8626;
  border-radius: 15px;
  padding: 5px 0 5px 50px;
  width: 72%;
}
.mg-phone:before {
  content: "";
  position: absolute;
  left: -21px;
  top: 35%;
  background: url(../images/phone-call-icon.png) 0 0;
  display: block;
  width: 40px;
  height: 40px;
}
.mg-phone a {
  display: block;
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
  padding: 10px 0;
}
.mg-phone a:hover {
  color: var(--orange);
}
.navbar-nav .dropdown-menu .list-group.certificn a {
  cursor: default;
  margin-right: 30px;
}
.navbar-nav .list-group.list-group-flush img {
  height: 280px;
  width: auto;
  border-radius: 15px;
}
.navbar-inverse .navbar-nav > li > a.nav-link .fa.fa-caret-down {
  font-size: 13px;
}
.navbar.navbar-inverse .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.navbar.navbar-inverse .navbar-collapse {
  display: flex !important;
  flex-flow: column;
  padding-left: 4%;
  padding-right: 0;
}
.navbar.navbar-inverse .extraNav {
  display: flex;
  flex-flow: column;
  padding-left: 3%;
}
.extraNav .extraNav-items {
  margin-top: 13px;
  margin-bottom: 0;
  padding-left: 0;
}
.extraNav .extraNav-items li {
  float: left;
  list-style: none;
  padding: 10px 0 10px 15px;
}
.extraNav .extraNav-items li:last-child a {
  background: var(--orange);
  font-size: 16px;
  color: var(--white);
  padding: 8px 24px;
  border-radius: 25px;
  transition: all ease-in-out 0.3s;
}
.extraNav .extraNav-items li:last-child a:hover {
  background: var(--blue);
}
.extraNav .extraNav-items li:first-child a {
  background: var(--grey-bg);
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
  padding: 8px 24px;
  border-radius: 25px;
  transition: all ease-in-out 0.3s;
  animation: blink 3s linear infinite;
}
@keyframes blink {
  0% {
    color: #fb8626;
  }
  50% {
    color: #4091c8;
  }
  100% {
    color: #003a63;
  }
}
.extraNav .extraNav-items li:first-child a:hover {
  background: #dddddd;
  color: var(--blue);
}
.top-nav .ph-quote {
  text-align: right;
}
.top-nav .ph-quote a .fa {
  text-align: center;
}
.ph-quote .btn-modal {
  background: #fa8626;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 7px 25px;
  color: #fff;
  border-radius: 30px;
  background: linear-gradient(
    90deg,
    #4091c8,
    #ffffff,
    #4091c8,
    #4091c8,
    #ffffff,
    #4091c8
  );
  background-size: 400%;
  animation: animate 15s linear infinite;
}
@keyframes animate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
.sidenav {
  height: 100vh;
  width: 80%;
  background-color: #4091c8;
  box-shadow: 21px 0px 6px -22px rgb(0 0 0 / 30%);
  position: fixed;
  left: -80%;
  top: 0;
  z-index: 999999;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
}
.sidenav.show {
  left: 0;
}
.sidenav .user-pann {
  background: var(--orange);
  padding: 15px;
}
.sidenav .user-pann .cmn-btn:hover {
  background-color: #ffffff;
  color: #000;
}
.user-smpic {
  display: inline-block;
  margin-right: 0px;
}
.user-pann .mb-brand-ttc {
  background: var(--white);
  padding: 5px 10px;
  float: left;
  border-radius: 50px;
  display: none;
}
.mb-brand-ttc .user-smpic img {
  height: 24px;
}
.user-pann .mb-gtquote {
  background: var(--blue);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 30px;
  margin-top: 1px;
  float: right;
}
.menu-toggler {
  position: relative;
}
.menu-toggler.show:after {
  content: "";
  position: fixed;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 99999;
  display: block;
}
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.show .hamRotate.active,
.show .hamRotate {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill: none;
  transition:
    stroke-dasharray 400ms,
    stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 5.5;
  stroke-linecap: round;
}
.ham4 .top {
  stroke-dasharray: 40 121;
}
.ham4 .bottom {
  stroke-dasharray: 40 121;
}
.show .ham4.active .top,
.show .ham4 .top {
  stroke-dashoffset: -68px;
}
.show .ham4.active .bottom,
.show .ham4 .bottom {
  stroke-dashoffset: -68px;
}
.menu-opener {
  display: none;
}
.mb-headr {
  display: none;
}
.moreaction-pops {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  bottom: 0;
  z-index: 99;
  padding: 50px;
  text-align: center;
}
.moreaction-pops a {
  font-size: 24px;
  margin: 16px 8px;
  padding: 7px;
  border: 2px solid var(--blue);
  color: var(--blue);
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
}
.close02 {
  position: absolute;
  right: 0;
  top: 0;
  float: right;
  margin-top: 0;
  background: var(--orange);
  color: #fff;
  padding: 1px 8px 6px 12px;
  border-radius: 0 0 0 30px;
}
.KPOServices {
  background: #fa8626;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 7px 25px;
  display: inline-block;
  margin-top: 3px;
  color: #fff;
  border-radius: 30px;
  background: linear-gradient(
    90deg,
    #4091c8,
    #ffffff,
    #4091c8,
    #4091c8,
    #ffffff,
    #4091c8
  );
  background-size: 400%;
  animation: animate 15s linear infinite;
}
.mobile-only.sidenav .user-pann .mb-login .user-smpic img {
  height: 22px;
}
/*=====accordion menu=====*/
.content {
  width: 260px;
  margin: 100px auto;
}
.colors {
  width: 260px;
  float: left;
  margin: 20px auto;
}
.colors a {
  width: 43.3px;
  height: 30px;
  float: left;
}
.colors .default {
  background: #414956;
}
.colors .blue {
  background: #4a89dc;
}
.colors .green {
  background: #03a678;
}
.colors .red {
  background: #ed5565;
}
.colors .white {
  background: #fff;
}
.colors .black {
  background: #292929;
}

.jquery-accordion-menu,
.jquery-accordion-menu * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: 0;
}
.jquery-accordion-menu {
  min-width: 260px;
  float: left;
  position: relative;
}
.jquery-accordion-menu .jquery-accordion-menu-footer,
.jquery-accordion-menu .jquery-accordion-menu-header {
  width: 100%;
  height: 50px;
  padding-left: 22px;
  float: left;
  line-height: 50px;
  font-weight: 600;
  color: #f0f0f0;
  background: #414956;
}
.jquery-accordion-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jquery-accordion-menu ul li {
  width: 100%;
  display: block;
  float: left;
  position: relative;
  overflow: visible;
}
.jquery-accordion-menu ul li a {
  width: 100%;
  padding: 14px 22px;
  float: left;
  text-decoration: none;
  color: #f0f0f0;
  font-size: 14px;
  background: #4091c8;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-align: left;
  -o-transition:
    color 0.2s linear,
    background 0.2s linear;
  -moz-transition:
    color 0.2s linear,
    background 0.2s linear;
  -webkit-transition:
    color 0.2s linear,
    background 0.2s linear;
  transition:
    color 0.2s linear,
    background 0.2s linear;
}
.jquery-accordion-menu > ul > li.active > a,
.jquery-accordion-menu > ul > li:hover > a {
  color: var(--white);
  background: #003a63;
}
.jquery-accordion-menu > ul > li > a {
  border-bottom: solid 1px #58ace5;
}
.jquery-accordion-menu ul li a i {
  width: 34px;
  float: left;
  line-height: 20px;
  font-size: 16px;
  text-align: left;
}
.jquery-accordion-menu .submenu-indicator {
  float: right;
  right: 22px;
  position: absolute;
  line-height: 19px;
  font-size: 24px;
  -o-transition: transform 0.3s linear;
  -moz-transition: transform 0.3s linear;
  -webkit-transition: transform 0.3s linear;
  -ms-transition: transform 0.3s linear;
}
.jquery-accordion-menu ul ul.submenu .submenu-indicator {
  line-height: 16px;
}
.jquery-accordion-menu .submenu-indicator-minus > .submenu-indicator {
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.jquery-accordion-menu ul ul.submenu,
.jquery-accordion-menu ul ul.submenu li ul.submenu {
  width: 100%;
  display: none;
  max-height: 40vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.jquery-accordion-menu ul ul.submenu li {
  clear: both;
  width: 100%;
}
.jquery-accordion-menu ul ul.submenu li a {
  width: 100%;
  float: left;
  font-size: 14px;
  text-align: left;
  background: #003a63;
  border-top: none;
  position: relative;
  border-left: solid 6px transparent;
  -o-transition: border 0.2s linear;
  -moz-transition: border 0.2s linear;
  -webkit-transition: border 0.2s linear;
  transition: border 0.2s linear;
}
.jquery-accordion-menu ul ul.submenu li:hover > a {
  border-left-color: #414956;
}
.jquery-accordion-menu ul ul.submenu > li > a {
  padding-left: 30px;
}
.jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > a {
  padding-left: 45px;
}
.jquery-accordion-menu
  ul
  ul.submenu
  > li
  > ul.submenu
  > li
  > ul.submenu
  > li
  > a {
  padding-left: 60px;
}
.jquery-accordion-menu ul ul.submenu li a::before {
  content: "\F18B";
  display: block;
  font-family: "remixicon";
  font-size: 10px;
  position: absolute;
  left: 10px;
  top: 17px;
  color: var(--blue);
}
.jquery-accordion-menu ul li .jquery-accordion-menu-label,
.jquery-accordion-menu ul ul.submenu li .jquery-accordion-menu-label {
  min-width: 20px;
  padding: 1px 2px 1px 1px;
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 11px;
  font-weight: 800;
  color: #555;
  text-align: center;
  line-height: 18px;
  background: #f0f0f0;
  border-radius: 100%;
}
.jquery-accordion-menu ul ul.submenu li .jquery-accordion-menu-label {
  top: 12px;
}
.ink {
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.animate-ink {
  -webkit-animation: ripple 0.5s linear;
  -moz-animation: ripple 0.5s linear;
  -ms-animation: ripple 0.5s linear;
  -o-animation: ripple 0.5s linear;
  animation: ripple 0.5s linear;
}
@-webkit-keyframes ripple {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
  }
}
@-moz-keyframes ripple {
  100% {
    opacity: 0;
    -moz-transform: scale(2.5);
  }
}
@-o-keyframes ripple {
  100% {
    opacity: 0;
    -o-transform: scale(2.5);
  }
}
@keyframes ripple {
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
.blue.jquery-accordion-menu .jquery-accordion-menu-footer,
.blue.jquery-accordion-menu .jquery-accordion-menu-header,
.blue.jquery-accordion-menu ul li a {
  background: #4a89dc;
}
.blue.jquery-accordion-menu > ul > li.active > a,
.blue.jquery-accordion-menu > ul > li:hover > a {
  background: #3e82da;
}
.blue.jquery-accordion-menu > ul > li > a {
  border-bottom-color: #3e82da;
}
.blue.jquery-accordion-menu ul ul.submenu li:hover > a {
  border-left-color: #3e82da;
}
.green.jquery-accordion-menu .jquery-accordion-menu-footer,
.green.jquery-accordion-menu .jquery-accordion-menu-header,
.green.jquery-accordion-menu ul li a {
  background: #03a678;
}
.green.jquery-accordion-menu > ul > li.active > a,
.green.jquery-accordion-menu > ul > li:hover > a {
  background: #049372;
}
.green.jquery-accordion-menu > ul > li > a {
  border-bottom-color: #049372;
}
.green.jquery-accordion-menu ul ul.submenu li:hover > a {
  border-left-color: #049372;
}
.red.jquery-accordion-menu .jquery-accordion-menu-footer,
.red.jquery-accordion-menu .jquery-accordion-menu-header,
.red.jquery-accordion-menu ul li a {
  background: #ed5565;
}
.red.jquery-accordion-menu > ul > li.active > a,
.red.jquery-accordion-menu > ul > li:hover > a {
  background: #da4453;
}
.red.jquery-accordion-menu > ul > li > a {
  border-bottom-color: #da4453;
}
.red.jquery-accordion-menu ul ul.submenu li:hover > a {
  border-left-color: #da4453;
}
.white.jquery-accordion-menu .jquery-accordion-menu-footer,
.white.jquery-accordion-menu .jquery-accordion-menu-header,
.white.jquery-accordion-menu ul li a {
  background: #fff;
  color: #555;
}
.white.jquery-accordion-menu > ul > li.active > a,
.white.jquery-accordion-menu > ul > li:hover > a {
  background: #f0f0f0;
}
.white.jquery-accordion-menu > ul > li > a {
  border-bottom-color: #f0f0f0;
}
.white.jquery-accordion-menu ul ul.submenu li:hover > a {
  border-left-color: #f0f0f0;
}
.white.jquery-accordion-menu ul ul.submenu li a {
  color: #f0f0f0;
}
.white.jquery-accordion-menu > ul > li > a > .ink {
  background: rgba(0, 0, 0, 0.1);
}
.black.jquery-accordion-menu .jquery-accordion-menu-footer,
.black.jquery-accordion-menu .jquery-accordion-menu-header,
.black.jquery-accordion-menu ul li a {
  background: #292929;
}
.black.jquery-accordion-menu > ul > li.active > a,
.black.jquery-accordion-menu > ul > li:hover > a {
  background: #222;
}
.black.jquery-accordion-menu > ul > li > a {
  border-bottom-color: #222;
}
.black.jquery-accordion-menu ul ul.submenu li:hover > a {
  border-left-color: #222;
}
.toggle-icon {
  float: right;
  font-size: 18px;
  font-weight: bold;
  padding-right: 10px;
}
.desktop-only.navbar-wrapper.scroll-fix {
  box-shadow: 0 0 5px #bcccdd;
}
/*--end--*/

@media (min-width: 768px) {
  .navbar-wrapper {
    margin-top: 0px;
  }
  .navbar-wrapper .container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .navbar-wrapper .navbar {
    padding-right: 0;
    padding-left: 0;
  }

  /* The navbar becomes detached from the top, so we round the corners */
  .navbar-wrapper .navbar {
    border-radius: 4px;
  }
  .navbar-nav {
    float: right;
    padding-top: 0;
  }
}

@media (max-width: 991px) {
  .modal-open .modal {
    z-index: 999999;
  }
  .menu-opener {
    display: block;
    float: right;
    line-height: 10px;
  }
  .navbar-wrapper.desktop-only {
    display: none;
  }

  .mb-headr {
    padding: 10px 15px;
  }
  .navbar-brand-mb img {
    height: 32px;
    margin-top: 4px;
  }
  .top-nav.desk-only {
    display: none;
  }
  .mobileON {
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: space-between;
  }
  .mobileON .mob-social a {
    padding: 0px;
    display: inline-block;
    text-align: center;
    vertical-align: top;
    margin: 0 10px;
  }
  .mobileON .mob-social a .fa {
    background: #4091c8;
    color: #fff;
    width: 32px;
    height: 32px;
    padding-top: 9px;
    border-radius: 50%;
  }
  .mb-headr {
    display: block;
    text-align: center;
  }
  .navbar-brand-mb {
    float: left;
  }
  .mobileON {
    display: block;
    text-align: center;
  }
  #viewPH2 {
    display: none;
  }
  .mobileON #viewPH2 {
    position: fixed;
    z-index: 99;
    background: rgba(0, 0, 0, 0.95);
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    padding: 70px 15px;
    margin-top: 0px;
  }
  .mobileON #viewPH2 li {
    list-style: none;
  }
  .mobileON #viewPH2 li a {
    color: #4091c8;
    padding: 15px 0;
    display: block;
    text-align: center;
    border-bottom: 1px solid #333333;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
  }
  .mobileON #viewPH2 .closse {
    position: absolute;
    right: 0;
    top: 0;
    float: right;
    margin-top: 0;
    background: var(--orange);
    color: #fff;
    padding: 1px 8px 6px 12px;
    border-radius: 0 0 0 30px;
  }
  .mb-headr.scroll-fix {
    background: var(--white);
    z-index: 999;
    box-shadow: 0 0 5px #bcccdd;
  }
  .top-nav.mb-only {
    display: block;
  }
}

/* mobile-menu end */
.navbar-nav .dropdown {
  position: static;
}
.nav-item.dropdown:hover .course-list-drop {
  display: block;
  opacity: 1;
  visibility: visible;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 15px;
  background-color: unset !important;
  border: none;
}
.course-list-drop a:hover {
  color: #fa8626;
  background-color: unset;
}
.banner .cmn-btn {
  padding: 10px 30px !important;
}
.course-list-drop .meghamenu-items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  width: 800px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  padding: 10px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.nav-course-item {
  position: relative;
  display: inline-block;
  padding: 6px 20px !important;
  border-radius: 30px;
  color: #000 !important;
  border: 2px solid transparent;

  background:
    linear-gradient(#f8f9fa, #f8f9fa),
    linear-gradient(
      90deg,
      #0ebeff,
      #ffdd40,
      #ae63e4,
      #47cf73,
      #0ebeff,
      #ffdd40,
      #ae63e4,
      #47cf73
    );

  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size:
    100% 100%,
    200% 200%;
  animation: rainbow-border 1.5s linear infinite;
}
.nav-course-item.dropdown-toggle::after {
  margin-left: 5px;
  vertical-align: 4px;
}

.nav-course-item:hover {
  color: #fa8626 !important;
}
@keyframes rainbow-border {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}
.desk-nav-btn .cmn-btn {
  position: relative;
  display: inline-block;
  padding: 6px 20px !important;
  border-radius: 30px;
  color: #fff;
  border: none;
  font-weight: 600;
  background: linear-gradient(90deg, #4091c8, #fa8626, #4091c8);
  background-size: 200% auto;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
.desk-nav-btn .cmn-btn:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 17.5px rgba(94, 43, 0, 0.33));
}
.desk-nav-btn {
  display: flex;
  align-items: center;
}
/* banner */
.banner {
  /* min-height: 400px; */
  background-color: #3a7197;
  padding: 50px 0;
}
.banner-head .train {
  color: #ffffff;
  margin-bottom: 40px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 15px;
  border: 1px solid #eee;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  font-size: 14px;
}
.banner-head h1 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}
.banner-head p {
  font-size: 16px;
  color: #ffffff;
  line-height: 26px;
}
.banner .form-box {
  padding: 15px;
  background-color: #ffffff;
  border-radius: 15px;
  margin: 0 auto;
  max-width: 500px;
  filter: drop-shadow(0 0 17.5px rgba(94, 43, 0, 0.33));
}
.banner .form-box strong {
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  font-size: 30px;
}
.banner .form-box p {
  margin-bottom: 20px;
}
.banner .row {
  align-items: center;
}
.banner .form-box input,
.banner .form-box select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
}
.banner .form-box .btn-group {
  /* display: flex;
  justify-content: center;
  align-items: center; */
}
.banner .form-box .btn-group .wpcf7-form-control {
  width: auto !important;
  border: none;
  padding: 10px 30px;
}
.banner .form-box .btn-group .wpcf7-spinner {
  position: absolute;
  left: 100%;
  top: 10px;
}
.wpcf7-not-valid-tip {
  position: absolute;
  bottom: -25px;
  font-size: 14px;
}
.wpcf7 form.invalid .wpcf7-response-output {
  font-size: 14px;
  text-align: center;
}
.banner .form-box .form-select:focus {
  box-shadow: none;
}
.banner .form-box input:focus-visible {
  outline: 0;
}
.form-select:focus {
  box-shadow: none;
}
/* ========= training ================= */
.training {
  padding: 50px 0;
}
.training-head {
  text-align: center;
}
.training-head p {
  font-size: 16px;
}
.training-head h2 {
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}
/* career */
.career {
  padding: 50px 0;
  background: linear-gradient(to right, #f5f5f5 0%, #f5f5f5 40%, #ffffff 100%);
}
.career-head h2 {
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 600;
}
.career-head p {
  line-height: 30px;
  margin-bottom: 20px;
  text-align: justify;
  padding-right: 30px;
  font-size: 16px;
}
.Career {
  padding-bottom: 50px;
}
.Career .row {
  align-items: center;
}
.career-head ul li {
  margin-bottom: 15px;
  position: relative;
  font-size: 16px;
  display: inline-block;
  margin-right: 10px;
  font-weight: 600;
}
.career-head ul li::before {
  content: "\EB80";
  font-family: "remixicon";
  color: #4091c8;
  margin-right: 5px;
}
/* ============ .why-choose-us ============= */
.why-choose-us {
  padding: 50px 0;
}
.why-choose-us .row {
  row-gap: 24px;
}
.why-choose-us-head {
  text-align: center;
}
.why-choose-us-head h2,
.future-box h2 {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
}
.why-choose-us-head p {
  padding: 0 15%;
  margin-bottom: 50px;
  font-size: 16px;
}
.why-choose-us-box {
  padding: 15px;
  background-color: #ffffff;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}
.why-choose-us-box p {
  line-height: 26px;
  font-size: 16px;
}
.why-choose-us-box h3 {
  text-transform: capitalize;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}
.why-choose-us .row.second-row {
  row-gap: 24px;
}
.why-choose-us .row.second-row figure,
.why-choose-us .row.first-row figure {
  border-radius: 100%;
  border: 1px solid #000;
  display: inline-block;
  padding: 10px;
}
.why-choose-us .row.second-row img,
.why-choose-us .row.first-row img {
  max-width: 35px;
}
.why-choose-us .row.second-row h3,
.why-choose-us .row.first-row h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.why-choose-us .row.second-row p {
  text-align: justify;
}
.why-choose-us .row.first-row p {
  margin-bottom: 20px;
  text-align: justify;
  font-size: 16px;
}
/* ======== our-courses ============= */
.our-courses {
  padding: 50px 0;
  background-color: #f5f5f5;
}
.our-courses-box {
  text-align: center;
}
.our-courses-box h2 {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
}
.our-courses-box p {
  padding: 0 15%;
  margin-bottom: 20px;
  font-size: 16px;
}
.course-box-link-img {
  display: block;
}
.our-courses-card {
  padding: 10px;
  background-color: #ffffff;
  border-radius: 10px;
  height: 100%;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.our-courses-card:hover .course-box-link-img img {
  transform: scale(1.05);
  overflow: hidden;
}
.course-box-link-img {
  overflow: hidden;
  border-radius: 10px;
}
.course-box-link-img img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s ease;
}
.course-box-link-head {
  color: #4091c8;
  display: block;
  margin: 20px 0;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s ease;
}
.course-box-link-head:hover {
  color: #fa8626;
}
.our-courses-card figcaption p {
  margin-bottom: 20px;
  font-size: 16px;
  min-height: 96px;
}
.our-courses .row {
  row-gap: 20px;
}
.para-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 15px;
}
.para-list li i {
  font-size: 18px;
  color: #4091c8;
}
.training-head {
  text-align: center;
  margin-bottom: 30px;
}
.training-wrapper {
  font-family: "Roboto", sans-serif;
  background-color: #ebeced;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.training-list {
  padding: 10px;
}
.training-list i {
  color: #4091c8;
  font-size: 18px;
}
.training-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}
.training-wrapper h3 {
  font-size: 18px;
  background-color: #4091c8;
  color: #ffffff;
  padding: 10px;
  text-align: center;
}
.training-syllabus {
  padding: 50px 0;
}
.training-syllabus .row {
  row-gap: 24px;
}
.course-details {
  padding-top: 30px;
  background: linear-gradient(0deg, #ffffff 0%, #e4f2fc 100%);
}
.apply-wrap {
  padding: 50px 0;
}
.apply-wrap-head {
  font-size: 40px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.apply-wrap .form-box {
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #eee;
}
.apply-wrap .form-box textarea {
  min-height: 115px;
}
.form-control,
.form-select {
  min-height: 50px;
  margin-bottom: 30px;
  border-radius: 10px;
  border-color: #eee;
}
.form-control:focus,
.form-select:focus {
  border-color: #4091c8;
}
.form-control:focus-visible,
.form-select:focus-visible {
  outline: 0;
}
.certificate {
  background: linear-gradient(0deg, #ffffff 0%, #e4f2fc 100%);
}
.cer-box {
  padding: 30px;
  background-color: #4091c8;
  border-radius: 15px;
  position: relative;
  transform: translateY(-30%);
}
.cer-tag {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
}
.cer-tag::before {
  content: "\F3C0";
  font-family: "remixicon";
  font-size: 10px;
  margin-right: 8px;
}
.cer-box h2 {
  color: #ffffff;
  font-weight: 700;
  max-width: 500px;
  margin-bottom: 20px;
  text-transform: capitalize;
  line-height: 40px;
  font-size: 28px;
}
.cer-box .cmn-btn {
  background: #ffffff;
  color: #4091c8;
  font-weight: 500;
}
.cer-box .cmn-btn:hover {
  background: #fa8626;
  color: #ffffff;
}
.cer-box .cer-box-img {
  position: absolute;
  bottom: 0;
  left: 60%;
}
.modal-box {
  max-width: 1000px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
}
.modal-box .content-area {
  /* background: linear-gradient(
    to bottom,
    #227fe4 0%,
    #2989d8 0%,
    #207cca 0%,
    #80c3d4 100%
  ); */
  padding: 20px;
  /* background: linear-gradient(
    to right,
    rgba(157, 210, 224, 1) 1%,
    rgba(153, 207, 223, 1) 48%,
    rgba(122, 193, 212, 1) 80%,
    rgba(128, 195, 212, 1) 100%
  ); */
  background: linear-gradient(
    to bottom,
    rgba(35, 127, 202, 1) 0%,
    rgba(62, 146, 205, 1) 27%,
    rgba(102, 176, 209, 1) 55%,
    rgba(163, 211, 225, 1) 100%
  );
}
.modal-box .content-area .logo {
  color: #fa8626;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}
.modal-box .content-area .logo span {
  font-size: 16px;
  color: #ffffff;
}
.modal-box .content-area h2 {
  font-size: 26px;
  line-height: 40px;
  color: #ffffff;
  margin-bottom: 15px;
  text-align: center;
}
.modal-box .content-area p {
  color: #ffffff;
  text-align: justify;
  font-size: 16px;
}
.modal-box .form-area h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.modal-box .form-area {
  padding: 20px;
}
.modal-box .form-area .cmn-btn {
  background: linear-gradient(
    to right,
    #e67712 0%,
    #e63f7c 45%,
    #b33cc7 75%,
    #8a32e8 100%
  );
  background-position: right center;
  transition: background-position 0.5s ease;
}
.modal-box .form-area .cmn-btn:hover {
  background: linear-gradient(
    to right,
    #ff881a 0%,
    #f84f88 45%,
    #c546d8 75%,
    #9f42f5 100%
  );
  background-size: 200%, 100%;
}
.modal-box .form-area p {
  margin-bottom: 15px;
}
.tc-response.tc-sent {
  border: 1px solid #eee;
  background-color: #ffffff;
  padding: 10px;
  width: max-content;
  border-radius: 10px;
  color: #12775a;
}
.modal-box .left-content {
  background-color: rgb(165 213 226);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.banner .tc-response.tc-sent {
  margin: 0 auto;
}
.con-form-box textarea {
  height: 100px;
}
.custom-template-page .breadcrumb {
  justify-content: center;
  border-radius: 15px;
  padding: 10px;
}
.custom-template-page .breadcrumb li {
  color: #fa8626;
  padding: 0;
  text-transform: capitalize;
}
.custom-template-page .breadcrumb li a {
  color: #ffffff;
  transition: 0.3s ease;
}
.custom-template-page .breadcrumb li a:hover {
  color: #fa8626;
}
.custom-template-page .breadcrumb-item + .breadcrumb-item::before {
  color: #fa8626;
  float: none;
  padding: 0 5px;
}
.accordion-button:not(.collapsed) {
  background-color: #ffffff;
}
.accordion-item {
  border-radius: 15px !important;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px !important;
}
.accordion-header .accordion-button {
  text-transform: capitalize;
  font-size: 18px;
  line-height: 30px;
  position: relative;
}
.accordion-button.collapsed {
  border-bottom: none;
}
.accordion-button:not(.collapsed) {
  border-bottom: 1px solid #eee;
}
.accordion-button {
  transition: border-color 0.3s ease;
}
.accordion-button.collapsed {
  border-bottom: 1px solid transparent;
}
.accordion-button:not(.collapsed) {
  border-bottom: 1px solid #eee;
}
.accordion-body {
  font-size: 16px;
  line-height: 26px;
}
/* footer */
.footer-top {
  padding: 50px 0;
  background-color: #013a65;
}
.footer-logo {
  max-width: 200px;
  display: block;
  margin-bottom: 20px;
}
.footer h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: capitalize;
}
.footer-abt p {
  padding-right: 20px;
  color: #ffffff;
}
.footer .courses {
  display: flex;
  gap: 50px;
}

.footer-bottom {
  background-color: #ffffff;
  padding: 10px 0;
}
.footer-bottom .copyright {
  text-align: center;
  font-size: 14px;
  color: #000;
}

.footer .courses li a,
.footer .useful-link a {
  display: inline-flex;
  gap: 5px;
  color: #ffffff;
  margin-bottom: 10px;
  transition: 0.3s ease;
  text-transform: capitalize;
}
.footer .courses li a:hover,
.footer .useful-link a:hover {
  transform: translateX(5px);
  color: #fa8626;
}
.foot-cont-list li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ffffff;
  margin-bottom: 10px;
  transition: 0.3s ease;
}
.foot-cont-list li a:hover {
  color: #fa8626;
}
.contact-head {
  text-align: center;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 20px;
  margin: auto;
  max-width: 650px;
  margin-bottom: 30px;
  line-height: 30px;
}
.contact h3 {
  text-transform: capitalize;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}
.con-wrapper {
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid #eee;
  background: #fbfbfb;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-details {
  padding-right: 20px;
  border-right: 1px solid #eee;
  height: 100%;
}
.con-details-wrapper li {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.con-details-wrapper .con-icon i {
  width: 50px;
  height: 50px;
  display: block;
  background-color: #ffffff;
  font-size: 24px;
  text-align: center;
  align-content: center;
  border-radius: 100%;
}
.con-details-wrapper .con-icon-details p {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 5px;
}
.con-social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.con-social-icon a {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: #000;
  border-radius: 100%;
  display: block;
  text-align: center;
  align-content: center;
  font-size: 20px;
  transition: 0.3s ease;
}
.con-social-icon a:hover {
  color: #fa8626;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
}
.con-details-wrapper .con-icon-details a {
  color: #000;
  transition: 0.3s ease;
  word-break: break-word;
  overflow-wrap: break-word;
}
.con-details-wrapper .con-icon-details a:hover {
  color: #fa8626;
}
.contact {
  padding: 50px 0px 200px;
}
.contact-map-box iframe {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 50px;
}
.career-vdo-box video {
  max-width: 100%;
  border-radius: 15px;
}
.course-list-drop .dropdown-item {
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}
/* success-banner */
.success-banner {
  padding: 50px 0;
  background-color: #3a7197;
}
.success-banner h1 {
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}
.success-stories-box {
  padding: 10px;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  position: relative;
  transition: 0.3s ease all;
  border: 1px solid #eee;
}
.play-icon-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.play-icon-box i {
  font-size: 40px;
  color: #fa8626;
  opacity: 0.7;
  transition: 0.3s ease;
}

.success-stories-box:hover .play-icon-box i {
  opacity: 1;
  animation: pulse 1s infinite;
  border-radius: 100%;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 #4091c8;
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 7px #22c55e00;
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 #22c55e00;
    opacity: 1;
  }
}
.success-stories-box img {
  width: 100%;
  border-radius: 15px;
}
.success-stories-box h3 {
  margin: 10px 0;
  text-transform: capitalize;
  color: #4091c8;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.success-stories-head {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 30px;
  line-height: 50px;
  font-size: 40px;
}
.success-stories .row {
  row-gap: 24px;
}
.success-stories {
  padding: 50px 0;
}
.testimonials {
  background: #f5f5f5;
  padding: 50px 0;
}
.student-test-head {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 80px;
  line-height: 50px;
  font-size: 40px;
}
.student-img-box img {
  height: 90px;
  width: 90px;
  border-radius: 100%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px dotted #4091c8;
  background-color: #ddd;
}
.student-test-box {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 50px 20px 20px;
  border-radius: 15px;
  position: relative;
  height: 100%;
  border: 1px solid #eee;
}
.student-test-box p {
  margin-bottom: 10px;
  line-height: 28px;
  text-align: justify;
}
.student-test-box h3 {
  font-size: 20px;
  color: #4091c8;
  font-weight: 700;
}
.testimonials .row {
  row-gap: 80px;
}
.digital-marketing-banner,
.apply-now-banner,
.contact-now-banner,
.about-us-banner {
  padding: 50px 0;
  background-color: #3a7197;
}
.digital-marketing-banner h1,
.apply-now-banner h1,
.contact-now-banner h1,
.about-us-banner h1 {
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}
.abt-us-wrap {
  padding: 50px 0;
}
.abt-us-wrap-box p {
  margin-bottom: 15px;
  line-height: 28px;
}
.abt-us-offer-box {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}
.abt-us-offer-box li {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
}
.abt-offer-details {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.abt-offer-details i {
  color: #4091c8;
}
.abt-us-offer-box h2 {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 20px;
}
/* future box */
.future {
  padding: 50px 0;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.9) 5%,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0) 70%,
      rgba(255, 255, 255, 0.9) 95%,
      #ffffff 100%
    ),
    url(../images/abt-course-planning.jpg) no-repeat;
  background-size: cover;
}
.future-box {
  text-align: center;
  margin-bottom: 40px;
}
.future-wrapper {
  padding: 20px;
  border-radius: 15px;
  background-color: #ffffff4d;
  height: 100%;
  backdrop-filter: blur(30px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.future-wrapper h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}
.future-wrapper .icon-box {
  background-color: #4091c8;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  text-align: center;
  align-content: center;
}
.future-wrapper .icon-box i {
  font-size: 24px;
  color: #ffffff;
}
.future-icon-box-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.future .row {
  row-gap: 24px;
}
.instructor {
  padding: 50px 0;
}
.instructor-box h2 {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
}
.instructor-box p {
  text-align: justify;
  padding-right: 30px;
  margin-bottom: 20px;
  font-size: 16px;
}
.instructor-img-box img {
  border-radius: 15px;
  width: 100%;
}
/* training-programs */
.training-programs {
  padding: 50px 0;
  background-color: #031743;
}
.training-program-head {
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
}
.training-programs-box {
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(
    340deg,
    rgba(1, 58, 101, 1) 35%,
    rgba(64, 145, 200, 1) 100%,
    rgba(1, 58, 101, 1) 75%
  );
  color: #ffffff;
  height: 100%;
  transition: 0.5s ease all;
}
.training-programs-box:hover {
  transform: translateY(-10px);
}
.training-programs-box i {
  font-size: 50px;
  margin-bottom: 20px;
  display: block;
}
.training-programs-box h3 {
  margin-bottom: 20px;
  font-weight: 600;
}
.training-programs-box p {
  margin-bottom: 20px;
}
.training-program-head h2 {
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}
/* about review */
.about-rev {
  padding: 50px 0;
  background: url(../images/abt-testimonials-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
}
.abt-rev-box {
  text-align: center;
  margin-bottom: 30px;
}
.abt-rev-box h2 {
  font-weight: 600;
  margin-bottom: 20px;
}
.abt-student-rev img {
  width: 90px !important;
  height: 90px;
  border-radius: 100%;
  margin-bottom: 20px;
}
.abt-student-rev {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
.abt-student-rev h3 {
  margin-bottom: 20px;
  text-transform: capitalize;
  color: #4091c8;
  font-weight: 700;
  font-size: 20px;
}
.abt-student-rev p {
  margin-bottom: 20px;
}
.abt-student-rev .star i {
  color: #fa8626;
}
.abt-rev-wrap-img-box {
  position: relative;
  height: auto;
}
.abt-rev-wrap-img-box img {
  height: 100%;
  border-radius: 15px;
  position: relative;
  width: 100%;
}
.abt-rev-wrap-img-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 15px;
  opacity: 0.5;
}
.abt-rev-wrap-cntnt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}
.abt-rev-wrap-cntnt h3 {
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 10px;
}
.abt-rev-wrap-cntnt .star {
  margin-bottom: 10px;
}
.abt-rev-wrap-cntnt .star i {
  color: #fa8626;
}
.abt-rev-wrap-cntnt p {
  color: #ffffff;
  font-size: 22px;
  text-transform: capitalize;
}
.faq {
  padding: 50px 0;
}
.faq-box {
  margin-bottom: 30px;
  text-align: center;
}
.faq-box h2 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}
.owl-dots {
  text-align: center;
  margin-top: 30px;
}

.owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 50%;
  background: #d6d6d6 !important;
  transition: all 0.3s ease;
}

.owl-dots .owl-dot.active {
  width: 32px;
  border-radius: 20px;
  background: #fa8626 !important;
}
.course-over {
  color: #fa8626;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.course-details-box h1 {
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 28px;
}
.course-details-box p {
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 30px;
}
.course-wrap li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.course-wrap i {
  color: #fa8626;
  font-size: 20px;
}
.course-wrap span {
  color: #4091c8;
  font-weight: 600;
}
.course-summary-box {
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  margin-bottom: 20px;
  position: relative;
  /* background: linear-gradient(-19deg, #ae601f 0%, #ae601f 1%, #f68628 100%); */
  filter: drop-shadow(0 0 17.5px rgba(94, 43, 0, 0.2));
  background: #ffffff;
  border: 1px solid #fa8626;
}
.course-summary-box .benefits-box {
  width: 80%;
}
.course-summary-box .benefits-box {
  width: 80%;
}
.course-summary-box-btn .cmn-btn {
  background-color: #fa8626;
}
.course-summary-box-btn .cmn-btn:hover {
  background-color: #4091c8;
}
.benefits-box li {
  display: flex;
  gap: 10px;
  /* color: #ffffff; */
  align-items: center;
  margin-bottom: 10px;
}
.benefits-box li i {
  color: #fa8626;
}
.benefits-box i {
  font-size: 20px;
}
.course-price-box {
  color: #ffffff;
  width: 20%;
  text-align: center;
}
.course-price-box p {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
}
.course-price {
  font-size: 24px;
  color: #4091c8;
}
.course-price i {
  color: #fa8626;
}
.course-price span {
  font-weight: 600;
  color: #333;
}
.benefits-box span {
  text-transform: capitalize;
  font-weight: 600;
  color: #333;
}
.course-summary-box::before {
  content: "";
  position: absolute;
  height: 100%;
  border-right: 2px dashed #fa8626;
  right: 25%;
  transform: translateX(-25%);
}
.course-wrap {
  margin-bottom: 40px;
}
.course-details .cmn-btn {
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
}
.course-details .form-box {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 15px;
  margin-left: auto;
  background-color: #ffffff;
  max-width: 600px;
}
.course-details .form-box strong {
  text-align: center;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  font-size: 30px;
}
.course-details .form-box p {
  font-weight: 600;
  margin-bottom: 20px;
}
.course-information {
  padding: 50px 0;
}
.course-description h2,
.course-description h3 {
  margin-bottom: 20px;
  margin-top: 30px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}
.course-description h2:first-child {
  margin-top: 0;
}
.course-description p {
  margin-bottom: 20px;
  line-height: 26px;
  font-size: 16px;
}
.course-links-sidebar {
  padding: 20px 20px 20px 30px;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  border: 1px solid #eee;
  position: sticky;
  top: 50px;
}
.course-links-sidebar .sidebar-list-content {
  padding: 20px 30px;
  border: 1px solid #ddd;
  border-radius: 15px;
  display: block;
  position: relative;
  color: #000000;
  font-weight: 600;
  transition: 0.3s ease;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.course-links-sidebar .sidebar-list-content span {
  margin: 0 auto;
}
.course-links-sidebar .sidebar-list-content:hover {
  color: #4091c8;
}
.course-links-sidebar .sidebar-list-content i {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  background-color: #ffffff;
  border-radius: 100%;
  border: 1px solid #ddd;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  align-content: center;
  color: #4091c8;
}
.course-links-sidebar h3 {
  font-size: 24px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.breadcrumb-item a {
  color: #4091c8;
  font-weight: 600;
  transition: 0.3s ease;
}
.breadcrumb-item a:hover {
  color: #fa8626;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\EA6E";
  font-family: "remixicon" !important;
}
.breadcrumb-item.active {
  color: #000;
  font-weight: 600;
}

.breadcrumb-item {
  font-size: 14px;
}
.course-description h5 {
  color: #4091c8;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
}
.course-description ul li {
  margin-bottom: 15px;
  /* position: relative; */
}
.course-description ul li::before {
  content: "\EB80";
  font-family: "remixicon";
  color: #4091c8;
  margin-right: 5px;
}
.course-description {
  padding-right: 30px;
}

.faq-items {
  padding: 30px 20px 20px;
  border: 1px solid #eee;
  border-radius: 15px;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  position: relative;
  cursor: default;
  transition: all ease-in-out 0.3s;
}
.faq-items:hover {
  transform: translateY(-4px);
}
.faq-items h4 {
  text-transform: capitalize;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 10px;
  position: relative;
}
.faq-items:before {
  content: "\F043";
  font-family: "remixicon";
  font-size: 18px;
  margin-right: 12px;
  position: absolute;
  left: 30px;
  top: -20px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #eeee;
  border-radius: 50%;
  text-align: center;
  padding: 6px;
  color: #ddd;
  transition: all ease-in-out 0.3s;
}
.faq-items:hover:before {
  color: #5a5a5a;
  content: "\F042";
}
.course-faq {
  padding-right: 30px;
}
.course-faq p {
  padding: 0px;
  font-size: 16px;
  line-height: 26px;
  position: relative;
}
.privacy-banner {
  padding: 50px 0;
  background-color: #3a7197;
}
.privacy-banner h1 {
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}
.policy {
  padding-bottom: 50px;
}
.policy-info {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  transform: translateY(-40px);
}
.policy-info ul li {
  margin-bottom: 15px;
  position: relative;
  font-size: 16px;
  line-height: 26px;
}
.policy-info ul li::before {
  content: "\EB80";
  font-family: "remixicon";
  color: #4091c8;
  margin-right: 5px;
}
.policy-info p {
  margin-bottom: 20px;
  line-height: 26px;
  font-size: 16px;
}
.policy-info h2,
.policy-info h3,
.policy-info h4 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}
.course-faq h3 {
  font-size: 24px;
  font-weight: 600;
  padding: 20px 0;
  text-align: center;
}
/* Blog Page CSS Start */
.blog-wraper {
  padding: 60px 0px;
}
.blog-wraper p {
  margin-bottom: 0px;
}
.blog-wraper.blog-listing-page fieldset {
  min-height: 520px;
  margin-bottom: 30px;
}
.blog-wraper fieldset {
  box-shadow: 0 0 14px #eaeaea;
  transition: all ease 0.3s;
  height: 100%;
  border-radius: 15px;
  transform: scale(1);
}
.blog-wraper fieldset:hover {
  transform: scale(1.02);
  transition: all ease 0.3s;
}
.blog-wraper fieldset .blog-pic-holder {
  width: 100%;
}
.blog-wraper fieldset .blog-pic-holder img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.blog-wraper fieldset .blog-pic-holder .post-date {
  background: #000;
  padding: 5px 15px;
  font-weight: 700;
  color: #fff;
  font-size: 12px;
}
.blog-wraper fieldset .blog-content-holder {
  padding: 15px 20px;
}
.blog-wraper fieldset .blog-content-holder h3 a {
  transition: 0.3s ease;
  font-size: 22px;
  color: #000;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}
.blog-wraper fieldset .blog-content-holder h3 a:hover {
  color: #4091c8;
}
.blog-wraper fieldset .blog-content-holder p {
  font-size: 14px;
  color: #819291;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 15px;
}
.blog-wraper fieldset .blog-content-holder .post-date::before {
  content: "\EB21";
  font-family: "remixicon";
  margin-right: 5px;
}
.blog-wraper fieldset .blog-content-holder .btn-theme {
  width: 150px;
  margin: 0 auto;
  display: table;
}
.single-blog {
  padding: 50px 0;
}
.single-blog .sidebar-block {
  background-color: #ffffff;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  border-radius: 15px;
}
.single-blog .sidebar-block h3 {
  background-color: #4091c8;
  font-size: 20px;
  line-height: 45px;
  color: #fff;
  padding: 0 15px;
  font-weight: 600;
  text-transform: uppercase;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-family: var(--font-heading);
  margin-bottom: 0;
}
.single-blog .sidebar-block ul li {
  border-bottom: 1px solid #eee;
  padding: 10px;
}
.single-blog .sidebar-block ul li:last-child {
  border-bottom: none;
}
.single-blog .sidebar-block ul li a {
  color: #000;
  font-size: 16px;
  transition: 0.3s ease;
  font-weight: 500;
}
.single-blog .sidebar-block ul li a:hover {
  color: #4091c8;
}
.single-blog .featured-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}
.single-blog .post-thumbnail .img-fluid {
  border-radius: 15px;
  margin-bottom: 20px;
}
.single-blog .single-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
.single-blog .clearfix p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 26px;
  padding-right: 20px;
  text-align: justify;
}
.single-blog .clearfix ul li {
  margin-bottom: 15px;
}
.single-blog .clearfix ul li::before {
  content: "\EB80";
  font-family: "remixicon";
  color: #4091c8;
  margin-right: 5px;
}
.single-blog .clearfix p a {
  color: #4091c8;
  transition: 0.3s ease;
}
.single-blog .clearfix p a:hover {
  color: #fa8626;
}
.single-blog .clearfix p strong {
  margin-bottom: 15px;
}
.single-blog .clearfix h2,
.single-blog .clearfix h3,
.single-blog .clearfix h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.single-blog .sidebar-block p {
  padding: 15px;
}
.single-blog .sidebar-block .form-control,
.single-blog .sidebar-block .form-select {
  margin-bottom: 15px;
}
.single-blog .clearfix .meta {
  display: inline-block;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 15px;
  background-color: #f5f5f5;
  font-size: 16px;
  font-weight: 600;
}
.single-blog .sidebar-block .btn-group,
.single-blog .sidebar-block .btn-group input {
  width: 100%;
}
/* thank you */
.thank-you {
  padding: 50px 0;
}
.thank-you .row {
  align-items: center;
}
.thank-img {
  text-align: center;
}
.thank-img img {
  height: 400px;
  border-radius: 15px;
}
.thank-box h1 {
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
}
.success-mssg .thank-you-for-reach {
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 30px;
  display: block;
  color: #fa8626;
  font-size: 18px;
}
.success-mssg .thank-you-for-reach span {
  color: #4091c8;
}
.thank-box p {
  line-height: 26px;
  font-size: 16px;
  text-align: center;
}
.success-mssg {
  text-align: center;
}
.success-mssg .checked {
  margin-bottom: 20px;
}
.success-mssg p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.svg-success {
  display: inline-block;
  vertical-align: top;
  height: 100px;
  width: 100px;
  opacity: 1;
  overflow: visible;
}
@-webkit-keyframes success-tick {
  0% {
    stroke-dashoffset: 16px;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 31px;
    opacity: 1;
  }
}
@keyframes success-tick {
  0% {
    stroke-dashoffset: 16px;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 31px;
    opacity: 1;
  }
}
@-webkit-keyframes success-circle-outline {
  0% {
    stroke-dashoffset: 72px;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0px;
    opacity: 1;
  }
}
@keyframes success-circle-outline {
  0% {
    stroke-dashoffset: 72px;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0px;
    opacity: 1;
  }
}
@-webkit-keyframes success-circle-fill {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes success-circle-fill {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.svg-success .success-tick {
  fill: none;
  stroke-width: 1px;
  stroke: #ffffff;
  stroke-dasharray: 15px, 15px;
  stroke-dashoffset: -14px;
  -webkit-animation: success-tick 450ms ease 1400ms forwards;
  animation: success-tick 450ms ease 1400ms forwards;
  opacity: 0;
}
.svg-success .success-circle-outline {
  fill: none;
  stroke-width: 1px;
  stroke: var(--lime-red);
  stroke-dasharray: 72px, 72px;
  stroke-dashoffset: 72px;
  -webkit-animation: success-circle-outline 300ms ease-in-out 800ms forwards;
  animation: success-circle-outline 300ms ease-in-out 800ms forwards;
  opacity: 0;
}
.svg-success .success-circle-fill {
  fill: #fa8626;
  stroke: none;
  opacity: 0;
  -webkit-animation: success-circle-fill 300ms ease-out 1100ms forwards;
  animation: success-circle-fill 300ms ease-out 1100ms forwards;
}
/* responsive */
@media screen and (-ms-high-contrast: active),
  screen and (-ms-high-contrast: none) {
  .svg-success .success-tick {
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    -webkit-animation: none;
    animation: none;
    opacity: 1;
  }
  .svg-success .success-circle-outline {
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    -webkit-animation: none;
    animation: none;
    opacity: 1;
  }
  .svg-success .success-circle-fill {
    -webkit-animation: none;
    animation: none;
    opacity: 1;
  }
}
@media (max-width: 1199px) {
  .course-price-box p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .course-price {
    font-size: 18px;
  }
  .benefits-box span {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1441px) and (max-width: 1920px) {
  .container {
    max-width: 1440px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .modal-box .image-area {
    display: none;
  }
  .modal-box .form-area .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    filter: invert(1);
    border: 1px solid #000000;
  }
}
@media (max-width: 991px) {
  .why-choose-us .row.first-row {
    row-gap: 24px;
  }
  .our-courses-box p {
    padding: 0;
    text-align: justify;
  }
  .instructor-box h2 {
    font-size: 24px;
  }
  .instructor-box .cmn-btn {
    margin-bottom: 20px;
  }
  .course-details .form-box {
    margin-top: 30px;
  }
  .course-details .form-box {
    max-width: 100%;
  }
  .desk-only-navbar {
    display: none;
  }
  .career-head {
    margin-bottom: 20px;
  }
  .con-wrapper .row {
    flex-direction: column-reverse;
  }
  .con-form-box .row {
    flex-direction: column;
  }
  .con-wrapper {
    padding: 20px;
  }
  .con-form-box {
    margin-bottom: 30px;
  }
  .contact {
    padding: 50px 0px 200px;
  }
  .contact-details {
    border-right: none;
    padding-right: 0;
  }
  .footer-top .course-list,
  footer h3 {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .banner .form-box {
    max-width: 100%;
  }
  .header-top-box {
    justify-content: center;
    gap: 10px;
  }
  .banner-head {
    margin-bottom: 20px;
  }
  .career-head p {
    padding-right: 0;
  }

  .why-choose-us-head p,
  .our-courses-box p {
    padding: 0;
  }

  .course-details {
    padding-top: 30px;
  }
  .training-syllabus {
    padding: 30px 0;
  }
  .price-box {
    flex-direction: column;
  }
  .price-box img {
    left: -30px;
    top: -7px;
  }
  .apply-wrap {
    padding: 30px 0;
  }
  .apply-wrap-head {
    font-size: 30px;
  }
  .success-stories,
  .testimonials,
  .abt-us-wrap {
    padding: 30px 0;
  }
  .success-stories-head {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 30px;
  }
  .abt-us-offer-box li {
    display: inline-block;
    width: 48%;
  }
  .future-icon-box-wrapper {
    flex-direction: column;
    justify-content: center;
  }
  .future-wrapper p {
    text-align: center;
  }
  .training-programs .row {
    row-gap: 24px;
  }
  .about-rev .row {
    gap: 24px;
  }
  .course-price {
    font-size: 20px;
  }
  .course-details .cmn-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
  .course-details .form-box strong {
    font-size: 24px;
  }
  .course-information {
    padding: 30px 0;
  }
  .course-description h2,
  .course-description h3 {
    font-size: 18px;
    line-height: 28px;
  }
  .course-description {
    padding-right: 0;
  }
  .course-faq h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .course-faq {
    padding-right: 0;
  }
  .faq-items h4 {
    font-size: 16px;
    line-height: 26px;
  }
  .course-details-box p {
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 26px;
  }
  .course-details-box h1 {
    font-size: 20px;
  }
  .modal-box .left-content {
    display: none;
  }
  .cer-box h2 {
    font-size: 24px;
    line-height: 30px;
    max-width: 300px;
  }
  .contact {
    padding: 50px 0px 150px;
  }
  .footer-top .course-list {
    margin-left: 0;
  }
  .footer .courses {
    row-gap: 0;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .header-top-box .top-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    display: none;
  }
  .header-top-box .top-right .social-icon .mob-only-icon {
    display: block;
  }
  .price-details h3,
  .price-details span {
    font-size: 16px;
  }

  .training-head {
    margin-bottom: 0;
  }
  .price-box img {
    height: 100px;
    width: 100px;
    left: -20px;
    top: -10px;
  }
  .price-box {
    padding: 10px;
    align-items: flex-end;
  }
  .price-box p {
    font-size: 20px;
  }
  .course-wrap li {
    align-items: flex-start;
  }
  .course-summary-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .course-summary-box::before {
    width: 100%;
    border-bottom: 2px dashed #ffffff;
    right: 0;
    transform: translateX(0);
    border-right: none;
    bottom: 33%;
  }
  .course-price-box p {
    margin-bottom: 10px;
  }
  .benefits-box li {
    align-items: flex-start;
  }
  .course-price-box {
    padding: 0;
    width: 100%;
  }
  .course-details .form-box {
    padding: 20px;
  }
  .course-summary-box .benefits-box {
    width: 100%;
  }
  .banner .form-box strong {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .mb-headr .cmn-btn {
    padding: 10px;
  }
  .mb-headr .sidenav .cmn-btn {
    padding: 8px 20px;
  }
  .cer-box .cer-box-img {
    display: none;
  }
  .cer-box h2 {
    max-width: 100%;
    font-size: 20px;
  }
  .contact {
    padding: 50px 0px 100px;
  }
  .contact .con-social-head {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }
  .con-social-icon {
    justify-content: center;
  }
  .con-details-wrapper .con-icon i {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .con-details-wrapper li {
    margin-bottom: 15px;
  }
  .course-price span {
    margin-left: 0;
  }
  .banner-head .train {
    padding: 5px 10px;
    margin-bottom: 30px;
  }
  .instructor-box p {
    padding-right: 0;
  }
}
