/* ======================
START OF MAIN SCSS FILE FOR ASTRO WEBSITE
=========================

TABLE OF INDEX:

# RESET CSS
# COLORS CSS
# VARIABLES CSS
# TYPOGRAPHY CSS
# MIXINS CSS
# BUTTONS CSS
====================== */
@import url("https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
  vertical-align: middle;
  max-width: 100%;
}

::-moz-selection {
  background: #20065f;
  text-shadow: none;
  color: #ffffff;
}

::selection {
  background: #20065f;
  color: #ffffff;
  text-shadow: none;
}

/********* utility headings ************/
/************* Gradient Mixin *****************/
/***************** font-weight ***********************/
/************ common property mixins ***************/
.btn {
  font-size: 16px;
  line-height: 1.3;
  padding: 16px 30px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
  white-space: nowrap;
  font-family: "Libre Franklin", sans-serif;
  position: relative;
  min-width: 162px;
}
@media screen and (max-width: 767px) {
  .btn {
    min-width: 135px;
    padding: 10px 20px;
    font-size: 14px;
  }
}
.btn.btn-sm {
  padding: 10px 20px;
  font-size: 15px;
  min-width: 118px;
}
@media only screen and (min-width: 1800px) {
  .btn {
    font-size: 18px;
    padding: 12px 25px;
    min-width: 180px;
  }
}
.btn.btn-themeRed, .btn.buy-now {
  color: #fff;
  border-radius: 5px;
  border: 1px solid #d9251d;
  background-color: #d9251d;
}
.btn.btn-themeRed:hover, .btn.buy-now:hover {
  background-color: #ac1d17;
  color: #fff;
  border: 1px solid #ac1d17;
}
.btn.btn-white {
  color: #d9251d;
  border-radius: 5px;
  border: 1px solid #fff;
  background-color: #fff;
}
.btn.btn-white:hover {
  background-color: #e6e6e6;
  color: #d9251d;
  border: 1px solid #e6e6e6;
}
.btn.btn-white.color-themeBlue {
  color: #204f95;
}
.btn.btnText-themeRed {
  color: #d9251d;
  background-color: transparent;
  border-bottom: 1px solid #d9251d;
  padding: 3px 0;
  min-width: auto;
  border-radius: 0;
}
.btn.btnText-themeRed:hover {
  color: #204f95;
  border-bottom: 1px solid #204f95;
}
.btn.btnText-disabled {
  color: gray;
  background-color: transparent;
  border-bottom: 1px solid grey;
  padding: 3px 0;
  min-width: auto;
  border-radius: 0;
  cursor: default;
}
.btn.btnText-disabled:hover {
  color: grey;
  border-bottom: 1px solid grey;
  cursor: default;
}
.btn.btnText-Blue {
  color: #0293de;
  background-color: transparent;
  border-bottom: 1px solid #0293de;
  padding: 3px 0;
  min-width: auto;
  border-radius: 0;
}
.btn.btnText-Blue:hover {
  color: #204f95;
  border-bottom: 1px solid #204f95;
}
.btn.btnText-white {
  color: #fff;
  background-color: transparent;
  border-bottom: 1px solid #fff;
  padding: 3px 0;
  min-width: auto;
  border-radius: 0;
}
.btn.btnText-white:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.btn.btn-border-themeRed {
  color: #d9251d;
  border-radius: 5px;
  border: solid 1px #d9251d;
  background-color: transparent;
}
.btn.btn-border-themeRed:hover {
  background-color: #d9251d;
  color: #fff;
}
.btn.btn-border-white {
  color: #fff;
  border-radius: 5px;
  border: solid 1px #fff;
  background-color: transparent;
}
.btn.btn-border-white:hover {
  background-color: #fff;
  color: #d9251d;
}
.btn.btn-text {
  color: #d9251d;
  padding: 10px 0;
}
.btn.btn-text:hover {
  color: #000000;
}
.btn.btn-text.w-auto {
  min-width: auto;
}
.btn::after {
  transition: all ease-in-out 200ms;
  -webkit-transition: all ease-in-out 200ms;
  -moz-transition: all ease-in-out 200ms;
  -ms-transition: all ease-in-out 200ms;
}

.btn.buy-now {
  border: 1px solid #0293de;
  background-color: #0293de;
  margin-left: 1rem;
}
.btn.buy-now:hover {
  background-color: #0272ab;
  color: #fff;
  border: 1px solid #0272ab;
}
@media only screen and (max-width: 767px) {
  .btn.buy-now {
    margin-left: 0;
  }
}

/* ====================== */
/* START OF HEADER */
/* ====================== */
/* wraper-header */
.wraper-header {
  top: 0;
  transition: all 0.3s ease-in-out;
  z-index: 900;
  background-color: transparent;
}
@media only screen and (max-width: 767px) {
  .wraper-header {
    background-color: #fff;
  }
}
.wraper-header.innerPage-wraper-header {
  background-color: #fff;
}
.wraper-header.innerPage-wraper-header .wraper-header-main .header-main .main-nav > ul > li > a {
  color: #555555;
}
.wraper-header.innerPage-wraper-header .wraper-header-main .header-main .main-nav > ul > li > a:hover {
  color: #d9251d;
}
.wraper-header.innerPage-wraper-header .wraper-header-main .header-main .header-mobilemenu-trigger img {
  filter: none;
}
.wraper-header.innerPage-wraper-header .wraper-header-main > .container {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .wraper-header.innerPage-wraper-header .wraper-header-main > .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 479px) {
  .wraper-header .probox .proinput {
    width: 120px !important;
  }
}

/* wraper-header-main */
@media only screen and (max-width: 479px) {
  div.asl_m .probox .proinput {
    margin: 0 0 0 1px !important;
  }
}

.wraper-header-main {
  /* header-main */
  /* fill-header */
}
.wraper-header-main > .container {
  padding-top: 20px;
  padding-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .wraper-header-main > .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.wraper-header-main .header-main {
  padding: 0;
  /* brand-logo */
  /* header-actionbar */
  /* header-mobilemenu-trigger */
  /* main-nav */
}
.wraper-header-main .header-main .brand-logo {
  margin-right: 8px;
}
@media only screen and (max-width: 1199px) {
  .wraper-header-main .header-main .brand-logo {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .wraper-header-main .header-main .brand-logo {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 479px) {
  .wraper-header-main .header-main .brand-logo {
    margin-right: 10px;
  }
}
.wraper-header-main .header-main .brand-logo img {
  width: 130px;
}
@media only screen and (max-width: 767px) {
  .wraper-header-main .header-main .brand-logo img {
    width: 100px;
  }
}
.wraper-header-main .header-main .mMenu-link {
  padding: 5px 15px;
  margin-right: 20px;
  border-radius: 5px;
  border: solid 1px #999;
  background-color: #ffffff;
  text-decoration: none;
}
@media only screen and (max-width: 1199px) {
  .wraper-header-main .header-main .mMenu-link {
    margin-right: 10px;
  }
}
.wraper-header-main .header-main .mMenu-link .ic-courses {
  color: #204f95;
  margin-right: 5px;
  font-size: 16px;
}
.wraper-header-main .header-main .mMenu-link .textInfo {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #555555;
  text-decoration: none;
}
.wraper-header-main .header-main .header-search-box {
  margin-left: 6px;
  width: 223px;
}
.wraper-header-main .header-main .header-search-box ::-webkit-input-placeholder { /* Edge */
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 479px) {
  .wraper-header-main .header-main .header-search-box ::-webkit-input-placeholder {
    font-size: 12px;
    font-weight: 400;
  }
}
.wraper-header-main .header-main .header-search-box :-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 479px) {
  .wraper-header-main .header-main .header-search-box :-ms-input-placeholder {
    font-size: 12px;
    font-weight: 400;
  }
}
.wraper-header-main .header-main .header-search-box ::-moz-placeholder {
  font-size: 14px;
  font-weight: 500;
}
.wraper-header-main .header-main .header-search-box ::placeholder {
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 479px) {
  .wraper-header-main .header-main .header-search-box ::-moz-placeholder {
    font-size: 12px;
    font-weight: 400;
  }
  .wraper-header-main .header-main .header-search-box ::placeholder {
    font-size: 12px;
    font-weight: 400;
  }
}
.wraper-header-main .header-main .header-search-box .wpdreams_asl_container {
  box-shadow: none;
  border: none;
  background: transparent;
}
.wraper-header-main .header-main .header-search-box div.asl_w .probox .promagnifier {
  height: 34px;
  width: 34px;
}
.wraper-header-main .header-main .header-search-box div.asl_w .probox .proloading, .wraper-header-main .header-main .header-search-box div.asl_w .probox .proclose,
.wraper-header-main .header-main .header-search-box div.asl_w .probox .promagnifier, .wraper-header-main .header-main .header-search-box div.asl_w .probox .prosettings {
  width: 34px;
  height: 34px;
}
@media only screen and (max-width: 479px) {
  .wraper-header-main .header-main .header-search-box div.asl_w .probox .proloading, .wraper-header-main .header-main .header-search-box div.asl_w .probox .proclose,
  .wraper-header-main .header-main .header-search-box div.asl_w .probox .promagnifier, .wraper-header-main .header-main .header-search-box div.asl_w .probox .prosettings {
    width: 30px;
    height: 30px;
    margin-top: 2px;
  }
}
.wraper-header-main .header-main .header-search-box #ajaxsearchlite1 .probox .proinput {
  margin-left: 0 !important;
}
.wraper-header-main .header-main .header-search-box #ajaxsearchlite1 .probox .proinput input[type=search] {
  height: 35px !important;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 2px !important;
  margin-top: -1px !important;
  width: 180px;
}
@media only screen and (max-width: 479px) {
  .wraper-header-main .header-main .header-search-box #ajaxsearchlite1 .probox .proinput input[type=search] {
    font-size: 12px;
  }
}
.wraper-header-main .header-main .header-search-box #ajaxsearchlite1 .probox {
  border: solid 1px #999;
  border-radius: 5px;
  box-shadow: none;
  height: auto !important;
  flex-direction: row-reverse;
  background: #fff;
}
.wraper-header-main .header-main .header-search-box .input-group {
  border: solid 1px #999;
  border-radius: 5px;
}
.wraper-header-main .header-main .header-search-box .input-group .input-group-text {
  background-color: #fff;
  border: none;
  font-size: 16px;
  color: #204f95;
}
.wraper-header-main .header-main .header-search-box .input-group .form-control {
  border-radius: 5px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #555555;
  padding-left: 0;
  width: 210px;
}
.wraper-header-main .header-main .header-search-box .input-group .form-control:focus {
  box-shadow: none;
  outline: none;
}
@media only screen and (max-width: 767px) {
  .wraper-header-main .header-main .header-search-box .input-group .form-control {
    width: 185px;
  }
}
.wraper-header-main .header-main .header-actionbar {
  margin-left: 10px;
}
.wraper-header-main .header-main .header-actionbar .btn {
  padding: 12px 20px 12px 20px;
}
.wraper-header-main .header-main .header-actionbar .btn:hover {
  color: #fff;
}
.wraper-header-main .header-main .header-actionbar .btn.btn-primary-color:hover, .wraper-header-main .header-main .header-actionbar .btn.btn-primary-color:focus {
  background-color: #fff;
  color: #d9251d;
}
.wraper-header-main .header-main .header-mobilemenu-trigger {
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: 20px;
  border: none;
  border-radius: 0;
  box-shadow: initial;
  cursor: pointer;
  min-width: auto;
}
.wraper-header-main .header-main .header-mobilemenu-trigger img {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .wraper-header-main .header-main .header-mobilemenu-trigger {
    position: absolute;
    right: 0;
    top: 12px;
  }
  .wraper-header-main .header-main .header-mobilemenu-trigger img {
    filter: none;
  }
}
.wraper-header-main .header-main .main-nav {
  vertical-align: top;
  font-size: 0;
  /* nav level one */
  /* nav level two */
  /* nav level three */
}
.wraper-header-main .header-main .main-nav > ul > li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 14px;
}
@media only screen and (max-width: 1199px) {
  .wraper-header-main .header-main .main-nav > ul > li {
    margin-right: 20px;
  }
}
.wraper-header-main .header-main .main-nav > ul > li:last-child,
.wraper-header-main .header-main .main-nav > ul > li:only-child {
  margin-right: 0;
}
.wraper-header-main .header-main .main-nav > ul > li > a {
  position: relative;
  display: block;
  font-family: "Libre Franklin", sans-serif;
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.wraper-header-main .header-main .main-nav > ul > li > a:before {
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  z-index: 0;
  content: " ";
  background-color: #d9251d;
  transition: all 0.3s ease-in-out;
}
.wraper-header-main .header-main .main-nav > ul > li.menu-item-has-children > a:after {
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 5px;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 13px;
}
.wraper-header-main .header-main .main-nav > ul > li > a:hover,
.wraper-header-main .header-main .main-nav > ul > li.current-menu-item > a,
.wraper-header-main .header-main .main-nav > ul > li.current-menu-parent > a,
.wraper-header-main .header-main .main-nav > ul > li.current-menu-ancestor > a {
  color: #d9251d;
}
.wraper-header-main .header-main .main-nav > ul > li > a:hover:before,
.wraper-header-main .header-main .main-nav > ul > li.current-menu-item > a:before,
.wraper-header-main .header-main .main-nav > ul > li.current-menu-parent > a:before,
.wraper-header-main .header-main .main-nav > ul > li.current-menu-ancestor > a:before {
  right: auto;
  left: 0;
  width: 100%;
}
.wraper-header-main .header-main .main-nav > ul > li > a i {
  font-size: 130%;
}
.wraper-header-main .header-main .main-nav > ul > li > ul {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 1;
  width: 180px;
  padding-top: 5px;
  padding-bottom: 6px;
  background-color: #fff;
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.wraper-header-main .header-main .main-nav > ul > li:hover > ul {
  top: calc(100% + 10px);
  opacity: 1;
  visibility: visible;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li {
  position: relative;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 15px 12px 15px;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #434343;
  line-height: 1.4;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li:hover > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li.current-menu-item > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li.current-menu-parent > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li.current-menu-ancestor > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li:hover > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li.current-menu-item > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li.current-menu-parent > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li.current-menu-ancestor > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul > li:hover > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul > li.current-menu-item > a {
  background-color: #e0e1e2;
  color: #d9251d;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li.menu-item-has-children > a:after,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li.menu-item-has-children > a:after,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul > li.menu-item-has-children > a:after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transform: translateY(-50%);
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul {
  position: absolute;
  top: 10%;
  right: 100%;
  z-index: 1;
  width: 160px;
  padding-top: 5px;
  padding-bottom: 6px;
  background-color: #fff;
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li:hover > ul,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li:hover > ul {
  top: -5px;
  opacity: 1;
  visibility: visible;
}
.wraper-header-main.fill-header {
  background-color: #f4faff;
  /* header-main */
}
.wraper-header-main.fill-header > .container {
  padding-top: 20px;
  padding-bottom: 20px;
}
.wraper-header-main.fill-header .header-main {
  /* header-actionbar */
  /* header-mobilemenu-trigger */
  /* main-nav */
}
.wraper-header-main.fill-header .header-main .header-actionbar .btn:hover {
  color: #204f95;
}
.wraper-header-main.fill-header .header-main .header-actionbar .btn.btn-primary-color:hover, .wraper-header-main.fill-header .header-main .header-actionbar .btn.btn-primary-color:focus {
  background-color: #204f95;
  color: #fff;
}
.wraper-header-main.fill-header .header-main .header-mobilemenu-trigger i {
  color: #000;
}
.wraper-header-main.fill-header .header-main .main-nav > ul > li > a {
  color: #000;
}

/* wraper-header */
.wraper-header.i-am-sticky {
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  /* wraper-header-main */
}
.wraper-header.i-am-sticky .wraper-header-main .header-main .main-nav > ul > li > a {
  color: #555555;
}
.wraper-header.i-am-sticky .wraper-header-main .header-main .main-nav > ul > li > a:hover {
  color: #d9251d;
}
.wraper-header.i-am-sticky .wraper-header-main .header-main .header-mobilemenu-trigger img {
  filter: none;
}
.wraper-header.i-am-sticky .wraper-header-main > .container {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .wraper-header.i-am-sticky .wraper-header-main > .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* ====================== */
/* END OF HEADER */
/* ====================== */
/* ====================== */
/* START OF MOBILE SIDR MENU */
/* ====================== */
/* sidr */
.sidr {
  background-color: #fff;
}
.sidr#main-menu {
  max-width: 400px;
}
body.sidr-open .sidr {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* mobile-header */
.wraper-mobile-header {
  transform: translateX(-110%);
  transition: transform 0.3s ease-in-out;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  display: block !important;
  width: 100%;
  padding: 0 0 !important;
  background-color: #fff;
  z-index: 999;
}
.wraper-mobile-header.open-mMenu {
  transform: translateX(0);
}

.mobile-header {
  flex-wrap: wrap;
  /*min-height:100vh;*/
  min-height: calc(100 * var(--vh));
  padding: 15px 20px 20px 20px;
  /* mobile-header-top */
  /* mobile-header-bottom */
}
.mobile-header .mobile-header-top {
  align-self: flex-start;
  /* brand-logo */
  /* mobile-menu-close */
  /* mobile-header-menu */
}
.mobile-header .mobile-header-top .brand-logo {
  vertical-align: top;
}
.mobile-header .mobile-header-top .brand-logo img {
  width: 120px;
}
.mobile-header .mobile-header-top .mobile-menu-close {
  margin-top: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.mobile-header .mobile-header-top .mobile-menu-close span {
  font-size: 20px;
  color: #000;
  line-height: 1;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul {
  list-style: none;
  /* nav level one */
  /* nav level two */
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li {
  position: relative;
  /*padding-right:45px;*/
  padding-bottom: 23px;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li:last-child, .mobile-header .mobile-header-top .mobile-header-menu > ul > li:only-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li:last-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li:only-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li:last-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li:only-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li:last-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li:only-child {
  padding-bottom: 0;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li > a {
  /*display:inline-block;*/
  display: block;
  padding-right: 45px;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #222222;
  line-height: 1.25;
  text-decoration: none;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.menu-item-has-children > .submenu-opener,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.menu-item-has-children > .submenu-opener,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li.menu-item-has-children > .submenu-opener,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li.menu-item-has-children > .submenu-opener {
  position: absolute;
  top: -13px;
  right: -17px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-items: center;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0);
  text-align: center;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.menu-item-has-children > .submenu-opener.opened,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.menu-item-has-children > .submenu-opener.opened,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li.menu-item-has-children > .submenu-opener.opened,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li.menu-item-has-children > .submenu-opener.opened {
  transform: rotateX(180deg);
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.current-menu-item > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.current-menu-parent > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.current-menu-ancestor > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.current-menu-item > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.current-menu-parent > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.current-menu-ancestor > a > li > ul > li > ul > li.current-menu-item > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li.current-menu-parent > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li.current-menu-ancestor > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li.current-menu-item > a {
  color: #d9251d;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li > a {
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul {
  padding-top: 20px;
  padding-bottom: 6px;
  padding-left: 20px;
  display: none;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li {
  padding-bottom: 16px;
}
.mobile-header .mobile-header-bottom {
  align-self: flex-end;
  /* mobile-header-actionbar */
}
.mobile-header .mobile-header-bottom .mobile-header-actionbar {
  margin-right: -10px;
  margin-left: -10px;
}
.mobile-header .mobile-header-bottom .mobile-header-actionbar > .col {
  padding-right: 10px;
  padding-left: 10px;
}

.ubermenu > ul > li.ubermenu-item {
  border: solid 1px white !important;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
}
.ubermenu > ul > li > a.ubermenu-target {
  padding: 5px 12px !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: white;
  padding-right: 25px !important;
  background: #e00000;
}
.ubermenu > ul > li > a.ubermenu-target:before {
  content: "\e803";
  font-family: "fontello";
  color: #fff;
  margin-right: 5px;
  font-size: 16px;
  line-height: 21px;
  display: inline-block;
  vertical-align: middle;
}
.ubermenu > ul > li > a.ubermenu-target:hover {
  color: #204f95;
}
.ubermenu.ubermenu-disable-submenu-scroll .ubermenu-active > .ubermenu-submenu.ubermenu-submenu-type-mega {
  background-color: transparent !important;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li a {
  color: #434343;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 > li:hover {
  background-color: #f1f1f1;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 > li:hover .ubermenu-target-description,
.ubermenu .ubermenu-nav .ubermenu-column-1-4 > li:hover .ubermenu-target-text {
  color: #2d5a9e;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 > li:hover > a {
  color: #2d5a9e;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-current-menu-item {
  background-color: #f1f1f1;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-current-menu-item .ubermenu-target-description,
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-current-menu-item .ubermenu-target-text {
  color: #2d5a9e;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-current-menu-item > a {
  color: #2d5a9e;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-active {
  background-color: #f1f1f1;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-active .ubermenu-target-description,
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-active .ubermenu-target-text {
  color: #2d5a9e;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-active > a {
  color: #2d5a9e;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 .ubermenu-target-description {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: #767676;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 .ubermenu-target-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 3px;
  color: #333333;
  display: block;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 .gallery-columns-3 {
  display: flex;
  flex-wrap: wrap;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 .gallery-columns-3 .gallery-item {
  width: 20% !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  padding-right: 15px;
  pointer-events: none;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 .gallery-columns-3 .gallery-item img {
  border: none !important;
  display: block;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 > li > ul > li ul {
  list-style: none;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 > li > ul > li ul li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 400;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 > li > ul > li ul li:last-child {
  margin-bottom: 15px;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 > li > ul > li ul li a {
  color: #000000;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 > li > ul > li ul li a:hover {
  color: #d9251d;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 > li > ul > li ul li.current-menu-item a {
  color: #d9251d;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 > li > ul > li ul li.current-menu-item a:hover {
  color: #d9251d;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 h3.ubermenu-widgettitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #333333;
  display: block;
  padding: 0 0;
  margin-bottom: 20px;
}
.ubermenu .ubermenu-target {
  color: #555555;
}
.ubermenu .ubermenu-target:hover {
  color: #d9251d;
}
.ubermenu .ubermenu-tab-layout-left > .ubermenu-tabs-group {
  border-color: #e5e5e5;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-2:not(:last-child) {
  border-right: 1px solid #e5e5e5;
  height: 100%;
}

.ubermenu-nojs.ubermenu-transition-shift .ubermenu-item:hover > .ubermenu-submenu-drop,
.ubermenu-transition-shift .ubermenu-item.ubermenu-active > .ubermenu-submenu-drop {
  padding-top: 22px !important;
  box-shadow: none !important;
}
.ubermenu-nojs.ubermenu-transition-shift .ubermenu-item:hover > .ubermenu-submenu-drop > li.ubermenu-column-full,
.ubermenu-transition-shift .ubermenu-item.ubermenu-active > .ubermenu-submenu-drop > li.ubermenu-column-full {
  background: #fff;
  border: 1px solid #e5e5e5;
}

.ubermenu-bound {
  position: static;
}

.ubermenu-tabs-group {
  min-height: initial !important;
  max-height: 420px !important;
  overflow-x: hidden !important;
}

.ubermenu .ubermenu-tab-layout-left > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel {
  height: 100%;
}

.ubermenu-bound {
  position: static !important;
}

.ubermenu-tabs-group {
  min-height: initial !important;
  max-height: 420px !important;
  overflow-x: hidden !important;
}

div.asl_r.vertical {
  margin-top: -10px;
}

/* ====================== */
/* END OF MOBILE SIDR MENU */
/* ====================== */
/* ========================== */
/* START OF RESPONSIVE CSS */
/* ========================== */
/* EXTRA LARGE DESKTOP PART */
/* EXTRA LARGE DESKTOP PART */
/* LARGE DESKTOP PART */
/* DESKTOP PART */
/* TABLET LANDSCAPE PART */
@media only screen and (max-width: 991px) {
  .mobile-header-menu .menu li .clickD {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
  }
  .mobile-header-menu .menu li .clickD:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid #d9251d;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .mobile-header-menu .menu li .clickD.toggled {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
  }
  .mobile-header-menu .menu li .sub-menu.show {
    display: block;
    position: static;
    padding: 20px 18px;
    background: #f6f6f6;
  }
  .mobile-header-menu .menu li .sub-menu.show li {
    list-style: none;
    list-style-type: none;
  }
  .mobile-header-menu .menu li .sub-menu.show li a {
    padding: 0;
  }
  .mobile-header-menu .menu li .sub-menu.show li.current-menu-item > a {
    color: #ed5500;
  }
  .mobile-header-menu .menu li .sub-menu.show li ul li.current-menu-item a {
    color: #ed5500;
  }
  .ubermenu-responsive-default.ubermenu-responsive .ubermenu-tabs > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel {
    position: absolute;
  }
  .ubermenu .ubermenu-tab .ubermenu-tab-content-panel {
    position: absolute !important;
  }
  .ubermenu .ubermenu-nav .ubermenu-column-3-4 {
    width: 70% !important;
  }
  .ubermenu .ubermenu-nav .ubermenu-column-1-4 {
    width: 30% !important;
  }
  .ubermenu-nojs.ubermenu-transition-shift .ubermenu-item:hover > .ubermenu-submenu-drop, .ubermenu-transition-shift .ubermenu-item.ubermenu-active > .ubermenu-submenu-drop {
    padding-top: 17px !important;
  }
}
@media screen and (max-width: 959px) {
  .ubermenu .ubermenu-nav .ubermenu-column-3-4 {
    width: 100% !important;
  }
  .ubermenu .ubermenu-nav .ubermenu-column-1-4 {
    width: 100% !important;
  }
  .header-select-search-wrap > button.ubermenu-responsive-toggle {
    display: none !important;
  }
  .ubermenu > ul > li.ubermenu-item {
    width: 100% !important;
    white-space: nowrap;
  }
  .ubermenu > ul > li.ubermenu-item {
    width: 100% !important;
  }
  .header-select-search-wrap > nav.ubermenu {
    width: 120px !important;
  }
}
/* TABLET PROTRAIT PART */
@media screen and (max-width: 767px) {
  .ubermenu .ubermenu-tab .ubermenu-tab-content-panel {
    position: static !important;
  }
  .ubermenu-responsive-default.ubermenu-responsive .ubermenu-tabs > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel {
    position: static;
  }
  .wraper-header-main .header-main .header-search-box {
    width: 230px;
    margin-left: 10px;
  }
}
/* HIGH DEFINITION PHONE PART */
@media screen and (max-width: 575px) {
  .wraper-header-main .header-main .header-search-box #ajaxsearchlite1 .probox .proinput input[type=search] {
    width: 100%;
  }
  .wraper-header-main .header-main .header-search-box {
    width: calc(100% - 130px);
    margin-left: 10px;
  }
  .wraper-header-main .header-select-search-wrap {
    min-width: 100%;
    margin-right: 0;
  }
  .wraper-header-main .header-select-search-wrap {
    width: 100%;
  }
  .wraper-header-main .header-main > .d-flex {
    width: 100%;
  }
  .ubermenu-nojs.ubermenu-transition-shift .ubermenu-item:hover > .ubermenu-submenu-drop, .ubermenu-transition-shift .ubermenu-item.ubermenu-active > .ubermenu-submenu-drop {
    padding-top: 11px !important;
  }
}
/* SMART PHONE LANDSCAPE PART */
@media screen and (max-width: 479px) {
  .header-select-search-wrap > nav.ubermenu {
    width: 100px !important;
  }
  .wraper-header-main .header-main .header-search-box {
    width: calc(100% - 105px);
    margin-left: 5px;
  }
  .ubermenu > ul > li > a.ubermenu-target {
    padding: 5px 5px !important;
    padding-right: 10px !important;
  }
  .ubermenu > ul > li > a.ubermenu-target .ubermenu-sub-indicator-close {
    width: 14px !important;
    font-size: 12px !important;
  }
  .ubermenu-sub-indicators .ubermenu-has-submenu-drop > .ubermenu-target > .ubermenu-sub-indicator {
    right: 3px !important;
  }
}
/* SMART PHONE LANDSCAPE PART */
/* ========================== */
/* END OF RESPONSIVE CSS */
/* ========================== */
::-moz-selection {
  background: #204f95;
  color: #fff;
}

::selection {
  background: #204f95;
  color: #fff;
}

* {
  outline: none !important;
}

.wht_customScroll {
  scrollbar-color: rgba(255, 255, 255, 0.7) rgba(234, 234, 234, 0.5);
  scrollbar-width: thin;
}

.wht_customScroll::-webkit-scrollbar {
  width: 3px;
}

/* Track */
.wht_customScroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px rgba(234, 234, 234, 0.5);
  border-radius: 10px;
}

/* Handle */
.wht_customScroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}

/* Handle on hover */
.wht_customScroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.7);
}

a {
  color: #d9251d;
  text-decoration: none;
}
a:hover {
  color: #000000;
}

img {
  height: auto;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: normal;
  font-family: "Libre Franklin", sans-serif;
}

h1 {
  font-size: 36px;
  line-height: 1.2;
}
@media screen and (min-width: 576px) {
  h1 {
    font-size: 46px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 56px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 66px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 76px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  h1 {
    font-size: 76px;
    line-height: 1.2;
  }
}

h2 {
  font-size: 30px;
  line-height: 1.1;
}
@media screen and (min-width: 576px) {
  h2 {
    font-size: 32px;
    line-height: 1.1;
  }
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 36px;
    line-height: 1.1;
  }
}
@media screen and (min-width: 992px) {
  h2 {
    font-size: 40px;
    line-height: 1.1;
  }
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 44px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  h2 {
    font-size: 44px;
    line-height: 1.2;
  }
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}
@media screen and (min-width: 576px) {
  h3 {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 23px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  h3 {
    font-size: 26px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  h3 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  h3 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  h3 {
    font-size: 44px;
    line-height: 1.2;
  }
}

h4 {
  font-size: 18px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  h4 {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  h4 {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  h4 {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  h4 {
    font-size: 34px;
    line-height: 1.2;
  }
}

h5 {
  font-size: 16px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  h5 {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  h5 {
    font-size: 22px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  h5 {
    font-size: 22px;
    line-height: 1.2;
  }
}

h6 {
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  h6 {
    font-size: 15px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  h6 {
    font-size: 15px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  h6 {
    font-size: 16px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  h6 {
    font-size: 16px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  h6 {
    font-size: 20px;
    line-height: 1.3;
  }
}

.font-weight-300 {
  font-weight: 300;
}

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

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

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

.font-weight-700 {
  font-weight: 700;
}

.font-weight-800 {
  font-weight: 800;
}

.font-weight-900 {
  font-weight: 900;
}

.color-white {
  color: #fff !important;
}

.color-black {
  color: #000000 !important;
}

.bg-lightGray {
  background-color: #f6f6f6;
}

.bg-aliceBlue {
  background-color: #f1f5f9;
}

.bg-themeBlue {
  background-color: #204f95;
}

a {
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}
a:hover, a:focus {
  text-decoration: none;
}

.btn:hover {
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}

body {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #fff;
  font-weight: normal;
  font-family: "Libre Franklin", sans-serif;
  color: #555555;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 992px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1400px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1800px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
}
body.lockScroll {
  overflow: hidden;
}

.page-overlay {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
  visibility: hidden;
}
.page-overlay.show {
  z-index: 90;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  visibility: visible;
}
.page-overlay.nav-search-overlay {
  top: 70px;
}

.sec-heading-wrap.sec-heading-mb {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .sec-heading-wrap.sec-heading-mb {
    margin-bottom: 35px;
  }
}
.sec-heading-wrap.mxWidth {
  max-width: 880px;
}
.sec-heading-wrap .sec-heading-block .mainHeadingText {
  font-weight: 400;
  color: #222222;
  font-size: 40px;
  font-family: "PT Serif", serif;
}
.sec-heading-wrap .sec-heading-block .headingText2 {
  font-weight: 400;
  color: #222222;
  font-size: 26px;
  line-height: 1.2;
  font-family: "PT Serif", serif;
}
@media screen and (min-width: 576px) {
  .sec-heading-wrap .sec-heading-block .headingText2 {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .sec-heading-wrap .sec-heading-block .headingText2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .sec-heading-wrap .sec-heading-block .headingText2 {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .sec-heading-wrap .sec-heading-block .headingText2 {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .sec-heading-wrap .sec-heading-block .headingText2 {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .sec-heading-wrap .sec-heading-block .headingText2 {
    font-size: 48px;
    line-height: 1.2;
  }
}
.sec-heading-wrap .sec-heading-block .linkText {
  font-size: 15px;
  font-weight: bold;
  color: #d9251d;
}
.sec-heading-wrap .sec-heading-block .linkText:hover {
  color: #000000;
}
.sec-heading-wrap .sec-heading-block .dscHeadingText-holder p {
  color: #555555;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}
.sec-heading-wrap .sec-heading-block .dscHeadingText-holder.color-black p {
  color: #222222;
}
.sec-heading-wrap .sec-heading-block .dscHeadingText-holder.color-white p {
  color: #fff;
}
.sec-heading-wrap .sec-heading-block .dscHeadingText-holder p + p {
  margin-top: 25px;
}

a.share-liks {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
}

.btn.btnText-themeRed.btnRed-new {
  border-bottom: none;
}

.btn-holder .btn.btnText-themeRed.btnRed-new {
  color: inherit !important;
  font-weight: 400;
}

.comnStyle-swiper-button {
  position: relative;
  height: 27px;
}
.comnStyle-swiper-button .swiper-button-next,
.comnStyle-swiper-button .swiper-button-prev {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: transparent;
  color: #999999;
  top: 0;
  margin: 0;
  border: none;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
  z-index: 1;
}
.comnStyle-swiper-button .swiper-button-next:after,
.comnStyle-swiper-button .swiper-button-prev:after {
  font-size: 18px;
}
.comnStyle-swiper-button .swiper-button-next:hover,
.comnStyle-swiper-button .swiper-button-prev:hover {
  color: #d9251d;
}
.comnStyle-swiper-button .swiper-button-next:not(.swiper-button-disabled),
.comnStyle-swiper-button .swiper-button-prev:not(.swiper-button-disabled) {
  color: #d9251d;
}
.comnStyle-swiper-button .swiper-button-next {
  right: 1px;
  left: auto;
}
.comnStyle-swiper-button .swiper-button-next:after {
  content: "\e800";
  font-family: "fontello";
}
.comnStyle-swiper-button .swiper-button-prev {
  right: 35px;
  left: auto;
}
.comnStyle-swiper-button .swiper-button-prev:after {
  content: "\e804";
  font-family: "fontello";
}
.comnStyle-swiper-button.button-center .swiper-button-prev {
  left: calc(50% - 45px);
  bottom: -25px;
  top: auto;
  transform: translateX(50%);
  right: auto;
}
.comnStyle-swiper-button.button-center .swiper-button-next {
  right: calc(50% - 45px);
  bottom: -25px;
  top: auto;
  transform: translateX(-50%);
  left: auto;
}

.course-swiper-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 27px;
  width: 100%;
  top: 40%;
}
.course-swiper-button .swiper-button-next,
.course-swiper-button .swiper-button-prev {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: transparent;
  color: #999999;
  top: 0;
  margin: 0;
  border: none;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
  z-index: 1;
}
.course-swiper-button .swiper-button-next:after,
.course-swiper-button .swiper-button-prev:after {
  font-size: 18px;
}
.course-swiper-button .swiper-button-next:hover,
.course-swiper-button .swiper-button-prev:hover {
  color: #d9251d;
}
.course-swiper-button .swiper-button-next:not(.swiper-button-disabled),
.course-swiper-button .swiper-button-prev:not(.swiper-button-disabled) {
  color: #d9251d;
}
.course-swiper-button.button-center .swiper-button-prev {
  left: calc(50% - 45px);
  bottom: -25px;
  top: auto;
  transform: translateX(50%);
  right: auto;
}
.course-swiper-button.button-center .swiper-button-next {
  right: calc(50% - 45px);
  bottom: -25px;
  top: auto;
  transform: translateX(-50%);
  left: auto;
}
.course-swiper-button .swiper-button-next {
  right: 1px;
  left: auto;
}
.course-swiper-button .swiper-button-next:after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-size: 40px;
  font-weight: 600;
}
.course-swiper-button .swiper-button-prev {
  left: auto;
}
.course-swiper-button .swiper-button-prev:after {
  content: "\f104";
  font-family: "Line Awesome Free";
  font-size: 40px;
  font-weight: 600;
}

.comnStyle-swiper-pagination {
  position: relative;
}
.comnStyle-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  opacity: 1;
}
.comnStyle-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #d9251d;
}
.comnStyle-swiper-pagination.text-center .swiper-pagination {
  left: 0;
  right: 0;
  z-index: 1;
}

.comn-sec-py {
  padding: 60px 0;
}
@media only screen and (max-width: 991px) {
  .comn-sec-py {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .comn-sec-py {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 667px) {
  .comn-sec-py {
    padding: 45px 0;
  }
}
@media only screen and (max-width: 467px) {
  .comn-sec-py {
    padding: 45px 0;
  }
}

.comn-dscInfo-holder .main-heading-block {
  margin-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  .comn-dscInfo-holder .main-heading-block {
    margin-bottom: 20px;
  }
}
.comn-dscInfo-holder .main-heading-block .mainHeadingText {
  font-size: 34px;
  line-height: 1.3;
  color: #222222;
  font-weight: 400;
  font-family: "PT Serif", serif;
}
@media screen and (min-width: 576px) {
  .comn-dscInfo-holder .main-heading-block .mainHeadingText {
    font-size: 34px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .comn-dscInfo-holder .main-heading-block .mainHeadingText {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .comn-dscInfo-holder .main-heading-block .mainHeadingText {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .comn-dscInfo-holder .main-heading-block .mainHeadingText {
    font-size: 45px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .comn-dscInfo-holder .main-heading-block .mainHeadingText {
    font-size: 45px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .comn-dscInfo-holder .main-heading-block .mainHeadingText {
    font-size: 52px;
    line-height: 1.3;
  }
}
.comn-dscInfo-holder .main-heading-block .mainHeadingText.fw-bold {
  font-weight: 700;
}
.comn-dscInfo-holder .main-heading-block .sideLine-heading {
  display: inline-block;
  position: relative;
  padding-right: 90px;
}
.comn-dscInfo-holder .main-heading-block .sideLine-heading:after {
  content: "";
  width: 70px;
  height: 2px;
  background-color: #555555;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: translateY(2px);
}
.comn-dscInfo-holder .main-heading-block .sideLine-heading .headingText {
  font-weight: 700;
  font-family: "PT Serif", serif;
  color: #222222;
  font-size: 22px;
  line-height: 1.2;
}
.comn-dscInfo-holder .dsc-content-block .dsc-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.comn-dscInfo-holder .dsc-content-block .dsc-text ul > li {
  padding-left: 20px;
  position: relative;
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #555555;
}
.comn-dscInfo-holder .dsc-content-block .dsc-text ul > li:first-child {
  margin-top: 0;
}
.comn-dscInfo-holder .dsc-content-block .dsc-text ul > li:after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #555555;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 100%;
}
.comn-dscInfo-holder .dsc-content-block .dsc-text p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #555555;
  margin: 0;
}
.comn-dscInfo-holder .dsc-content-block .dsc-text p + p,
.comn-dscInfo-holder .dsc-content-block .dsc-text ul + p {
  margin-top: 20px;
}
.comn-dscInfo-holder .btn-holder {
  margin-top: 35px;
}
@media only screen and (max-width: 991px) {
  .comn-dscInfo-holder .btn-holder {
    margin-top: 20px;
  }
}
.comn-dscInfo-holder .img-holder img {
  width: 100%;
}

.loader {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  /* Safari */
  animation: spin 2s linear infinite;
  background: conic-gradient(from 0.5turn, #f7fbff, #01458e 0.25turn, rgba(71, 47, 145, 0));
  border-image-slice: 1;
}
.loader:before {
  content: "";
  position: absolute;
  top: 2.6px;
  right: 2.6px;
  bottom: 2.6px;
  left: 2.6px;
  background: #fff;
  border-radius: 50%;
}

/* Safari */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* scrollup */
.scrollup {
  position: fixed;
  bottom: -70px;
  right: 1%;
  width: 50px;
  height: 50px;
  z-index: 999;
  background-color: #d9251d;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.scrollup.active {
  bottom: 110px;
}
@media screen and (max-width: 479px) {
  .scrollup.active {
    bottom: 140px;
  }
}
.scrollup i {
  font-size: 18px;
  color: #fff;
  line-height: 1;
}
.scrollup img {
  width: 18px;
  margin: 0 auto;
}
.scrollup:hover {
  background: #000;
}

.grecaptcha-badge {
  bottom: 40px !important;
  z-index: 10;
}
@media screen and (max-width: 479px) {
  .grecaptcha-badge {
    bottom: 70px !important;
  }
}

.o-hidd {
  overflow: hidden;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
}

.comn-footer-sec {
  width: 100%;
  padding: 100px 0 0;
  position: relative;
  background-color: #222222;
}
@media screen and (max-width: 767px) {
  .comn-footer-sec {
    padding: 60px 0 0;
  }
}
.comn-footer-sec .container {
  position: relative;
  z-index: 2;
}
.comn-footer-sec .comn-footer-top {
  padding-bottom: 30px;
}
.comn-footer-sec .footer-content-block.contact-content-block .headingText {
  font-size: 18px;
}
.comn-footer-sec .footer-content-block .headingText {
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: bold;
}
.comn-footer-sec .footer-content-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.comn-footer-sec .footer-content-block ul li {
  margin-bottom: 8px;
}
.comn-footer-sec .footer-content-block ul li a {
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
  color: #bbb;
  text-decoration: none;
}
.comn-footer-sec .footer-content-block ul li a:hover {
  color: #d9251d;
}
.comn-footer-sec .footer-content-block .contact-info-block {
  max-width: 347px;
}
.comn-footer-sec .footer-content-block .contact-info-block p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.7;
  font-weight: normal;
}
.comn-footer-sec .footer-content-block .contact-info-block p a {
  font-size: 14px;
  font-weight: normal;
  color: #bbb;
  text-decoration: none;
}
.comn-footer-sec .footer-content-block .contact-info-block p a:hover {
  color: #d9251d;
}
.comn-footer-sec .footer-content-block .adds-info-block {
  max-width: 300px;
}
.comn-footer-sec .footer-content-block .adds-info-block p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.7;
  font-weight: normal;
  margin: 0;
}
.comn-footer-sec .footer-content-block .adds-info-block p a {
  font-size: 14px;
  font-weight: normal;
  color: #bbb;
  text-decoration: none;
}
.comn-footer-sec .footer-content-block .adds-info-block p a:hover {
  color: #d9251d;
}
.comn-footer-sec .footer-content-block .adds-info-block p + p {
  margin-top: 20px;
}
.comn-footer-sec .footer-content-block .social-link-holder ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.comn-footer-sec .footer-content-block .social-link-holder ul li {
  margin-left: 15px;
}
.comn-footer-sec .footer-content-block .social-link-holder ul li:first-child {
  margin-left: 0;
}
.comn-footer-sec .footer-content-block .social-link-holder ul li a {
  color: #bbb;
  font-size: 30px;
  line-height: 1;
  display: inline-block;
}
.comn-footer-sec .footer-content-block .social-link-holder ul li a:hover {
  color: #d9251d;
}

.copyRight-sec {
  background-color: #111111;
  padding: 25px 0;
}
.copyRight-sec.stickyFooter {
  position: sticky;
  z-index: 9;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 10px 0;
}
.copyRight-sec .d-flex {
  flex-wrap: wrap;
}
.copyRight-sec p {
  margin: 0;
  color: #bbb;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .copyRight-sec p {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }
  .copyRight-sec p:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .copyRight-sec p:last-child {
    margin-bottom: 0;
  }
}
.copyRight-sec p:first-child a {
  color: #fff;
}
.copyRight-sec p:first-child a:hover {
  color: #d9251d;
}
.copyRight-sec p a {
  color: #bbb;
  text-decoration: none;
}
.copyRight-sec p a:hover {
  color: #d9251d;
}

hr {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.freeTestBox {
  display: block;
  margin: 0 auto;
  width: 1000px;
  max-width: 100%;
}
.freeTestBox iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.modal-dialog iframe {
  max-width: 100%;
}

/*Right Side Buttons Start*/
.sticky-container {
  padding: 0px;
  margin: 0px;
  position: fixed;
  right: -65px;
  top: 24%;
  width: 94px;
  z-index: 900;
}
@media screen and (max-width: 767px) {
  .sticky-container {
    top: 30%;
  }
}

.sticky li {
  list-style-type: none;
  background-color: #d9251d;
  color: #efefef;
  height: 57px;
  padding: 0px;
  margin: 0px 0px 1px 0px;
  border-radius: 5px 0 0 5px;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.sticky li .icon-item {
  margin-right: 10px;
  width: 47px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  padding-left: 5px;
}

.sticky li p {
  padding: 0px;
  margin: 0px;
  line-height: 43px;
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
}

.sticky li:hover {
  margin-left: -115px;
}

.sticky li a,
.sticky li a:hover {
  text-decoration: none;
}

/*Right Side Buttons End*/
/* ====== start comn-themeBlue-caption-sec ======== */
.comn-themeBlue-caption-sec {
  padding: 50px 0;
  background-color: #204f95;
}
.comn-themeBlue-caption-sec .caption-text-contant .text1 {
  font-size: 26px;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
  font-family: "PT Serif", serif;
}
@media screen and (min-width: 576px) {
  .comn-themeBlue-caption-sec .caption-text-contant .text1 {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .comn-themeBlue-caption-sec .caption-text-contant .text1 {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .comn-themeBlue-caption-sec .caption-text-contant .text1 {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .comn-themeBlue-caption-sec .caption-text-contant .text1 {
    font-size: 35px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .comn-themeBlue-caption-sec .caption-text-contant .text1 {
    font-size: 35px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .comn-themeBlue-caption-sec .caption-text-contant .text1 {
    font-size: 48px;
    line-height: 1.5;
  }
}
.comn-themeBlue-caption-sec .caption-text-contant .text2 {
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  font-weight: 400;
  font-family: "PT Serif", serif;
}
@media screen and (min-width: 576px) {
  .comn-themeBlue-caption-sec .caption-text-contant .text2 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .comn-themeBlue-caption-sec .caption-text-contant .text2 {
    font-size: 27px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .comn-themeBlue-caption-sec .caption-text-contant .text2 {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .comn-themeBlue-caption-sec .caption-text-contant .text2 {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .comn-themeBlue-caption-sec .caption-text-contant .text2 {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .comn-themeBlue-caption-sec .caption-text-contant .text2 {
    font-size: 44px;
    line-height: 1.5;
  }
}

/* ====== end comn-themeBlue-caption-sec  ======== */
.thankYou-sec {
  height: calc(100 * var(--vh));
  overflow: auto;
  width: 100%;
  padding: 35px 0;
}
.thankYou-sec .sec-heading-wrap {
  margin-bottom: 30px;
}
.thankYou-sec .sec-heading-wrap .sec-heading-block .dscHeadingText-holder p {
  font-size: 20px;
}
.thankYou-sec .logo-holder {
  width: 195px;
  margin: 0 auto 30px;
}
.thankYou-sec .logo-holder img {
  width: 100%;
}
.thankYou-sec .thankYou-img {
  max-width: 486px;
  height: auto;
}
.thankYou-sec .dsc-content p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
}
.thankYou-sec .dsc-content .btn-holder {
  margin: 30px auto 0;
}

.default-main-sec.comn-sec-py {
  padding: 60px 0;
}
.default-main-sec .default-main-content > *:last-child {
  margin-bottom: 0 !important;
}
.default-main-sec .default-main-content .block-mb-60 {
  margin-bottom: 60px;
}
.default-main-sec .default-main-content .dateInfo-block h4 {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  line-height: 1.5;
  margin: 0 0 10px;
}
.default-main-sec .default-main-content .dateInfo-block p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  color: #555555;
  margin: 0;
}
.default-main-sec .default-main-content h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #222222;
  margin-bottom: 20px;
  font-family: "PT Serif", serif;
}
.default-main-sec .default-main-content ul {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}
.default-main-sec .default-main-content ul > li {
  padding-left: 20px;
  position: relative;
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #555555;
}
.default-main-sec .default-main-content ul > li:first-child {
  margin-top: 0;
}
.default-main-sec .default-main-content ul > li:after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #555555;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 100%;
}
.default-main-sec .default-main-content p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #555555;
  margin: 0 0 40px;
}

.modal.review-modal .modal-content {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  border: none;
  border-radius: 0;
}
.modal.review-modal .modal-content .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #222;
  opacity: 1;
  font-size: 15px;
  cursor: pointer;
  z-index: 2;
}
.modal.review-modal .modal-content .btn-close:focus {
  box-shadow: none;
}
.modal.review-modal .modal-content .modal-body {
  padding: 45px 30px 30px;
}
.modal.review-modal .modal-content .modal-body .comment-reply-title {
  font-size: 22px;
  line-height: 1.3;
  color: #222222;
  font-family: "PT Serif", serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal.review-modal .modal-content .modal-body .comment-notes {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.3;
}
.modal.review-modal .modal-content .modal-body.comn-form .form-group {
  margin-bottom: 15px;
}
.modal.review-modal .modal-content .modal-body.comn-form .form-group > label {
  font-size: 13px;
  line-height: 1.4;
  color: #222222;
  margin-bottom: 3px;
}
.modal.review-modal .modal-content .modal-body.comn-form .form-group > label.error {
  color: #dc3232;
}
.modal.review-modal .modal-content .modal-body.comn-form .form-group > label span {
  color: #dc3232;
  font-size: 15px;
  line-height: 1.3;
}
.modal.review-modal .modal-content .modal-body.comn-form .designatn-field input {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #555555;
  height: 50px;
  width: 100%;
  border: solid 0.6px #888;
  border-radius: 5px;
}
.modal.review-modal .modal-content .modal-body.comn-form .img-upload-field .acf-basic-uploader {
  padding: 10px;
  border: solid 0.6px #888;
  border-radius: 5px;
  width: 100%;
}
.modal.review-modal .modal-content .modal-body.comn-form .form-submit .submit {
  font-size: 16px;
  line-height: 1.3;
  padding: 16px 30px;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
  border: 1px solid #d9251d;
  background-color: #d9251d;
}
.modal.review-modal .modal-content .modal-body.comn-form .acf-field .acf-label label {
  font-size: 13px;
  line-height: 1.4;
  color: #222222;
  font-weight: 500;
}
.modal.review-modal .modal-content .modal-body.comn-form .acf-field .acf-label {
  margin: 0 0 3px;
}
.modal.comn-modal .modal-content {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  border: none;
  border-radius: 0;
}
.modal.comn-modal .modal-content .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #222;
  opacity: 1;
  font-size: 15px;
  cursor: pointer;
  z-index: 2;
}
.modal.comn-modal .modal-content .btn-close:focus {
  box-shadow: none;
}
.modal.comn-modal .modal-content .modal-header {
  padding: 30px 30px 0;
  border: none;
}
.modal.comn-modal .modal-content .modal-header .modal-title {
  font-size: 22px;
  line-height: 1.3;
  color: #222222;
  font-family: "PT Serif", serif;
  font-weight: 700;
  margin-bottom: 0;
}
.modal.comn-modal .modal-content .modal-body {
  padding: 30px 30px 30px;
}
.modal.comn-modal .modal-content .modal-body .comment-notes {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.3;
}
.modal.comn-modal.getAcall-modal .comn-form .btn-holder {
  position: relative;
}
.modal.comn-modal.getAcall-modal .comn-form .btn-holder .ajax-loader {
  position: absolute;
  left: 0;
  z-index: 2;
  right: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  bottom: 0;
}

.wraper-error-main {
  min-height: calc(100vh - 10px);
  width: 100%;
}
.wraper-error-main .error-main .title {
  font-size: 34px;
  line-height: 1.3;
  font-weight: bold;
  color: #222222;
  font-family: "PT Serif", serif;
}
@media screen and (min-width: 576px) {
  .wraper-error-main .error-main .title {
    font-size: 34px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .wraper-error-main .error-main .title {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .wraper-error-main .error-main .title {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .wraper-error-main .error-main .title {
    font-size: 45px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .wraper-error-main .error-main .title {
    font-size: 45px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .wraper-error-main .error-main .title {
    font-size: 52px;
    line-height: 1.3;
  }
}
.wraper-error-main .error-main .action-area {
  max-width: 550px;
  margin: 0 auto;
}

.cstm-single .rw-ui-container {
  display: none;
}

#mega-menu-wrap-courses .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
  transform: scale(1);
}

#mega-menu-wrap-courses .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
  height: 16px;
  width: 20px;
}

#mega-menu-wrap-courses .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-courses .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-courses .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
  height: 2px;
  width: 100%;
}

#mega-menu-wrap-courses .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
  top: 7px;
}

#mega-menu-wrap-courses .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
  top: 14px;
}

#mega-menu-wrap-courses .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
  margin-left: 8px;
}

#mega-menu-wrap-courses .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
  margin-right: 8px;
}

#mega-menu-wrap-courses .mega-menu-toggle {
  height: 30px;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  #mega-menu-wrap-courses .mega-menu-toggle + #mega-menu-courses {
    position: absolute;
    top: 100%;
    left: 0;
    width: 150px;
    max-height: calc(100vh - 70px);
    overflow-y: scroll;
  }
}

#mega-menu-wrap-courses .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
  transform: translate3d(0, -14px, 0) rotate(-90deg);
}

.blog-comments .reply-form .comment-respond .comment-reply-title {
  font-size: 26px;
  line-height: 1.2;
  line-height: 1.3;
  color: #222222;
  font-family: "PT Serif", serif;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 576px) {
  .blog-comments .reply-form .comment-respond .comment-reply-title {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .blog-comments .reply-form .comment-respond .comment-reply-title {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .blog-comments .reply-form .comment-respond .comment-reply-title {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .blog-comments .reply-form .comment-respond .comment-reply-title {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .blog-comments .reply-form .comment-respond .comment-reply-title {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .blog-comments .reply-form .comment-respond .comment-reply-title {
    font-size: 48px;
    line-height: 1.2;
  }
}
.blog-comments .reply-form .comment-respond input[type=text] {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #555555;
  height: 50px;
  width: 100%;
  border: solid 0.6px #888;
  border-radius: 5px;
  background-color: #fff;
}
.blog-comments .reply-form .comment-respond textarea {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #555555;
  height: 200px;
  width: 100%;
  border: solid 0.6px #888;
  border-radius: 5px;
  background-color: #fff;
  resize: none;
}
.blog-comments .reply-form .comment-respond .comment-form-comment > label {
  font-size: 13px;
  line-height: 1.4;
  color: #222222;
  margin-bottom: 3px;
}
.blog-comments .reply-form .comment-respond .form-submit .submit {
  font-size: 16px;
  line-height: 1.3;
  padding: 16px 30px;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
  border: 1px solid #d9251d;
  background-color: #d9251d;
}

.exam-prep-main-section .sec-heading-wrap {
  margin-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .exam-prep-main-section .sec-heading-wrap {
    margin-bottom: 50px;
  }
}
.exam-prep-main-section .sec-heading-wrap .subheading {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 0 0;
}

.exam-prep-wrap {
  margin-bottom: -30px;
}
.exam-prep-wrap .list-items {
  margin-bottom: 30px;
}
.exam-prep-wrap .headingText {
  font-size: 18px;
  line-height: 1.67;
  font-weight: 700;
}
.exam-prep-wrap .dsc-text {
  font-size: 16px;
  line-height: 1.75;
}
.exam-prep-wrap .dsc-text p {
  margin-bottom: 0;
}
.exam-prep-wrap .icon-holder {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 12px;
  color: #204f95;
}

.seal-approval-section .container {
  max-width: 900px;
}
.seal-approval-section .sec-heading-wrap {
  margin-bottom: 80px;
}
.seal-approval-section .sec-heading-wrap .mainHeadingText {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .seal-approval-section .sec-heading-wrap {
    margin-bottom: 50px;
  }
}
.seal-approval-section .headingText {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .seal-approval-section .data-content {
    margin-top: 30px;
  }
}
.seal-approval-section .dsc-text {
  color: #fff;
  font-size: 16px;
  line-height: 1.75;
}
.seal-approval-section .dsc-text p:last-child {
  margin-bottom: 0;
}

.default-section {
  font-size: 18px;
  line-height: 1.89;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .default-section {
    font-size: 16px;
  }
}
.default-section a {
  color: #235299;
  text-decoration: none;
}
.default-section a:hover {
  color: #d9251d;
  text-decoration: none;
}
.default-section h2 {
  font-size: 26px;
  line-height: 1.3;
  color: #222222;
  font-family: "PT Serif", serif;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (min-width: 576px) {
  .default-section h2 {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .default-section h2 {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .default-section h2 {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .default-section h2 {
    font-size: 35px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .default-section h2 {
    font-size: 35px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .default-section h2 {
    font-size: 48px;
    line-height: 1.5;
  }
}
.default-section h2:last-child {
  margin-bottom: 0;
}
.default-section h3 {
  color: #000000;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 18px;
}
@media screen and (min-width: 576px) {
  .default-section h3 {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .default-section h3 {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .default-section h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .default-section h3 {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .default-section h3 {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .default-section h3 {
    font-size: 26px;
    line-height: 1.4;
  }
}
.default-section h3:last-child {
  margin-bottom: 0;
}
.default-section h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}
.default-section h4:last-child {
  margin-bottom: 0;
}
.default-section ul, .default-section ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.default-section ul:last-child, .default-section ol:last-child {
  margin-bottom: 0;
}
.default-section img {
  margin-bottom: 25px;
}
.default-section img:last-child {
  margin-bottom: 0;
}
.default-section p:empty {
  display: none;
}
.default-section p:last-child {
  margin-bottom: 0;
}
.default-section blockquote {
  background-color: #204f95;
  padding: 15px 35px;
  margin-bottom: 20px;
  border-radius: 11px;
  color: #fff;
}
.default-section blockquote > p {
  margin: 0;
  color: #fff;
}
.default-section blockquote > p + p {
  margin-top: 20px;
}

table td {
  border: 1px solid #d8d6d7;
  padding: 8px 10px;
}
table tr:first-child {
  font-weight: 700;
}

.ht-ctc.ht-ctc-chat {
  z-index: 10 !important;
}
@media screen and (max-width: 479px) {
  .ht-ctc.ht-ctc-chat {
    bottom: 129px !important;
  }
}

.no_trngs_crse {
  color: #ff0000;
  font-size: 25px;
}

.contnt-ldng-box {
  position: relative;
}
.contnt-ldng-box .loading-wraper {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  left: 0;
  top: 0;
  display: none;
}
.contnt-ldng-box .loading-wraper span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 50px;
  height: 50px;
  margin: auto;
  background: url("../images/ajax-loader.gif") no-repeat center center;
  background-size: 100% auto;
}

.page-id-597 .ldr {
  display: inline-block;
  margin-right: 15px;
}

.page-id-597 .no_trainings {
  text-align: center;
  margin-top: 20px;
}

.page-id-597 .no_trainings p {
  font-size: 30px;
  color: #d9251d;
}

.btn-holder span.btn.btnText-themeRed {
  color: #d9251d;
  pointer-events: none;
}

.trainer_linkk {
  line-height: 1.4;
  font-size: 14px;
  font-weight: 600;
  color: #222222;
}

.trainer_linkk:hover {
  color: #d9251d;
}

.home-banner-sec {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .home-banner-sec {
    margin-top: 66px;
  }
}
.home-banner-sec .home-banner {
  padding-top: 55%;
  position: relative;
}
.home-banner-sec .home-banner:after {
  content: "";
  width: 50%;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.4) 32%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.home-banner-sec .home-banner:before {
  content: "";
  width: 50%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 67%, rgba(0, 0, 0, 0.8) 100%);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.home-banner-sec .home-banner .img-holder {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}
.home-banner-sec .home-banner .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-banner-sec .home-banner .banner-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
}
.home-banner-sec .home-banner .banner-content .content-holder {
  max-width: 100%;
  margin-top: 0;
}
.home-banner-sec .home-banner .banner-content .content-holder .main-headingText {
  font-size: 30px;
  line-height: 1.2;
  color: #222222;
  font-family: "PT Serif", serif;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .home-banner-sec .home-banner .banner-content .content-holder .main-headingText {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .home-banner-sec .home-banner .banner-content .content-holder .main-headingText {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .home-banner-sec .home-banner .banner-content .content-holder .main-headingText {
    font-size: 50px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .home-banner-sec .home-banner .banner-content .content-holder .main-headingText {
    font-size: 60px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .home-banner-sec .home-banner .banner-content .content-holder .main-headingText {
    font-size: 60px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .home-banner-sec .home-banner .banner-content .content-holder .main-headingText {
    font-size: 88px;
    line-height: 1.2;
  }
}
.home-banner-sec .home-banner .banner-content .content-holder .banner-subheading {
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.65);
}
.home-banner-sec .home-banner .banner-content .content-holder .btn-holder {
  margin-top: 21px;
}
@media screen and (max-width: 767px) {
  .home-banner-sec .home-banner .banner-content .content-holder .btn-holder {
    margin-top: 15px;
  }
}

.counter-sec {
  background-image: url(../images/home/counter-bg.jpg);
  background-position: center;
  background-size: cover;
  padding-top: 45px;
  padding-bottom: 45px;
  position: relative;
}
.counter-sec:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.counter-sec .container {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
.counter-sec .row {
  margin-left: -20px;
  margin-right: -20px;
}
.counter-sec .row .col-md-3 {
  padding-left: 20px;
  padding-right: 20px;
}
.counter-sec .counter-block {
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .counter-sec .counter-block {
    max-width: 240px;
    margin: 20px auto 0;
  }
}
.counter-sec .counter-block .counterNumbText {
  font-family: "PT Serif", serif;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (min-width: 576px) {
  .counter-sec .counter-block .counterNumbText {
    font-size: 34px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .counter-sec .counter-block .counterNumbText {
    font-size: 34px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .counter-sec .counter-block .counterNumbText {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .counter-sec .counter-block .counterNumbText {
    font-size: 50px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .counter-sec .counter-block .counterNumbText {
    font-size: 50px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .counter-sec .counter-block .counterNumbText {
    font-size: 60px;
    line-height: 1.2;
  }
}
.counter-sec .counter-block .counterInfoText {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #bbbbbb;
}
@media screen and (min-width: 576px) {
  .counter-sec .counter-block .counterInfoText {
    font-size: 18px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .counter-sec .counter-block .counterInfoText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .counter-sec .counter-block .counterInfoText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .counter-sec .counter-block .counterInfoText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .counter-sec .counter-block .counterInfoText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .counter-sec .counter-block .counterInfoText {
    font-size: 26px;
    line-height: 1.4;
  }
}

.our_course_tab_sec {
  width: 100%;
  position: relative;
}
.our_course_tab_sec:after {
  content: "";
  width: 100%;
  height: 40%;
  background-color: #f6f6f6;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.our_course_tab_sec.withoutAfter:after {
  display: none;
}
.our_course_tab_sec .container {
  position: relative;
  z-index: 2;
}
.our_course_tab_sec .our_course_tab .our_course_tab_top {
  margin-bottom: 75px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .our_course_tab_sec .our_course_tab .our_course_tab_top {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 991px) {
  .our_course_tab_sec .our_course_tab .our_course_tab_top {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .our_course_tab_sec .our_course_tab .our_course_tab_top {
    margin-bottom: 20px;
  }
}
.our_course_tab_sec .our_course_tab .our_course_tab_top .our_course_tab-nav-holder {
  position: relative;
  flex: 1;
  min-width: 0;
  width: 100%;
}
.our_course_tab_sec .our_course_tab .our_course_tab_top .our_course_tab-nav-holder .our_course_tab-nav {
  position: relative;
  max-width: 100%;
}
.our_course_tab_sec .our_course_tab .our_course_tab_top .our_course_tab-nav-holder .our_course_tab-nav.white-color-tab-nav li button {
  color: #fff;
}
.our_course_tab_sec .our_course_tab .our_course_tab_top .our_course_tab-nav-holder .our_course_tab-nav.white-color-tab-nav li button.active .insideText {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.our_course_tab_sec .our_course_tab .our_course_tab_top .our_course_tab-nav-holder .ps__rail-x:hover > .ps__thumb-x,
.our_course_tab_sec .our_course_tab .our_course_tab_top .our_course_tab-nav-holder .ps__rail-x:focus > .ps__thumb-x,
.our_course_tab_sec .our_course_tab .our_course_tab_top .our_course_tab-nav-holder .ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #204f95;
  height: 11px;
}
.our_course_tab_sec .our_course_tab .our_course_tab_top .nav-tabs {
  border-bottom: none;
  white-space: nowrap;
  padding: 10px 0;
}
.our_course_tab_sec .our_course_tab .our_course_tab_top .nav-tabs li button {
  color: #555555;
  font-size: 16px;
  background-color: transparent;
  margin-left: 0;
  padding: 5px 15px;
  position: relative;
  font-family: "Libre Franklin", sans-serif;
  font-weight: normal;
  border: none;
  border-bottom: 1px solid transparent;
}
.our_course_tab_sec .our_course_tab .our_course_tab_top .nav-tabs li button:after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #a2a2a2;
  position: absolute;
  left: -1px;
  top: 12px;
}
.our_course_tab_sec .our_course_tab .our_course_tab_top .nav-tabs li button.active {
  color: #d9251d;
  font-weight: 600;
  border-bottom: 1px solid #d9251d;
}
.our_course_tab_sec .our_course_tab .our_course_tab_top .nav-tabs li button.active .insideText {
  color: #d9251d;
  border-bottom: 1px solid #d9251d;
  font-weight: 600;
}
.our_course_tab_sec .our_course_tab .our_course_tab_top .nav-tabs li:first-child button {
  padding-left: 0;
}
.our_course_tab_sec .our_course_tab .our_course_tab_top .nav-tabs li:first-child button:after {
  display: none;
}
.our_course_tab_sec .our_course_tab .our_course_tab_bottom .our_course_tab_bottom_slider .swiper-container-autoheight, .our_course_tab_sec .our_course_tab .our_course_tab_bottom .our_course_tab_bottom_slider .swiper-container-autoheight .swiper-slide {
  height: 100% !important;
}
.our_course_tab_sec .our_course_tab .our_course_tab_bottom .our_course_tab_bottom_slider .swiper-container {
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 1200px) {
  .our_course_tab_sec .our_course_tab .our_course_tab_bottom .our_course_tab_bottom_slider .swiper-container .swiper-wrapper.no-3 {
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .our_course_tab_sec .our_course_tab .our_course_tab_bottom .our_course_tab_bottom_slider .swiper-container .swiper-wrapper.no-2 {
    justify-content: center;
  }
}
@media screen and (min-width: 576px) {
  .our_course_tab_sec .our_course_tab .our_course_tab_bottom .our_course_tab_bottom_slider .swiper-container .swiper-wrapper.no-1 {
    justify-content: center;
  }
}
.our_course_tab_sec .our_course_tab .our_course_tab_bottom .tab-panel-content .dscText p {
  font-size: 16px;
  line-height: 1.75;
  color: #222222;
  margin: 0;
}
.our_course_tab_sec .our_course_tab .our_course_tab_bottom .tab-panel-content .dscText p + p {
  margin-top: 20px;
}
.our_course_tab_sec .our_course_tab .our_course_tab_bottom .tab-panel-content .dscText ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.our_course_tab_sec .our_course_tab .our_course_tab_bottom .tab-panel-content .dscText ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: #222222;
  position: relative;
  padding-left: 35px;
  margin-top: 20px;
}
.our_course_tab_sec .our_course_tab .our_course_tab_bottom .tab-panel-content .dscText ul li:first-child {
  margin-top: 0;
}
.our_course_tab_sec .our_course_tab .our_course_tab_bottom .tab-panel-content .dscText ul li:after {
  content: "\e81a";
  font-family: "fontello";
  position: absolute;
  top: 6px;
  font-size: 18px;
  line-height: 1;
  color: #204f95;
  left: 0;
}
.our_course_tab_sec .our_course_tab .our_course_tab_bottom .tab-panel-content .dscText ul li p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: #222222;
  margin: 0;
}

.course-listing-item {
  padding: 10px 0;
  width: 100%;
  display: flex;
}
.course-listing-item .listing-content-holder {
  width: 100%;
  padding: 20px 35px 0;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.course-listing-item .listing-content-holder .img-holder {
  width: 103px;
  height: 103px;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .course-listing-item .listing-content-holder .img-holder {
    margin-bottom: 15px;
  }
}
.course-listing-item .listing-content-holder .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.course-listing-item .listing-content-holder .data-content {
  width: 100%;
}
.course-listing-item .listing-content-holder .data-content .titleText {
  font-weight: bold;
  color: #000000;
  font-size: 24px;
  line-height: 1.2;
}
@media screen and (min-width: 576px) {
  .course-listing-item .listing-content-holder .data-content .titleText {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .course-listing-item .listing-content-holder .data-content .titleText {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .course-listing-item .listing-content-holder .data-content .titleText {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .course-listing-item .listing-content-holder .data-content .titleText {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .course-listing-item .listing-content-holder .data-content .titleText {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .course-listing-item .listing-content-holder .data-content .titleText {
    font-size: 24px;
    line-height: 1.2;
  }
}
.course-listing-item .listing-content-holder .data-content .dscText p {
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .course-listing-item .listing-content-holder .data-content .dscText p {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 992px) {
  .course-listing-item .listing-content-holder .data-content .dscText p {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1200px) {
  .course-listing-item .listing-content-holder .data-content .dscText p {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1400px) {
  .course-listing-item .listing-content-holder .data-content .dscText p {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1800px) {
  .course-listing-item .listing-content-holder .data-content .dscText p {
    font-size: 16px;
    line-height: 1.6;
  }
}
.course-listing-item .listing-content-holder .data-content .top-info-holder {
  padding-bottom: 10px;
}
.course-listing-item .listing-content-holder .data-content .bottom-info-holder {
  border-top: solid 1px #bbb;
  padding: 20px 0;
}
.course-listing-item .listing-content-holder .data-content .bottom-info-holder .ratingText-box .la-star {
  color: #204f95;
}
.course-listing-item .listing-content-holder .data-content .bottom-info-holder .ratingText-box .ratingText {
  color: #000;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .course-listing-item .listing-content-holder .data-content .bottom-info-holder .ratingText-box .ratingText {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 992px) {
  .course-listing-item .listing-content-holder .data-content .bottom-info-holder .ratingText-box .ratingText {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1200px) {
  .course-listing-item .listing-content-holder .data-content .bottom-info-holder .ratingText-box .ratingText {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1400px) {
  .course-listing-item .listing-content-holder .data-content .bottom-info-holder .ratingText-box .ratingText {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1800px) {
  .course-listing-item .listing-content-holder .data-content .bottom-info-holder .ratingText-box .ratingText {
    font-size: 16px;
    line-height: 1.6;
  }
}
.course-listing-item .listing-content-holder .listing-hover-box {
  background-color: #0293de;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}
.course-listing-item .listing-content-holder .listing-hover-box .hover-box-content {
  width: 100%;
}
.course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText {
  font-size: 24px;
  line-height: 1.2;
  line-height: 1.3;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (min-width: 576px) {
  .course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText {
    font-size: 24px;
    line-height: 1.2;
  }
}
.course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText a {
  font-size: 24px;
  line-height: 1.2;
  line-height: 1.3;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  text-decoration: none;
}
@media screen and (min-width: 576px) {
  .course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText a {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText a {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText a {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText a {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText a {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText a {
    font-size: 24px;
    line-height: 1.2;
  }
}
.course-listing-item .listing-content-holder .listing-hover-box .hover-box-content .headingText a:hover {
  text-decoration: none;
  color: #222222;
}
.course-listing-item .listing-content-holder .listing-hover-box .hover-box-content p {
  color: #fff;
}
.course-listing-item .listing-content-holder:hover .listing-hover-box {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.upcomingTraining-sec .dscHeadingText-holder {
  max-width: 423px;
}
.upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-scroll {
  max-height: 520px;
  position: relative;
  overflow: scroll;
}
.upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row {
  padding: 24px 0;
  border-top: solid 1px #999;
}
@media screen and (max-width: 767px) {
  .upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row {
    padding: 20px 0;
  }
}
.upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row:nth-of-type(1) {
  border-top: none;
}
.upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block1 .numbText {
  font-size: 34px;
  line-height: 1.3;
  color: #204f95;
  margin: 0;
  font-weight: 400;
}
@media screen and (min-width: 576px) {
  .upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block1 .numbText {
    font-size: 34px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block1 .numbText {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block1 .numbText {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block1 .numbText {
    font-size: 45px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block1 .numbText {
    font-size: 45px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block1 .numbText {
    font-size: 52px;
    line-height: 1.3;
  }
}
.upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block1 .mText {
  font-size: 15px;
  color: #204f95;
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}
.upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block2 .block2-text {
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  color: #222222;
  font-family: "PT Serif", serif;
}
@media screen and (min-width: 576px) {
  .upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block2 .block2-text {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block2 .block2-text {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block2 .block2-text {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block2 .block2-text {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block2 .block2-text {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block2 .block2-text {
    font-size: 26px;
    line-height: 1.4;
  }
}
.upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block2 .block2-text a {
  color: #222222;
}
.upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block2 .block2-text a:hover {
  color: #d9251d;
}
.upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block3 .block3-text {
  font-size: 15px;
  line-height: 1.5;
}
.upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block3 .block3-text p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
.upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block3 .block3-text .dateofTraining {
  display: block;
  font-weight: 600;
  color: #204f95;
  margin-top: 7px;
}
.upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-row .block3 .block3-text p + p {
  margin-top: 10px;
}
.upcomingTraining-sec .upcoming-header {
  padding: 4px !important;
  font-size: 15px;
  color: white;
  font-family: 600;
  background: #0293de;
  margin-bottom: 10px !important;
}

.ourProgram-sec .ourProgram-content-wrap .dscHeadingText-holder {
  max-width: 423px;
}
.ourProgram-sec .ourProgram-content-wrap .img-holder {
  padding-top: 50%;
  position: relative;
  width: 100%;
}
.ourProgram-sec .ourProgram-content-wrap .img-holder img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap {
  transform: translateY(-80px);
  margin-bottom: -80px;
}
@media only screen and (max-width: 1199px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap {
    transform: translateY(0px);
    margin-bottom: 0;
  }
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .swiper-slide {
  height: auto;
  padding: 20px 0;
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .swiper-container {
  padding-left: 15px;
  padding-right: 15px;
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content {
  padding: 30px 20px 30px 20px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .content-holder {
  width: 100%;
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .content-holder .logo-img-holder {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .content-holder .logo-img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .content-holder .headingText {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.3;
  color: #222222;
  font-family: "PT Serif", serif;
}
@media screen and (min-width: 576px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .content-holder .headingText {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .content-holder .headingText {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .content-holder .headingText {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .content-holder .headingText {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .content-holder .headingText {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .content-holder .headingText {
    font-size: 30px;
    line-height: 1.4;
  }
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover {
  background-color: #0293de;
  padding: 20px;
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  font-family: "PT Serif", serif;
  flex: 1 1 auto;
  margin-bottom: 10px;
  text-decoration: underline;
}
@media screen and (min-width: 576px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText {
    font-size: 30px;
    line-height: 1.4;
  }
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText a {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  font-family: "PT Serif", serif;
  flex: 1 1 auto;
  margin-bottom: 10px;
  text-decoration: underline;
}
@media screen and (min-width: 576px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText a {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText a {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText a {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText a {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText a {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText a {
    font-size: 30px;
    line-height: 1.4;
  }
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .headingText a:hover {
  color: #222222;
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .dsc-text {
  height: 100%;
  overflow: auto;
  position: relative;
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .dsc-text p {
  font-size: 15px;
  color: #fff;
  line-height: 1.87;
  margin: 0;
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content .ourProgram-hover .hover-inr .dsc-text .ps__thumb-y {
  background-color: rgba(255, 255, 255, 0.5);
}
.ourProgram-sec .ourProgram-content-wrap .ourProgram-slider-wrap .ourProgram-slider .ourProgram-slider-content:hover .ourProgram-hover {
  opacity: 1;
  top: 0;
}

.usp-sec .sec-heading-wrap .sec-heading-block .mainHeadingText {
  color: #fff;
}
.usp-sec .sec-heading-wrap .sec-heading-block .dscHeadingText-holder {
  max-width: 423px;
}
.usp-sec .sec-heading-wrap .sec-heading-block .dscHeadingText-holder p {
  color: #fff;
}
.usp-sec .usp-content-wrap {
  position: relative;
}
.usp-sec .usp-content-wrap .usp-block-holder {
  max-height: 395px;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
@media only screen and (min-width: 1800px) {
  .usp-sec .usp-content-wrap .usp-block-holder {
    max-height: 435px;
  }
}
.usp-sec .usp-content-wrap .usp-block-holder .usp-block-col:nth-of-type(1) .usp-block {
  margin-top: 0;
}
@media only screen and (min-width: 992px) {
  .usp-sec .usp-content-wrap .usp-block-holder .usp-block-col:nth-of-type(2) .usp-block {
    margin-top: 0;
  }
}
.usp-sec .usp-content-wrap .usp-block-holder .usp-block {
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .usp-sec .usp-content-wrap .usp-block-holder .usp-block {
    margin-top: 30px;
  }
}
.usp-sec .usp-content-wrap .usp-block-holder .usp-block .icon-holder {
  height: 42px;
  margin: 0 0 30px;
  line-height: 42px;
  max-width: 42px;
}
.usp-sec .usp-content-wrap .usp-block-holder .usp-block .icon-holder span {
  font-size: 38px;
  color: #fff;
}
.usp-sec .usp-content-wrap .usp-block-holder .usp-block .headingText {
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  color: #fff;
  font-family: "PT Serif", serif;
  margin-bottom: 20px;
}
@media screen and (min-width: 576px) {
  .usp-sec .usp-content-wrap .usp-block-holder .usp-block .headingText {
    font-size: 18px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .usp-sec .usp-content-wrap .usp-block-holder .usp-block .headingText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .usp-sec .usp-content-wrap .usp-block-holder .usp-block .headingText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .usp-sec .usp-content-wrap .usp-block-holder .usp-block .headingText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .usp-sec .usp-content-wrap .usp-block-holder .usp-block .headingText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .usp-sec .usp-content-wrap .usp-block-holder .usp-block .headingText {
    font-size: 26px;
    line-height: 1.4;
  }
}
.usp-sec .usp-content-wrap .usp-block-holder .usp-block .dsc-text p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.usp-sec .usp-content-wrap .usp-block-holder .usp-block .dsc-text ul {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding-left: 18px;
}
.usp-sec .usp-content-wrap .usp-block-holder .usp-block .dsc-text ul:not(:last-child) {
  margin-bottom: 1rem;
}
.usp-sec .usp-content-wrap .usp-block-holder .usp-block .dsc-text ul li:not(:last-child) {
  margin-bottom: 10px;
}

.studentSay-sec .studentSay-content-wrap {
  position: relative;
}
.studentSay-sec .studentSay-content-wrap .studentSay-left-col {
  padding-left: 15px;
  padding-right: 15px;
  width: calc(100% - 500px);
}
@media screen and (max-width: 991px) {
  .studentSay-sec .studentSay-content-wrap .studentSay-left-col {
    flex: 0 0 auto;
    width: 100%;
  }
}
.studentSay-sec .studentSay-content-wrap .studentSay-right-col {
  width: 500px;
  position: absolute;
  top: -100px;
  right: 0;
}
@media screen and (max-width: 991px) {
  .studentSay-sec .studentSay-content-wrap .studentSay-right-col {
    position: relative;
    top: 0px;
    margin-top: 20px;
  }
}
.studentSay-sec .studentSay-content-wrap .studentSay-right-col .img-holder {
  width: 100%;
  padding-top: 147%;
  position: relative;
}
.studentSay-sec .studentSay-content-wrap .studentSay-right-col .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
}

.trainer-sec {
  position: relative;
  width: 100%;
}
.trainer-sec::after {
  content: "";
  width: 100%;
  border-top: 3px solid #d9251d;
  background-color: #f6f6f6;
  height: 50%;
  top: 0;
  position: absolute;
  left: 0;
  right: 0;
}
.trainer-sec .trainer-sec-top {
  position: relative;
  z-index: 2;
}
.trainer-sec .trainer-slider {
  position: relative;
  z-index: 2;
}
.trainer-sec .trainer-slider .swiper-container-autoheight,
.trainer-sec .trainer-slider .swiper-container-autoheight .swiper-slide {
  height: 100%;
}

.trainer-listing-item {
  padding: 10px 0;
  width: 100%;
  display: flex;
  height: 360px;
}
.trainer-listing-item .listing-content-holder {
  width: 100%;
  padding: 12px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.trainer-listing-item .listing-content-holder .img-holder {
  width: 150px;
  height: 150px;
  min-width: 150px;
  max-width: 150px;
  min-height: 150px;
  max-height: 150px;
}
.trainer-listing-item .listing-content-holder .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 50%;
}
.trainer-listing-item .listing-content-holder .data-content {
  width: 100%;
  padding: 20px 15px 10px;
}
.trainer-listing-item .listing-content-holder .data-content .titleText {
  color: #000000;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (min-width: 576px) {
  .trainer-listing-item .listing-content-holder .data-content .titleText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .trainer-listing-item .listing-content-holder .data-content .titleText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .trainer-listing-item .listing-content-holder .data-content .titleText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .trainer-listing-item .listing-content-holder .data-content .titleText {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .trainer-listing-item .listing-content-holder .data-content .titleText {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .trainer-listing-item .listing-content-holder .data-content .titleText {
    font-size: 26px;
    line-height: 1.4;
  }
}
.trainer-listing-item .listing-content-holder .data-content .smInfoText {
  font-size: 14px;
  line-height: 1.57;
  font-weight: normal;
  color: #222222;
}
.trainer-listing-item .listing-content-holder .data-content .bottom-info-holder {
  padding-bottom: 15px;
  padding-top: 15px;
}
.trainer-listing-item .listing-content-holder .listing-hover-box {
  background-color: #0293de;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  transform: translate3d(0, 100%, 0);
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder {
  position: relative;
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder .ps__thumb-y {
  background-color: rgba(255, 255, 255, 0.5);
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder .hover-box-content {
  width: 100%;
  height: 100%;
  transition: transform 0.35s;
  transform: translate3d(0, 200%, 0);
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder .hover-box-content .dscText {
  height: 100%;
  padding: 18px 20px;
  position: relative;
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder .hover-box-content .dscText ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder .hover-box-content .dscText ul li {
  padding-left: 28px;
  position: relative;
  margin-top: 15px;
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder .hover-box-content .dscText ul li:first-child {
  margin-top: 0;
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder .hover-box-content .dscText ul li:after {
  content: "\f058";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  top: 0px;
  font-size: 18px;
  color: #fff;
  left: 0;
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder .hover-box-content .dscText ul li p {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder .hover-box-content .bottom-info {
  padding: 0 20px;
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder .hover-box-content .bottom-info .inr-box {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder .hover-box-content .bottom-info .inr-box .viewProfileLink {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: normal;
  border-bottom: 1px solid #ffffff;
  text-decoration: none;
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder .hover-box-content .bottom-info .inr-box .viewProfileLink:hover {
  color: #000000;
  border-bottom: 1px solid #000000;
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder .hover-box-content .bottom-info .inr-box .socialLink {
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 100%;
  border: 1px solid #fff;
  line-height: 29px;
  color: #fff;
  z-index: 2;
  font-size: 18px;
  text-decoration: none;
}
.trainer-listing-item .listing-content-holder .listing-hover-box .hover-box-content-holder .hover-box-content .bottom-info .inr-box .socialLink:hover {
  border: 1px solid #000000;
  color: #000000;
}
.trainer-listing-item .listing-content-holder:hover .listing-hover-box {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}
.trainer-listing-item .listing-content-holder:hover .listing-hover-box .hover-box-content-holder .hover-box-content {
  transition-delay: 0.06s;
  transform: translate3d(0, 0, 0);
}

.knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col {
  width: 50%;
  display: flex;
  align-items: center;
  min-height: 430px;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col {
    min-height: 480px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col {
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
  }
}
.knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col:after {
  content: "";
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col.left-col {
  justify-content: flex-end;
}
.knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col.left-col::after {
  background-color: rgba(0, 0, 0, 0.7);
}
.knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col.right-col {
  justify-content: flex-start;
}
.knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col.right-col:after {
  background-color: rgba(217, 37, 29, 0.7);
}
.knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block {
  max-width: 600px;
  width: 600px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block {
    max-width: 470px;
    width: 470px;
  }
}
@media screen and (max-width: 991px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block {
    max-width: 335px;
    width: 335px;
  }
}
@media screen and (max-width: 767px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block {
    width: 100%;
    max-width: 100%;
  }
}
.knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block.knowledgeHub-left-block .knowledgeHub-block-content {
  padding-right: 60px;
}
@media screen and (max-width: 1199px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block.knowledgeHub-left-block .knowledgeHub-block-content {
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block.knowledgeHub-left-block .knowledgeHub-block-content {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block.knowledgeHub-right-block .knowledgeHub-block-content {
  padding-left: 60px;
}
@media screen and (max-width: 1199px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block.knowledgeHub-right-block .knowledgeHub-block-content {
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block.knowledgeHub-right-block .knowledgeHub-block-content {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block .knowledgeHub-block-content .headingText {
  font-size: 26px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
  font-family: "PT Serif", serif;
}
@media screen and (min-width: 576px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block .knowledgeHub-block-content .headingText {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block .knowledgeHub-block-content .headingText {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block .knowledgeHub-block-content .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block .knowledgeHub-block-content .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block .knowledgeHub-block-content .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block .knowledgeHub-block-content .headingText {
    font-size: 48px;
    line-height: 1.2;
  }
}
.knowledgeHub-sec .knowledgeHub-sec-row .knowledgeHub-sec-col .knowledgeHub-block .knowledgeHub-block-content .dscText p {
  color: #fff;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.courses-sec {
  width: 100%;
}
.courses-sec .courses-slider-wrap .courses-slider .swiper-container {
  padding-top: 50px;
  padding-bottom: 20px;
}
.courses-sec .courses-slider-wrap .courses-slider .swiper-container .swiper-slide {
  height: auto;
  padding: 20px 0 0;
}
.courses-sec .courses-slider-wrap .courses-slider .courses-content {
  padding: 20px 16px 20px 16px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
  height: 100%;
  position: relative;
}
.courses-sec .courses-slider-wrap .courses-slider .courses-content .content-holder {
  width: 100%;
}
.courses-sec .courses-slider-wrap .courses-slider .courses-content .content-holder .logo-img-holder {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.courses-sec .courses-slider-wrap .courses-slider .courses-content .content-holder .logo-img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.courses-sec .courses-slider-wrap .courses-slider .courses-content .content-holder .headingText {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3;
  color: #222222;
  font-family: "PT Serif", serif;
}
@media screen and (min-width: 576px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .content-holder .headingText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .content-holder .headingText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .content-holder .headingText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .content-holder .headingText {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .content-holder .headingText {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .content-holder .headingText {
    font-size: 26px;
    line-height: 1.4;
  }
}
.courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content {
  background-color: #0293de;
  padding: 20px 15px;
  position: absolute;
  left: 0;
  top: -45px;
  bottom: 0;
  opacity: 0;
  width: 100%;
  height: auto;
  transform: translateY(100%);
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}
.courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
.courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  font-family: "PT Serif", serif;
  flex: 1 1 auto;
  margin-bottom: 10px;
  text-decoration: underline;
}
@media screen and (min-width: 576px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText {
    font-size: 26px;
    line-height: 1.4;
  }
}
.courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText a {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  font-family: "PT Serif", serif;
  flex: 1 1 auto;
  margin-bottom: 10px;
  text-decoration: underline;
}
@media screen and (min-width: 576px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText a {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText a {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText a {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText a {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText a {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText a {
    font-size: 26px;
    line-height: 1.4;
  }
}
.courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .headingText a:hover {
  color: #222222;
}
.courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .dsc-text {
  height: 100%;
  overflow: auto;
  position: relative;
}
.courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .dsc-text p {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}
.courses-sec .courses-slider-wrap .courses-slider .courses-content .courses-hover-content .hover-inr .dsc-text .ps__thumb-y {
  background-color: rgba(255, 255, 255, 0.5);
}
.courses-sec .courses-slider-wrap .courses-slider .courses-content:hover .courses-hover-content {
  opacity: 1;
  top: -45px;
  bottom: 0;
  transform: translateY(0);
}

.scrum-course-slider .swiper-container-autoheight, .scrum-course-slider .swiper-container-autoheight .swiper-slide {
  height: 100% !important;
}
.scrum-course-slider .course-listing-item {
  height: 100% !important;
}
@media screen and (min-width: 1200px) {
  .scrum-course-slider .swiper-wrapper.no-3 {
    justify-content: center;
  }
}
@media screen and (min-width: 992px) {
  .scrum-course-slider .swiper-wrapper.no-2 {
    justify-content: center;
  }
}
@media screen and (min-width: 478px) {
  .scrum-course-slider .swiper-wrapper.no-1 {
    justify-content: center;
  }
}

.inr-banner-sec {
  width: 100%;
  position: relative;
  margin-top: 26px;
}
@media screen and (max-width: 991px) {
  .inr-banner-sec.privacy-banner .inr-banner {
    display: flex;
    flex-wrap: wrap;
  }
  .inr-banner-sec.privacy-banner .inr-banner .img-holder {
    order: 3;
  }
  .inr-banner-sec.privacy-banner .inr-banner .graphic-img-wrap {
    order: 2;
    position: static !important;
  }
  .inr-banner-sec.privacy-banner .inr-banner .graphic-img-wrap .graphic-img-holder {
    position: relative;
    margin: 0;
    height: auto;
  }
  .inr-banner-sec.privacy-banner .inr-banner .inr-banner-container {
    order: 1;
  }
}
@media screen and (max-width: 991px) {
  .inr-banner-sec {
    margin-top: 67px;
  }
}
@media screen and (max-width: 767px) {
  .inr-banner-sec {
    margin-top: 65px;
  }
}
@media screen and (max-width: 575px) {
  .inr-banner-sec {
    margin-top: 101px;
  }
}
.inr-banner-sec .inr-banner {
  min-height: 300px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .inr-banner-sec .inr-banner {
    min-height: 300px;
  }
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec .inr-banner {
    min-height: 300px;
  }
}
.inr-banner-sec .inr-banner .inr-banner-container {
  min-height: 300px;
}
@media only screen and (max-width: 1199px) {
  .inr-banner-sec .inr-banner .inr-banner-container {
    min-height: auto;
  }
}
.inr-banner-sec .inr-banner .img-holder {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.inr-banner-sec .inr-banner .img-holder.gradientBg {
  background: rgb(246, 246, 246);
  background: linear-gradient(90deg, rgb(246, 246, 246) 0%, rgb(32, 79, 149) 100%);
}
.inr-banner-sec .inr-banner .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inr-banner-sec .inr-banner .graphic-img-wrap .locationText {
  font-size: 30px;
  line-height: 1.2;
  font-family: "PT Serif", serif;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .inr-banner-sec .inr-banner .graphic-img-wrap .locationText {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .inr-banner-sec .inr-banner .graphic-img-wrap .locationText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .inr-banner-sec .inr-banner .graphic-img-wrap .locationText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .inr-banner-sec .inr-banner .graphic-img-wrap .locationText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .inr-banner-sec .inr-banner .graphic-img-wrap .locationText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .inr-banner-sec .inr-banner .graphic-img-wrap .locationText {
    font-size: 42px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec .inr-banner .graphic-img-wrap {
    right: 0;
    width: 100%;
  }
}
.inr-banner-sec .inr-banner .graphic-img-holder {
  width: 450px;
  height: 390px;
  position: absolute;
  right: 20px;
  bottom: 0;
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec .inr-banner .graphic-img-holder {
    width: 320px;
    height: 270px;
  }
}
@media screen and (max-width: 767px) {
  .inr-banner-sec .inr-banner .graphic-img-holder {
    width: 250px;
    height: 200px;
  }
}
.inr-banner-sec .inr-banner .graphic-img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.inr-banner-sec .inr-banner .banner-content {
  position: relative;
  padding: 40px 0;
  width: 100%;
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec .inr-banner .banner-content {
    padding: 30px 0;
  }
}
.inr-banner-sec .inr-banner .banner-content .image-grid-wrap {
  width: 500px;
  max-width: 100%;
  padding: 15px 0;
}
@media only screen and (max-width: 1199px) {
  .inr-banner-sec .inr-banner .banner-content .image-grid-wrap {
    margin-left: -38px;
    position: relative;
    z-index: 0;
    left: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec .inr-banner .banner-content .image-grid-wrap {
    padding: 35px 0;
    margin-left: -40px;
    left: 0;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .inr-banner-sec .inr-banner .banner-content .image-grid-wrap {
    min-width: 500px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 479px) {
  .inr-banner-sec .inr-banner .banner-content .image-grid-wrap {
    min-width: inherit;
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
.inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main {
  margin-left: 40px;
}
@media only screen and (max-width: 767px) {
  .inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main {
    margin-left: -8px;
  }
}
@media only screen and (max-width: 479px) {
  .inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main {
    margin-left: auto;
    margin-right: auto;
  }
}
.inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item {
  width: 110px;
  height: 110px;
  text-align: center;
  margin: -10px 30px;
}
@media only screen and (max-width: 479px) {
  .inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item {
    width: 90px;
    height: 90px;
    margin: -9px 9px;
  }
}
.inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  transform: rotate(45deg);
  background: #fff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.18);
}
.inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item a.active, .inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item a.current, .inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item a.current-menu-item {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.18), 0px 0px 3px 2px #d9251d inset;
}
.inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item a:hover {
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.38);
}
.inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item a:hover figure img {
  transform: scale(1.1);
}
.inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item figure {
  transform: rotate(-45deg);
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}
.inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item figure img {
  margin: auto;
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  transition: transform 0.3s;
  transform: scale(1);
}
.inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item:first-child {
  margin-left: calc(50% - 115px);
  margin-right: calc(50% - 30px);
}
@media only screen and (max-width: 767px) {
  .inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item:first-child {
    margin-left: calc(50% - 139px);
  }
}
@media only screen and (max-width: 479px) {
  .inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item:first-child {
    margin-left: calc(50% - 45px);
    margin-right: calc(50% - 45px);
  }
}
.inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item:nth-child(4n) {
  margin-left: 115px !important;
}
@media only screen and (max-width: 479px) {
  .inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item:nth-child(4n) {
    margin-left: 9px !important;
  }
}
@media only screen and (max-width: 479px) {
  .inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item:nth-child(3n) {
    position: relative;
    left: 35px;
  }
}
@media only screen and (max-width: 479px) {
  .inr-banner-sec .inr-banner .banner-content .image-grid-wrap .image-grid-main .list-item:nth-child(3n+1) {
    margin-left: calc(50% - 45px) !important;
    margin-right: calc(50% - 45px) !important;
  }
}
.inr-banner-sec .inr-banner .banner-content .content-holder {
  max-width: 100%;
  margin-top: 0;
  width: 600px;
}
.inr-banner-sec .inr-banner .banner-content .content-holder .main-headingText {
  font-size: 30px;
  line-height: 1.2;
  color: #222222;
  font-family: "PT Serif", serif;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .main-headingText {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .main-headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .main-headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .main-headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .main-headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .main-headingText {
    font-size: 42px;
    line-height: 1.2;
  }
}
.inr-banner-sec .inr-banner .banner-content .content-holder .md-headingText {
  font-size: 22px;
  line-height: 1.3;
  color: #222222;
  font-family: "PT Serif", serif;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .md-headingText {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .md-headingText {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .md-headingText {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .md-headingText {
    font-size: 25px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .md-headingText {
    font-size: 25px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .md-headingText {
    font-size: 30px;
    line-height: 1.4;
  }
}
.inr-banner-sec .inr-banner .banner-content .content-holder .dscText.color-white p {
  color: #fff;
}
.inr-banner-sec .inr-banner .banner-content .content-holder .dscText p {
  font-size: 16px;
  line-height: 1.75;
  color: #222222;
  margin: 0;
}
.inr-banner-sec .inr-banner .banner-content .content-holder .dscText p + p {
  margin-top: 20px;
}
.inr-banner-sec .inr-banner .banner-content .content-holder .dscText ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.inr-banner-sec .inr-banner .banner-content .content-holder .dscText ul li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #222222;
  position: relative;
  padding-left: 35px;
  margin-top: 20px;
}
.inr-banner-sec .inr-banner .banner-content .content-holder .dscText ul li:after {
  content: "\e81a";
  font-family: "fontello";
  position: absolute;
  top: 6px;
  font-size: 18px;
  line-height: 1;
  color: #204f95;
  left: 0;
}
.inr-banner-sec .inr-banner .banner-content .content-holder .btn-holder {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .btn-holder {
    margin-top: 15px;
    margin-left: -12px;
  }
  .inr-banner-sec .inr-banner .banner-content .content-holder .btn-holder .btn {
    margin-left: 12px !important;
    margin-bottom: 12px;
  }
}
.inr-banner-sec .inr-banner .banner-content .content-holder .course-info-holder {
  width: 100%;
}
.inr-banner-sec .inr-banner .banner-content .content-holder .course-info-holder .logo-holder {
  width: 74px;
  height: 64px;
}
.inr-banner-sec .inr-banner .banner-content .content-holder .course-info-holder .logo-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.inr-banner-sec .inr-banner .banner-content .content-holder .course-info-holder .ratingText-box .la-star {
  color: #204f95;
}
.inr-banner-sec .inr-banner .banner-content .content-holder .course-info-holder .ratingText-box .ratingText {
  color: #000;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .course-info-holder .ratingText-box .ratingText {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 992px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .course-info-holder .ratingText-box .ratingText {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1200px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .course-info-holder .ratingText-box .ratingText {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1400px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .course-info-holder .ratingText-box .ratingText {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1800px) {
  .inr-banner-sec .inr-banner .banner-content .content-holder .course-info-holder .ratingText-box .ratingText {
    font-size: 16px;
    line-height: 1.6;
  }
}
.inr-banner-sec.csm-banner-sec .inr-banner .graphic-img-wrap {
  top: 0;
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec.csm-banner-sec .inr-banner .graphic-img-wrap {
    position: relative !important;
  }
}
.inr-banner-sec.csm-banner-sec .inr-banner .graphic-img-holder {
  width: 450px;
  height: 429px;
  bottom: 0;
  right: 0;
  left: auto;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .inr-banner-sec.csm-banner-sec .inr-banner .graphic-img-holder {
    width: 320px;
    height: 270px;
    position: relative;
  }
}
@media screen and (max-width: 575px) {
  .inr-banner-sec.csm-banner-sec .inr-banner .graphic-img-holder {
    width: 320px;
    height: 270px;
  }
}
.inr-banner-sec.csm2-banner-sec .inr-banner .graphic-img-wrap {
  display: flex;
  align-items: end;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec.csm2-banner-sec .inr-banner .graphic-img-wrap {
    align-items: center;
    position: relative !important;
    padding-top: 20px;
  }
}
.inr-banner-sec.csm2-banner-sec .inr-banner .graphic-img-holder {
  width: 450px;
  height: 191px;
  position: relative;
  bottom: 0;
  top: 0;
  right: 0;
  left: auto;
  margin: 0;
}
@media screen and (max-width: 575px) {
  .inr-banner-sec.csm2-banner-sec .inr-banner .graphic-img-holder {
    width: 280px;
    height: 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .inr-banner-sec.scrumAlliance-banner-sec .inr-banner .banner-content .content-holder {
    width: 450px;
  }
}
.inr-banner-sec.scrumAlliance-banner-sec .inr-banner .graphic-img-wrap {
  top: 0;
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec.scrumAlliance-banner-sec .inr-banner .graphic-img-wrap {
    position: relative !important;
  }
}
.inr-banner-sec.scrumAlliance-banner-sec .inr-banner .graphic-img-holder {
  width: 450px;
  height: 465px;
  position: absolute;
  right: 20px;
  bottom: 0;
  top: 0;
  margin: auto;
}
@media only screen and (max-width: 1199px) {
  .inr-banner-sec.scrumAlliance-banner-sec .inr-banner .graphic-img-holder {
    right: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec.scrumAlliance-banner-sec .inr-banner .graphic-img-holder {
    width: 330px;
    height: 340px;
    top: auto;
    position: relative;
  }
}
.inr-banner-sec.about-banner-sec {
  position: relative;
}
.inr-banner-sec.about-banner-sec:after {
  content: "";
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(5, 5, 5, 0.6923144258) 28%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  position: absolute;
}
.inr-banner-sec.about-banner-sec .inr-banner .graphic-img-holder {
  width: 450px;
  height: 465px;
  position: absolute;
  right: 20px;
  bottom: 0;
  top: 0;
  margin: auto;
}
@media only screen and (max-width: 1199px) {
  .inr-banner-sec.about-banner-sec .inr-banner .graphic-img-holder {
    right: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec.about-banner-sec .inr-banner .graphic-img-holder {
    width: 330px;
    height: 340px;
    top: auto;
  }
}
.inr-banner-sec.blogListing-banner-sec .inr-banner .banner-content .content-holder {
  width: 450px;
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec.blogListing-banner-sec .inr-banner .banner-content .content-holder {
    width: 400px;
  }
}
.inr-banner-sec.blogListing-banner-sec .inr-banner .graphic-img-wrap {
  top: 0;
}
@media only screen and (max-width: 767px) {
  .inr-banner-sec.blogListing-banner-sec .inr-banner .graphic-img-wrap {
    position: relative !important;
    padding-bottom: 20px;
  }
}
.inr-banner-sec.blogListing-banner-sec .inr-banner .graphic-img-wrap .graphic-img-holder {
  width: 450px;
  height: 465px;
  position: absolute;
  right: 20px;
  bottom: 0;
  top: 0;
  margin: auto;
}
@media only screen and (max-width: 1199px) {
  .inr-banner-sec.blogListing-banner-sec .inr-banner .graphic-img-wrap .graphic-img-holder {
    right: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec.blogListing-banner-sec .inr-banner .graphic-img-wrap .graphic-img-holder {
    width: 290px;
    height: 247px;
    top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .inr-banner-sec.blogListing-banner-sec .inr-banner .graphic-img-wrap .graphic-img-holder {
    position: relative !important;
  }
}
.inr-banner-sec.trainerList-banner-sec .inr-banner .banner-content .content-holder {
  width: 450px;
}
.inr-banner-sec.trainerList-banner-sec .inr-banner .graphic-img-wrap {
  top: 0;
}
@media only screen and (max-width: 767px) {
  .inr-banner-sec.trainerList-banner-sec .inr-banner .graphic-img-wrap {
    position: relative !important;
  }
}
.inr-banner-sec.trainerList-banner-sec .inr-banner .graphic-img-wrap .graphic-img-holder {
  width: 450px;
  height: 446px;
  position: absolute;
  right: 0;
  bottom: -1px;
  top: auto;
  margin: auto;
}
.inr-banner-sec.trainerList-banner-sec .inr-banner .graphic-img-wrap .graphic-img-holder img {
  -o-object-position: bottom center;
     object-position: bottom center;
}
@media only screen and (max-width: 1199px) {
  .inr-banner-sec.trainerList-banner-sec .inr-banner .graphic-img-wrap .graphic-img-holder {
    right: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec.trainerList-banner-sec .inr-banner .graphic-img-wrap .graphic-img-holder {
    width: 330px;
    height: 205px;
    top: auto;
  }
}
@media only screen and (max-width: 767px) {
  .inr-banner-sec.trainerList-banner-sec .inr-banner .graphic-img-wrap .graphic-img-holder {
    position: relative !important;
  }
}
.inr-banner-sec.courseListing-banner-sec .inr-banner .banner-content .content-holder {
  width: 450px;
}
.inr-banner-sec.courseListing-banner-sec .inr-banner .graphic-img-wrap {
  top: 0;
}
@media only screen and (max-width: 767px) {
  .inr-banner-sec.courseListing-banner-sec .inr-banner .graphic-img-wrap {
    position: relative !important;
    height: auto !important;
  }
}
.inr-banner-sec.courseListing-banner-sec .inr-banner .graphic-img-holder {
  width: 450px;
  height: 400px;
  position: absolute;
  right: 0;
  bottom: -1px;
  top: auto;
  margin: auto;
}
.inr-banner-sec.courseListing-banner-sec .inr-banner .graphic-img-holder img {
  -o-object-position: bottom center;
     object-position: bottom center;
}
@media only screen and (max-width: 1199px) {
  .inr-banner-sec.courseListing-banner-sec .inr-banner .graphic-img-holder {
    right: 0px;
    width: 457px;
    height: 322px;
  }
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec.courseListing-banner-sec .inr-banner .graphic-img-holder {
    width: 330px;
    height: 192px;
    top: auto;
    position: relative;
  }
}
.inr-banner-sec.tc-banner-sec .inr-banner .banner-content .content-holder {
  width: 450px;
}
.inr-banner-sec.tc-banner-sec .inr-banner .graphic-img-holder {
  width: 450px;
  height: 447px;
  position: absolute;
  right: 15px;
  bottom: -1px;
  top: auto;
  margin: auto;
}
.inr-banner-sec.tc-banner-sec .inr-banner .graphic-img-holder img {
  -o-object-position: bottom center;
     object-position: bottom center;
}
@media only screen and (max-width: 1199px) {
  .inr-banner-sec.tc-banner-sec .inr-banner .graphic-img-holder {
    right: 15px;
    width: 457px;
    height: 322px;
  }
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec.tc-banner-sec .inr-banner .graphic-img-holder {
    width: 330px;
    height: 340px;
    top: auto;
  }
}
.inr-banner-sec.trainerDetail-banner-sec .inr-banner .banner-content .content-holder {
  width: 660px;
}
@media only screen and (max-width: 1199px) {
  .inr-banner-sec.trainerDetail-banner-sec .inr-banner .banner-content .content-holder {
    width: 530px;
  }
}
.inr-banner-sec.webinar-banner-sec .inr-banner .banner-content .content-holder {
  width: 450px;
}
.inr-banner-sec.webinar-banner-sec .inr-banner .graphic-img-wrap {
  top: 0;
}
@media only screen and (max-width: 767px) {
  .inr-banner-sec.webinar-banner-sec .inr-banner .graphic-img-wrap {
    position: relative !important;
    height: auto !important;
  }
}
.inr-banner-sec.webinar-banner-sec .inr-banner .graphic-img-wrap .graphic-img-holder {
  width: 450px;
  height: 440px;
  position: absolute;
  right: 0;
  bottom: 0;
  top: auto;
  margin: auto;
}
.inr-banner-sec.webinar-banner-sec .inr-banner .graphic-img-wrap .graphic-img-holder img {
  -o-object-position: bottom center;
     object-position: bottom center;
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec.webinar-banner-sec .inr-banner .graphic-img-wrap .graphic-img-holder {
    width: 330px;
    height: 230px;
    top: auto;
  }
}
@media only screen and (max-width: 767px) {
  .inr-banner-sec.webinar-banner-sec .inr-banner .graphic-img-wrap .graphic-img-holder {
    position: relative !important;
  }
}

.csm-caption-sec {
  padding-top: 0px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .csm-caption-sec {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.csm-caption-sec .captionText p {
  font-family: "PT Serif", serif;
  font-size: 30px;
  line-height: 1.4;
  color: #222222;
  font-weight: normal;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .csm-caption-sec .captionText p {
    font-size: 22px;
  }
}

.csm001-sec .sec-heading-wrap {
  margin-bottom: 70px;
}
@media screen and (max-width: 991px) {
  .csm001-sec .sec-heading-wrap {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .csm001-sec .sec-heading-wrap {
    margin-bottom: 20px;
  }
}
.csm001-sec .csm001-slider-wrap .csm001-slider .swiper-container {
  padding: 0 15px;
}
.csm001-sec .csm001-slider-wrap .csm001-slider .swiper-container .swiper-slide {
  padding: 0px 0 20px;
}

.csm001-content-block {
  width: 100%;
}
.csm001-content-block .top-content-holder {
  padding: 20px 0px 20px;
  background-color: #204f95;
}
.csm001-content-block .top-content-holder .dateText {
  font-size: 30px;
  line-height: 1.2;
  color: #fff;
  font-weight: 400;
  font-family: "PT Serif", serif;
  margin: 0;
}
@media screen and (min-width: 576px) {
  .csm001-content-block .top-content-holder .dateText {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .csm001-content-block .top-content-holder .dateText {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .csm001-content-block .top-content-holder .dateText {
    font-size: 50px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .csm001-content-block .top-content-holder .dateText {
    font-size: 50px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .csm001-content-block .top-content-holder .dateText {
    font-size: 50px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .csm001-content-block .top-content-holder .dateText {
    font-size: 60px;
    line-height: 1.2;
  }
}
.csm001-content-block .top-content-holder .monthText {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}
.csm001-content-block .bottom-content-holder {
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  width: 100%;
}
.csm001-content-block .bottom-content-holder .bottomTop-content {
  padding: 20px;
}
.csm001-content-block .bottom-content-holder .bottomTop-content .infoList {
  margin: 0;
  padding: 0;
  list-style: none;
}
.csm001-content-block .bottom-content-holder .bottomTop-content .infoList li {
  margin-top: 10px;
  display: flex;
}
.csm001-content-block .bottom-content-holder .bottomTop-content .infoList li:first-child {
  margin-top: 0;
}
.csm001-content-block .bottom-content-holder .bottomTop-content .infoList li .icon-box {
  width: 20px;
  font-size: 20px;
  color: #204f95;
}
.csm001-content-block .bottom-content-holder .bottomTop-content .infoList li .icon-box .ic-money {
  font-size: 14px;
  position: relative;
  top: -3px;
}
.csm001-content-block .bottom-content-holder .bottomTop-content .infoList li .infoText {
  padding-left: 10px;
  padding-top: 5px;
}
.csm001-content-block .bottom-content-holder .bottomTop-content .infoList li .infoText p {
  margin: 0;
  text-align: left;
}
.csm001-content-block .bottom-content-holder .bottomTop-content .timeText1 {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: #222222;
}
.csm001-content-block .bottom-content-holder .bottomTop-content .timeText2 {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.6;
  color: #222222;
}
.csm001-content-block .bottom-content-holder .bottomTop-content .addsText {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #222222;
  text-decoration: underline;
  text-transform: uppercase;
}
.csm001-content-block .bottom-content-holder .bottomTop-content .nameText {
  line-height: 1.4;
  font-size: 14px;
  font-weight: 600;
  color: #222222;
}
.csm001-content-block .bottom-content-holder .bottomTop-content .priceText {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  color: #222222;
}
.csm001-content-block .bottom-content-holder .bottomFooter-content {
  padding: 0 35px;
}
.csm001-content-block .bottom-content-holder .bottomFooter-content .inr-box {
  border-top: solid 1px #bbb;
  padding: 16px 0;
}

.csm002-sec .csm002-top-sec {
  padding-top: 30px;
  padding-bottom: 275px;
  background-image: url(../images/csm/sec002-bgImg.jpg);
  background-position: center;
  background-size: cover;
}
.csm002-sec .csm002-top-sec .sec-heading-wrap {
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .csm002-sec .csm002-top-sec .sec-heading-wrap {
    margin-bottom: 50px;
  }
}
.csm002-sec .csm002-top-sec .csm002-top-content-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 0 0 0;
}
.csm002-sec .csm002-top-sec .csm002-top-content-wrap .csm002-top-content-block {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .csm002-sec .csm002-top-sec .csm002-top-content-wrap .csm002-top-content-block .content-holder {
    max-width: 250px;
    margin: 0 auto;
  }
}
.csm002-sec .csm002-top-sec .csm002-top-content-wrap .csm002-top-content-block .content-holder .titleText-new {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  font-family: "PT Serif", serif;
}
@media only screen and (max-width: 767px) {
  .csm002-sec .csm002-top-sec .csm002-top-content-wrap .csm002-top-content-block .content-holder .titleText-new {
    font-size: 24px;
  }
}
.csm002-sec .csm002-top-sec .csm002-top-content-wrap .csm002-top-content-block .content-holder .titleText {
  font-size: 30px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  font-family: "PT Serif", serif;
}
@media screen and (min-width: 576px) {
  .csm002-sec .csm002-top-sec .csm002-top-content-wrap .csm002-top-content-block .content-holder .titleText {
    font-size: 30px;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  .csm002-sec .csm002-top-sec .csm002-top-content-wrap .csm002-top-content-block .content-holder .titleText {
    font-size: 40px;
    line-height: 1;
  }
}
@media screen and (min-width: 992px) {
  .csm002-sec .csm002-top-sec .csm002-top-content-wrap .csm002-top-content-block .content-holder .titleText {
    font-size: 46px;
    line-height: 1;
  }
}
@media screen and (min-width: 1200px) {
  .csm002-sec .csm002-top-sec .csm002-top-content-wrap .csm002-top-content-block .content-holder .titleText {
    font-size: 50px;
    line-height: 1;
  }
}
@media screen and (min-width: 1400px) {
  .csm002-sec .csm002-top-sec .csm002-top-content-wrap .csm002-top-content-block .content-holder .titleText {
    font-size: 50px;
    line-height: 1;
  }
}
@media screen and (min-width: 1800px) {
  .csm002-sec .csm002-top-sec .csm002-top-content-wrap .csm002-top-content-block .content-holder .titleText {
    font-size: 68px;
    line-height: 1;
  }
}
.csm002-sec .csm002-top-sec .csm002-top-content-wrap .csm002-top-content-block .content-holder .dscText p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #bbbbbb;
}
.csm002-sec .csm002-bottom-sec {
  width: 100%;
  padding-bottom: 100px;
  position: relative;
  margin-bottom: -357px;
}
@media only screen and (max-width: 991px) {
  .csm002-sec .csm002-bottom-sec {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .csm002-sec .csm002-bottom-sec {
    padding-bottom: 50px;
  }
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap {
  max-width: 1040px;
  margin: 0 auto;
  background-color: #f6f6f6;
  padding: 60px 50px;
  transform: translateY(-270px);
}
@media only screen and (max-width: 1199px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap {
    padding: 40px 40px;
  }
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .left-col {
  border-right: 1px solid #979797;
}
@media only screen and (max-width: 767px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .left-col {
    border-right: none;
  }
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block {
  padding-right: 20px;
  padding-left: 20px;
}
@media only screen and (max-width: 1199px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block {
    padding-right: 0px;
    padding-left: 0px;
  }
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block .content-holder .headingText {
  font-size: 26px;
  line-height: 1.2;
  font-family: "PT Serif", serif;
  color: #222222;
  margin-bottom: 30px;
}
@media screen and (min-width: 576px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block .content-holder .headingText {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block .content-holder .headingText {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block .content-holder .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block .content-holder .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block .content-holder .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block .content-holder .headingText {
    font-size: 48px;
    line-height: 1.2;
  }
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block .content-holder .dscText ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block .content-holder .dscText ul li {
  padding-left: 28px;
  position: relative;
  margin-top: 22px;
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block .content-holder .dscText ul li:first-child {
  margin-top: 0;
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block .content-holder .dscText ul li:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background-image: url(../images/blue-list-arrow.svg);
  background-size: 13px auto;
  width: 13px;
  height: 12px;
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap .csm002-bottom-content-block .content-holder .dscText ul li p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #555555;
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified {
  max-width: 1040px;
  margin: 0 auto;
  background-color: #f6f6f6;
  padding: 60px 50px;
}
@media only screen and (max-width: 1199px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified {
    padding: 40px 40px;
  }
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .left-col {
  border-right: 1px solid #979797;
}
@media only screen and (max-width: 767px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .left-col {
    border-right: none;
  }
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block {
  padding-right: 20px;
  padding-left: 20px;
}
@media only screen and (max-width: 1199px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block {
    padding-right: 0px;
    padding-left: 0px;
  }
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block .content-holder .headingText {
  font-size: 26px;
  line-height: 1.2;
  font-family: "PT Serif", serif;
  color: #222222;
  margin-bottom: 30px;
}
@media screen and (min-width: 576px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block .content-holder .headingText {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block .content-holder .headingText {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block .content-holder .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block .content-holder .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block .content-holder .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block .content-holder .headingText {
    font-size: 48px;
    line-height: 1.2;
  }
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block .content-holder .dscText ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block .content-holder .dscText ul li {
  padding-left: 28px;
  position: relative;
  margin-top: 22px;
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block .content-holder .dscText ul li:first-child {
  margin-top: 0;
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block .content-holder .dscText ul li:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background-image: url(../images/blue-list-arrow.svg);
  background-size: 13px auto;
  width: 13px;
  height: 12px;
}
.csm002-sec .csm002-bottom-sec .csm002-bottom-content-wrap-modified .csm002-bottom-content-block .content-holder .dscText ul li p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #555555;
}

.csm003-sec {
  position: relative;
  z-index: 2;
}
.csm003-sec .sec-heading-wrap {
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .csm003-sec .sec-heading-wrap {
    margin-bottom: 50px;
  }
}
.csm003-sec .csm003-content-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.csm003-sec .csm003-content-block {
  width: 100%;
  padding: 0 20px;
}
.csm003-sec .csm003-content-block .icon-holder {
  width: 50px;
  height: 50px;
  position: relative;
  margin: 0 auto 35px;
}
.csm003-sec .csm003-content-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
  position: relative;
}
.csm003-sec .dsc-text p {
  font-size: 18px;
  line-height: 1.67;
  font-weight: 500;
  color: #222222;
}

.csm004-sec {
  width: 100%;
  position: relative;
}
.csm004-sec + .new_exam_section {
  position: relative;
  z-index: 0;
  margin-top: -170px;
}
@media only screen and (max-width: 991px) {
  .csm004-sec + .new_exam_section {
    margin-top: -120px;
  }
}
@media only screen and (max-width: 767px) {
  .csm004-sec + .new_exam_section {
    margin-top: -100px;
  }
}
.csm004-sec:after {
  content: "";
  width: 100%;
  height: 170px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 991px) {
  .csm004-sec:after {
    height: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .csm004-sec:after {
    height: 100px;
  }
}
.csm004-sec .csm004-left-block .btn-holder {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .csm004-sec .csm004-left-block .btn-holder {
    margin-top: 20px;
  }
}
.csm004-sec .csm004-right-col .csm004-right-block {
  max-width: 636px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col {
  flex: 0 0 auto;
  width: 211px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col {
    width: 185px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col {
    width: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col {
    width: 50%;
  }
}
.csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col > .row {
  margin-left: 15px;
  margin-right: 15px;
}
.csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col .stepInfo-box-content {
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  padding: 20px;
  max-width: 190px;
  min-height: 190px;
  margin-left: auto;
}
@media only screen and (max-width: 1199px) {
  .csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col .stepInfo-box-content {
    min-height: 180px;
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col .stepInfo-box-content {
    max-width: 100%;
  }
}
.csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col .stepInfo-box-content .title-block {
  margin-bottom: 25px;
}
@media only screen and (max-width: 1199px) {
  .csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col .stepInfo-box-content .title-block {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col .stepInfo-box-content .title-block {
    margin-bottom: 15px;
  }
}
.csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col .stepInfo-box-content .title-block .titleText {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.25;
  color: #666666;
  font-family: "PT Serif", serif;
}
.csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col .stepInfo-box-content .dscText p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #222222;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col .stepInfo-box-content .dscText p {
    font-size: 15px;
  }
}
.csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col .stepInfo-box-content .logo-holder {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col .stepInfo-box-content .logo-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.csm004-sec .csm004-right-col .csm004-right-block .csm004-right-custom-col .stepInfo-box-content.last-box {
  background-color: transparent;
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
}

.csm005-sec {
  width: 100%;
  position: relative;
}
.csm005-sec .sec-heading-wrap {
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .csm005-sec .sec-heading-wrap {
    margin-bottom: 50px;
  }
}
.csm005-sec .csm005-step-content-wrap .csm005-step-content-holder {
  padding: 0 15px;
}
.csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row {
  margin-left: -10px;
  margin-right: -10px;
}
.csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .csm005-step-col {
  padding-left: 10px;
  padding-right: 10px;
  flex: 0 0 auto;
  width: 200px;
}
@media only screen and (max-width: 767px) {
  .csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .csm005-step-col {
    margin: 0 auto;
  }
}
.csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .csm005-step-col .csm005-step-block {
  width: 100%;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  .csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .csm005-step-col .csm005-step-block {
    animation: none;
  }
}
.csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .csm005-step-col .csm005-step-block .content-holder {
  width: 100%;
}
.csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .csm005-step-col .csm005-step-block .content-holder .logo-img-holder {
  width: 134px;
  height: 126px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}
.csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .csm005-step-col .csm005-step-block .content-holder .logo-img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .csm005-step-col .csm005-step-block .content-holder .headingText {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: #222222;
}
.csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .csm005-step-col.col-1 .csm005-step-block {
  animation-duration: 0.5s;
  animation-delay: 0.3s;
}
.csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .csm005-step-col.col-2 .csm005-step-block {
  animation-duration: 0.5s;
  animation-delay: 0.9s;
}
.csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .csm005-step-col.col-3 .csm005-step-block {
  animation-duration: 0.5s;
  animation-delay: 1.5s;
}
.csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .middle-arrow-col {
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (max-width: 767px) {
  .csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .middle-arrow-col .arrow-img-holder {
    animation: none !important;
    transform: rotate(90deg);
    width: 50px;
    width: 50px;
    height: 90px;
    transform-origin: 6px 32px;
    margin: 0 auto;
  }
}
.csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .middle-arrow-col.arrow-col-1 .arrow-img-holder {
  animation-duration: 0.5s;
  animation-delay: 0.6s;
}
.csm005-sec .csm005-step-content-wrap .csm005-step-content-holder .csm005-step-row .middle-arrow-col.arrow-col-2 .arrow-img-holder {
  animation-duration: 0.5s;
  animation-delay: 1.2s;
}

.csm-trainer-sec .sec-heading-wrap {
  margin-bottom: 40px;
}
.csm-trainer-sec .csm-trainer-slider-wrap {
  margin: 0 auto;
}
.csm-studentSay-sec {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url(../images/csm/sec002-bgImg.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}
.csm-studentSay-sec:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.csm-studentSay-sec .csm-studentSay-content-wrap {
  max-width: 1070px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px 60px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .csm-studentSay-sec .csm-studentSay-content-wrap {
    padding: 30px 20px;
  }
}

.csm-faq-sec .sec-heading-wrap {
  margin-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .csm-faq-sec .sec-heading-wrap {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .csm-faq-sec .sec-heading-wrap {
    margin-bottom: 35px;
  }
}

.faq-accordion-holder {
  max-width: 940px;
  margin: 0 auto;
}
.faq-accordion-holder .faq-accordion {
  width: 100%;
  box-shadow: none;
}
.faq-accordion-holder .faq-accordion .card {
  border: none;
  border-radius: 0;
  margin-top: 20px;
}
.faq-accordion-holder .faq-accordion .card .card-header {
  padding: 0;
  background: transparent;
  border: none;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  cursor: pointer;
  border: solid 1px #bbb;
  border-bottom: none;
  border-radius: 0;
}
.faq-accordion-holder .faq-accordion .card .card-header:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 20px;
  color: #d9251d;
  background-image: url(../images/collapse.svg);
  width: 12px;
  height: 5px;
  background-repeat: no-repeat;
}
.faq-accordion-holder .faq-accordion .card .card-header .headingText {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  color: #0293de;
}
@media screen and (min-width: 768px) {
  .faq-accordion-holder .faq-accordion .card .card-header .headingText {
    font-size: 15px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .faq-accordion-holder .faq-accordion .card .card-header .headingText {
    font-size: 15px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .faq-accordion-holder .faq-accordion .card .card-header .headingText {
    font-size: 16px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .faq-accordion-holder .faq-accordion .card .card-header .headingText {
    font-size: 16px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .faq-accordion-holder .faq-accordion .card .card-header .headingText {
    font-size: 20px;
    line-height: 1.3;
  }
}
.faq-accordion-holder .faq-accordion .card .card-header.collapsed {
  background-color: #f6f6f6;
  border: solid 1px transparent;
}
.faq-accordion-holder .faq-accordion .card .card-header.collapsed:before {
  content: "";
  color: #222222;
  font-size: 15px;
  background-image: url(../images/expand.svg);
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
}
.faq-accordion-holder .faq-accordion .card .card-header.collapsed .headingText {
  color: #222222;
}
.faq-accordion-holder .faq-accordion .card .card-body {
  padding: 10px 20px 20px;
  border: solid 1px #bbb;
  border-top: none;
}
.faq-accordion-holder .faq-accordion .card .card-body table {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400 !important;
}
.faq-accordion-holder .faq-accordion .card .card-body table td {
  border: 1px solid #d8d6d7 !important;
  padding: 8px 10px !important;
}
.faq-accordion-holder .faq-accordion .card .card-body table tr:first-child {
  font-weight: 600 !important;
}
.faq-accordion-holder .faq-accordion .card .card-body ul, .faq-accordion-holder .faq-accordion .card .card-body ol {
  padding-left: 18px;
}
.faq-accordion-holder .faq-accordion .card .card-body p {
  font-size: 15px;
  margin: 0;
}
.faq-accordion-holder .faq-accordion .card .card-body p a {
  color: #0293de;
}
.faq-accordion-holder .faq-accordion .card .card-body p a:hover {
  color: #204f95;
}
.faq-accordion-holder .faq-accordion .card .card-body p + p {
  margin-top: 10px;
}

.rel-post-slider .swiper-container-autoheight .swiper-wrapper {
  align-items: normal;
}
.rel-post-slider .swiper-slide {
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 6px;
}
@media screen and (min-width: 1200px) {
  .rel-post-slider .swiper-wrapper.no-2 {
    justify-content: center;
  }
}
@media screen and (min-width: 576px) {
  .rel-post-slider .swiper-wrapper.no-1 {
    justify-content: center;
  }
}

@media screen and (min-width: 1200px) {
  .csm-trainer-slider .swiper-wrapper.no-3 {
    justify-content: center;
  }
}
@media screen and (min-width: 992px) {
  .csm-trainer-slider .swiper-wrapper.no-2 {
    justify-content: center;
  }
}
@media screen and (min-width: 478px) {
  .csm-trainer-slider .swiper-wrapper.no-1 {
    justify-content: center;
  }
}

@media screen and (min-width: 1200px) {
  .csm001-slider .swiper-wrapper.no-3 {
    justify-content: center;
  }
}
@media screen and (min-width: 992px) {
  .csm001-slider .swiper-wrapper.no-2 {
    justify-content: center;
  }
}
@media screen and (min-width: 478px) {
  .csm001-slider .swiper-wrapper.no-1 {
    justify-content: center;
  }
}

.csm-blue-caption-sec {
  padding: 70px 0;
  background-image: url(../images/csm/blue-bg.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .csm-blue-caption-sec {
    padding: 40px 0;
  }
}
.csm-blue-caption-sec:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-color: rgba(32, 79, 149, 0.6);
}
.csm-blue-caption-sec .container {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 575px) {
  .quiz-box {
    margin-top: 55px;
  }
}
.quiz-box iframe {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.dscText.color-white p {
  color: #fff;
}
.dscText p {
  font-size: 16px;
  line-height: 1.75;
  color: #222222;
  margin: 0;
}
.dscText p + p {
  margin-top: 20px;
}
.dscText ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.dscText ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: #222222;
  position: relative;
  padding-left: 35px;
  margin-top: 20px;
}
.dscText ul li:after {
  content: "\e81a";
  font-family: "fontello";
  position: absolute;
  top: 6px;
  font-size: 18px;
  line-height: 1;
  color: #204f95;
  left: 0;
}

.main-headingText {
  font-size: 30px;
  line-height: 1.2;
  color: #222222;
  font-family: "PT Serif", serif;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .main-headingText {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .main-headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .main-headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .main-headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .main-headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .main-headingText {
    font-size: 42px;
    line-height: 1.2;
  }
}

/*********IT Work changes couse page *********/
.it_Top_Banner_Right_bottom_icons .logo-outer {
  float: left;
  margin: 10px;
  display: inline-flex;
}

.it_Top_Banner_Right_bottom_icons .trustPilot-button {
  position: inherit;
}

.it_banner_top_left_part .main-headingText {
  font-size: 20px;
  line-height: 1.2;
}

.it_banner_top_left_part .inr-banner-sec .inr-banner .banner-content .content-holder .dscText ul li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: #222222;
  position: relative;
  padding-left: 35px;
  margin-top: 20px;
}

.it_banner_top_left_part .btn.btnText-themeRed {
  color: #f1f1f1;
  background-color: #1A91FF;
  border-bottom: 1px solid #1A91FF;
  min-width: auto;
  border-radius: 5px;
  padding: 12px 25px;
  font-weight: 500;
  font-size: 16px;
}

.it_banner_top_left_part .btn.btn-themeRed, .it_banner_top_left_part .btn.buy-now {
  color: #f1f1f1;
  border-radius: 5px;
  border: 1px solid #E6400A;
  background-color: #E6400A;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}

.it_Top_Banner_Right_bottom_icons .trustPilot-button {
  width: 170px;
  height: 103px;
  display: flex;
  padding: 10px;
  margin-top: 14px;
}

.it_Top_Banner_Right_bottom_icons.col-sm-12.col-md-12 > div {
  float: right;
}

.it_banner_top_left_part .main-headingText {
  color: #f1f1f1 !important;
}

.it_banner_top_left_part .dscText ul li {
  color: #f1f1f1 !important;
}

.it_banner_top_left_part .dscText p {
  color: #f1f1f1 !important;
}

.it_banner_top_left_part .dscText ul li:after {
  color: #F2B013 !important;
}

@media (min-width: 768px) {
  .it_banner_top_left_part {
    width: 50% !important;
  }
}
.it_inr-banner-sec .img-holder.gradientBg {
  background: #204F95 !important;
}

.it_Top_Banner_Right_bottom_icons ul {
  display: inline;
}

.it_Top_Banner_Right_bottom_icons li {
  margin: 10px 6px 0px 0px;
  list-style: none;
  float: left;
}

.it_Top_Banner_Right_bottom_icons img {
  max-height: 89px !important;
  width: auto;
}

.it_inr-banner-sec .main-headingText {
  color: #f1f1f1;
}

.it_top_m {
  margin-top: 25px !important;
}

.it_inr-banner-sec .btn-holder i {
  margin-left: 16px;
}

.it_inr-banner-sec .banner-content {
  padding: 41px 0px 30px 0px !important;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  color: #f1f1f1;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.it_Top_Banner_Right_bottom_icons {
  margin-top: 20px;
}

.it_Top_Banner_Right_side_section_html .wrapper {
  max-width: 680px;
  margin: 10px auto;
  padding: 0 20px;
}

.it_Top_Banner_Right_side_section_html .youtube {
  background-color: #000;
  margin-bottom: 2px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}

.it_Top_Banner_Right_side_section_html .youtube img {
  width: 100%;
  top: -16.82%;
  left: 0;
  opacity: 0.7;
}

.it_Top_Banner_Right_side_section_html .youtube .play-button {
  width: 80px;
  height: 60px;
  background-color: red;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 1;
  /*opacity: 0.8;*/
  border-radius: 6px;
}

.it_Top_Banner_Right_side_section_html .youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent #fff;
}

.it_Top_Banner_Right_side_section_html .youtube img,
.it_Top_Banner_Right_side_section_html .youtube .play-button {
  cursor: pointer;
}

.it_Top_Banner_Right_side_section_html .youtube img,
.it_Top_Banner_Right_side_section_html .youtube iframe,
.it_Top_Banner_Right_side_section_html .youtube .play-button,
.it_Top_Banner_Right_side_section_html .youtube .play-button:before {
  position: absolute;
}

.it_Top_Banner_Right_side_section_html .youtube .play-button,
.it_Top_Banner_Right_side_section_html .youtube .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.it_Top_Banner_Right_side_section_html .youtube iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 540px) {
  .it_Top_Banner_Right_side_section_html .mobileFrame {
    height: 390px;
    width: 330px;
  }
}
.it_color_white .text-dark {
  color: #f1f1f1 !important;
}

.it_color_white .text-dark a {
  color: #F2B013 !important;
}

.it_banner_top_left_part .btn.btn-themeRed, .it_banner_top_left_part .btn.buy-now {
  line-height: 1.3;
  padding: 12px 30px;
}

.it_Top_Banner_Right_side_section_html.col-sm-12.col-md-12 {
  color: #fff;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .it_banner_top_left_part .btn.btn-themeRed, .it_banner_top_left_part .btn.buy-now {
    padding: 11px 15px;
    min-width: auto;
    font-size: 12px;
  }
  .it_banner_top_left_part .btn.btnText-themeRed {
    padding: 11px 8px;
    font-size: 12px;
  }
  .inr-banner-sec .inr-banner .banner-content .content-holder .btn-holder .btn {
    margin-left: 5px !important;
    margin-bottom: 0px !important;
  }
  .it_Top_Banner_Right_side_section_html .wrapper {
    margin: 0px;
    padding: 0px;
  }
  .it_Mobile1 .it_Top_Banner_Right_side_section_html {
    padding: 0px;
  }
  .it_Mobile1 .row, .it_Mobile1 {
    padding: 0px !important;
    margin: 20px 0px 0px 0px !important;
  }
  .it_Top_Banner_Right_side_section_html .youtube .play-button {
    width: 60px;
    height: 40px;
  }
  .it_Top_Banner_Right_side_section_html .youtube .play-button:before {
    border-width: 7px 0 10px 14px;
  }
  .it_Top_Banner_Right_bottom_icons {
    margin: 0px;
    padding: 0px;
  }
  .it_Top_Banner_Right_bottom_icons img {
    max-height: 65px !important;
    width: auto;
  }
  li.it_trustPilot_logo img {
    margin: 0px;
  }
}
.inr-banner-sec .inr-banner .card.eventInfo-card {
  width: 400px;
  position: absolute;
  right: var(--bs-gutter-x, 0.75rem);
  bottom: -140px;
  border-radius: 0;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .inr-banner-sec .inr-banner .card.eventInfo-card {
    width: 350px;
  }
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec .inr-banner .card.eventInfo-card {
    position: relative;
    right: auto;
    bottom: auto;
  }
}

@media only screen and (max-width: 991px) {
  .eventInfo-card-holder {
    width: 100%;
    padding-bottom: 30px;
  }
}

.eventInfo-card {
  border-radius: 0;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  border: none;
}
.eventInfo-card hr {
  background-color: #d8d8d8;
}
.eventInfo-card .card-img-holder {
  width: 100%;
  padding-top: 30%;
  position: relative;
  padding-top: 78%;
}
.eventInfo-card .card-img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.eventInfo-card .card-img-holder .socialLink-box {
  width: 30px;
  height: 30px;
  color: rgba(197, 197, 197, 0.5);
  z-index: 2;
  font-size: 32px;
  text-decoration: none;
  position: absolute;
  top: 10px;
  right: 10px;
  line-height: 1;
}
.eventInfo-card .card-img-holder .socialLink-box:hover {
  color: #d9251d;
}
.eventInfo-card .titleText {
  color: #000000;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (min-width: 576px) {
  .eventInfo-card .titleText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .eventInfo-card .titleText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .eventInfo-card .titleText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .eventInfo-card .titleText {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .eventInfo-card .titleText {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .eventInfo-card .titleText {
    font-size: 26px;
    line-height: 1.4;
  }
}
.eventInfo-card .eventInfo-list .eventInfo-list-item {
  padding: 7px 0;
}
.eventInfo-card .eventInfo-list .eventInfo-list-item .icon-item {
  color: #204f95;
  font-size: 16px;
  margin-right: 10px;
}
.eventInfo-card .eventInfo-list .eventInfo-list-item .infoText {
  color: #555555;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .eventInfo-card .eventInfo-list .eventInfo-list-item .infoText {
    font-size: 13px;
  }
}
.eventInfo-card .card-footer {
  background-color: #fff;
}
.eventInfo-card .card-footer .btn-holder .btn-themeRed, .eventInfo-card .card-footer .btn-holder .btn.buy-now {
  min-width: 125px;
}

.counter-box-holder {
  padding-top: 20px;
}
.counter-box-holder .counter-box {
  margin-top: -65px;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  background-color: #204f95;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .counter-box-holder .counter-box {
    max-width: 570px;
  }
}
@media only screen and (max-width: 991px) {
  .counter-box-holder .counter-box {
    max-width: 100%;
  }
}
.counter-box-holder .counter-box .container {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 2;
}
.counter-box-holder .counter-box .counter-block {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .counter-box-holder .counter-box .counter-block {
    max-width: 240px;
    margin: 20px auto 0;
  }
}
.counter-box-holder .counter-box .counter-block .counterNumbText {
  font-family: "PT Serif", serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
}
.counter-box-holder .counter-box .counter-block .counterInfoText {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  color: #bbbbbb;
  margin-bottom: 0;
}

.videoList-sec .sec-heading-wrap {
  max-width: 820px;
  margin: 0 auto 70px;
}
.videoList-sec .videoList-slider-wrap .videoList-slider .swiper-container {
  padding: 0 15px;
}
.videoList-sec .videoList-slider-wrap .videoList-slider .swiper-slide {
  padding: 0px 0 20px;
}
.videoList-sec .videoList-slider-wrap .videoList-slider .videoList-item {
  width: 100%;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  padding: 12px;
}
.videoList-sec .videoList-slider-wrap .videoList-slider .videoList-item .videoList-item-inr {
  width: 100%;
}
.videoList-sec .videoList-slider-wrap .videoList-slider .videoList-item .videoList-item-inr .thumb-img {
  width: 100%;
  padding-top: 77%;
  position: relative;
}
.videoList-sec .videoList-slider-wrap .videoList-slider .videoList-item .videoList-item-inr .thumb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.videoList-sec .videoList-slider-wrap .videoList-slider .videoList-item .videoList-item-inr .thumb-img img :after {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.videoList-sec .videoList-slider-wrap .videoList-slider .videoList-item .videoList-item-inr .play-btn {
  width: 49px;
  height: 34px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
  display: inline-block;
}
.videoList-sec .videoList-slider-wrap .videoList-slider .videoList-item .videoList-item-inr .play-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.testimonial-sec {
  padding-top: 55px;
  padding-bottom: 100px;
  background-image: url(../images/csm/testimonial-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .testimonial-sec {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-sec {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.testimonial-sec:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.testimonial-sec .testimonial-content-wrap {
  max-width: 910px;
  margin: 0 auto;
  padding: 30px 40px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .testimonial-sec .testimonial-content-wrap {
    padding: 30px 20px;
  }
}
.testimonial-sec .testimonial-content-wrap .alert-holder .noData-alert {
  background-color: #204f95;
  border-radius: 0;
  padding: 25px 30px;
}
.testimonial-sec .testimonial-content-wrap .alert-holder .noData-alert p {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  font-weight: 400;
  margin: 0;
}
.testimonial-sec .testimonial-content-wrap .testimonial-slider-holder {
  width: 100%;
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  .testimonial-sec .testimonial-content-wrap .testimonial-slider-holder {
    padding-left: 0;
    margin-top: 25px;
  }
}

.testimonial-slider .testimonial-content-item {
  width: 100%;
}
.testimonial-slider .testimonial-content-item .testimonial-user-img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 100%;
}
.testimonial-slider .testimonial-content-item .testimonial-user-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-slider .testimonial-content-item .testimonial-des-content {
  width: 100%;
  position: relative;
}
.testimonial-slider .testimonial-content-item .testimonial-des-content .dsc-text {
  position: relative;
  z-index: 2;
}
.testimonial-slider .testimonial-content-item .testimonial-des-content .dsc-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #222222;
  margin: 0;
}
.testimonial-slider .testimonial-content-item .testimonial-des-content .user-info {
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
.testimonial-slider .testimonial-content-item .testimonial-des-content .user-info .nameText {
  font-weight: 700;
  font-size: 18px;
  font-family: "PT Serif", serif;
  line-height: 1.3;
  color: #222222;
  margin: 0 0 3px;
}
.testimonial-slider .testimonial-content-item .testimonial-des-content .user-info .infoText {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #555555;
  margin: 0;
}
.testimonial-slider .testimonial-content-item .testimonial-des-content .user-info .infoText.linkdn-area {
  font-size: 24px;
  line-height: 1;
}
.testimonial-slider .swiper-actions-holder {
  margin-top: 40px;
}
.testimonial-slider .swiper-actions-holder .swiper-pagination {
  position: relative;
  width: auto;
  bottom: 0;
  font-size: 16px;
  font-weight: 500;
}

.comn-withImg-sec {
  position: relative;
  width: 100%;
}
.comn-withImg-sec .comn-withImg-row {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.comn-withImg-sec .comn-withImg-row .img-col {
  width: 620px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .comn-withImg-sec .comn-withImg-row .img-col {
    width: 500px;
  }
}
@media only screen and (max-width: 991px) {
  .comn-withImg-sec .comn-withImg-row .img-col {
    width: 100%;
    margin-bottom: 30px;
  }
}
.comn-withImg-sec .comn-withImg-row .img-col .img-holder-outer {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.comn-withImg-sec .comn-withImg-row .img-col .img-holder-outer .img-holder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.comn-withImg-sec .comn-withImg-row .img-col .img-holder-outer .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.04);
}
.comn-withImg-sec .comn-withImg-row .dscInfo-col {
  width: calc(100% - 620px);
  padding-left: 100px;
}
@media only screen and (max-width: 1199px) {
  .comn-withImg-sec .comn-withImg-row .dscInfo-col {
    padding-left: 40px;
    width: calc(100% - 500px);
  }
}
@media only screen and (max-width: 991px) {
  .comn-withImg-sec .comn-withImg-row .dscInfo-col {
    padding-left: 0;
    width: 100%;
  }
}
.comn-withImg-sec .comn-withImg-row .dscInfo-col .dscInfo-holder .main-heading-block {
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  .comn-withImg-sec .comn-withImg-row .dscInfo-col .dscInfo-holder .main-heading-block {
    margin-bottom: 20px;
  }
}
.comn-withImg-sec .comn-withImg-row .dscInfo-col .dscInfo-holder .main-heading-block .mainHeadingText {
  font-size: 32px;
  line-height: 1.2;
  color: #222222;
  font-weight: 700;
  font-family: "PT Serif", serif;
}
@media screen and (min-width: 576px) {
  .comn-withImg-sec .comn-withImg-row .dscInfo-col .dscInfo-holder .main-heading-block .mainHeadingText {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .comn-withImg-sec .comn-withImg-row .dscInfo-col .dscInfo-holder .main-heading-block .mainHeadingText {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .comn-withImg-sec .comn-withImg-row .dscInfo-col .dscInfo-holder .main-heading-block .mainHeadingText {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .comn-withImg-sec .comn-withImg-row .dscInfo-col .dscInfo-holder .main-heading-block .mainHeadingText {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .comn-withImg-sec .comn-withImg-row .dscInfo-col .dscInfo-holder .main-heading-block .mainHeadingText {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .comn-withImg-sec .comn-withImg-row .dscInfo-col .dscInfo-holder .main-heading-block .mainHeadingText {
    font-size: 48px;
    line-height: 1.3;
  }
}
.comn-withImg-sec .comn-withImg-row .dscInfo-col .dscInfo-holder .dsc-content-block .dsc-text p {
  color: #555555;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}
.comn-withImg-sec .comn-withImg-row .dscInfo-col .dscInfo-holder .dsc-content-block .dsc-text p + p {
  margin-top: 20px;
}
.comn-withImg-sec .comn-withImg-row .dscInfo-col .dscInfo-holder .dsc-content-block .btn-holder {
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  .comn-withImg-sec .comn-withImg-row .dscInfo-col .dscInfo-holder .dsc-content-block .btn-holder {
    margin-top: 30px;
  }
}

.dscInfoContent-grayBox {
  max-width: 1040px;
  margin: 0 auto;
  background-color: #f6f6f6;
  padding: 60px 80px;
}
@media only screen and (max-width: 1199px) {
  .dscInfoContent-grayBox {
    padding: 40px 40px;
  }
}
@media only screen and (max-width: 991px) {
  .dscInfoContent-grayBox {
    padding: 40px 30px;
  }
}
.dscInfoContent-grayBox .left-col {
  border-right: 1px solid #979797;
}
@media only screen and (max-width: 767px) {
  .dscInfoContent-grayBox .left-col {
    border-right: none;
  }
}
.dscInfoContent-grayBox .dscInfoContent-block {
  padding-right: 60px;
  padding-left: 60px;
}
@media only screen and (max-width: 1199px) {
  .dscInfoContent-grayBox .dscInfoContent-block {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .dscInfoContent-grayBox .dscInfoContent-block {
    padding-right: 0px;
    padding-left: 0px;
  }
}
.dscInfoContent-grayBox .dscInfoContent-block .headingText {
  font-size: 26px;
  line-height: 1.2;
  font-family: "PT Serif", serif;
  color: #222222;
  margin-bottom: 30px;
}
@media screen and (min-width: 576px) {
  .dscInfoContent-grayBox .dscInfoContent-block .headingText {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .dscInfoContent-grayBox .dscInfoContent-block .headingText {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .dscInfoContent-grayBox .dscInfoContent-block .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .dscInfoContent-grayBox .dscInfoContent-block .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .dscInfoContent-grayBox .dscInfoContent-block .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .dscInfoContent-grayBox .dscInfoContent-block .headingText {
    font-size: 48px;
    line-height: 1.2;
  }
}
.dscInfoContent-grayBox .dscInfoContent-block .dscText ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dscInfoContent-grayBox .dscInfoContent-block .dscText ul li {
  padding-left: 28px;
  position: relative;
  margin-top: 22px;
}
.dscInfoContent-grayBox .dscInfoContent-block .dscText ul li:first-child {
  margin-top: 0;
}
.dscInfoContent-grayBox .dscInfoContent-block .dscText ul li:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background-image: url(../images/blue-list-arrow.svg);
  background-size: 13px auto;
  width: 13px;
  height: 12px;
}
.dscInfoContent-grayBox .dscInfoContent-block .dscText ul li p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #555555;
}
@media only screen and (max-width: 991px) {
  .dscInfoContent-grayBox .dscInfoContent-block .dscText ul li p {
    font-size: 14px;
  }
}

.workshop .dscText a:hover {
  color: white !important;
}

.inr-banner-sec.contact-inr-banner-sec .inr-banner .banner-content {
  margin-top: -80px;
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec.contact-inr-banner-sec .inr-banner .banner-content {
    margin-top: 0px;
  }
}
.inr-banner-sec.contact-inr-banner-sec .inr-banner .graphic-img-wrap {
  top: 0;
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec.contact-inr-banner-sec .inr-banner .graphic-img-wrap {
    position: relative !important;
  }
}
.inr-banner-sec.contact-inr-banner-sec .inr-banner .graphic-img-holder {
  right: 125px;
  bottom: 60px;
  width: 567px;
  height: 377px;
}
@media only screen and (max-width: 1199px) {
  .inr-banner-sec.contact-inr-banner-sec .inr-banner .graphic-img-holder {
    right: 0;
    bottom: 60px;
    width: 445px;
    height: 302px;
  }
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec.contact-inr-banner-sec .inr-banner .graphic-img-holder {
    position: relative;
    left: 0;
    margin: auto;
  }
}
@media only screen and (max-width: 767px) {
  .inr-banner-sec.contact-inr-banner-sec .inr-banner .graphic-img-holder {
    bottom: 57px;
    width: 100%;
    height: 236px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* contact-main */
.contact-main-sec {
  margin-top: -80px;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .contact-main-sec {
    margin-top: -60px;
  }
}
.contact-main-sec .contact-main {
  background-color: #fff;
  max-width: 970px;
  margin: 0 auto;
  /* contact-main-form */
  /* contact-main-info */
}
.contact-main-sec .contact-main .contact-main-form {
  padding: 25px 30px 25px 30px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  /* contact-main-form-heading */
  /* contact-main-form-main */
}
@media only screen and (min-width: 1200px) {
  .contact-main-sec .contact-main .contact-main-form.col-xl-7 {
    width: 55%;
  }
}
.contact-main-sec .contact-main .contact-main-form .contact-main-form-heading {
  margin-bottom: 30px;
}
.contact-main-sec .contact-main .contact-main-form .contact-main-form-heading > *:last-child {
  margin-bottom: 0 !important;
}
.contact-main-sec .contact-main .contact-main-form .contact-main-form-heading .headingText {
  font-size: 18px;
  line-height: 1.3;
  color: #222222;
  font-family: "PT Serif", serif;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .contact-main-sec .contact-main .contact-main-form .contact-main-form-heading .headingText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .contact-main-sec .contact-main .contact-main-form .contact-main-form-heading .headingText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .contact-main-sec .contact-main .contact-main-form .contact-main-form-heading .headingText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .contact-main-sec .contact-main .contact-main-form .contact-main-form-heading .headingText {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .contact-main-sec .contact-main .contact-main-form .contact-main-form-heading .headingText {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .contact-main-sec .contact-main .contact-main-form .contact-main-form-heading .headingText {
    font-size: 26px;
    line-height: 1.4;
  }
}
.contact-main-sec .contact-main .contact-main-info {
  padding: 25px 30px 25px 30px;
  background-color: #0293de;
  /* contact-main-info-heading */
  /* contact-main-info-main */
}
@media only screen and (min-width: 1200px) {
  .contact-main-sec .contact-main .contact-main-info.col-xl-5 {
    width: 45%;
  }
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-heading {
  margin-bottom: 30px;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-heading > *:last-child {
  margin-bottom: 0 !important;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-heading .title {
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  font-family: "PT Serif", serif;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .contact-main-sec .contact-main .contact-main-info .contact-main-info-heading .title {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .contact-main-sec .contact-main .contact-main-info .contact-main-info-heading .title {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .contact-main-sec .contact-main .contact-main-info .contact-main-info-heading .title {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .contact-main-sec .contact-main .contact-main-info .contact-main-info-heading .title {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .contact-main-sec .contact-main .contact-main-info .contact-main-info-heading .title {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .contact-main-sec .contact-main .contact-main-info .contact-main-info-heading .title {
    font-size: 26px;
    line-height: 1.4;
  }
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main {
  /* contact-main-info-main-item */
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item {
  margin-bottom: 30px;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item:last-child, .contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item:only-child {
  margin-bottom: 0;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item > *:last-child {
  margin-bottom: 0 !important;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item .title {
  position: relative;
  margin-bottom: 10px;
  padding-left: 35px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  line-height: 1.38;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item .title:before {
  position: absolute;
  top: -1px;
  left: 0;
  font-family: "fontello";
  font-weight: 400;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item .dataText {
  padding-left: 35px;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item .dataText p {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 1.38;
  margin: 0;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item .dataText p + p {
  margin-top: 15px;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item .dataText a {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item .dataText a:hover {
  color: #222222;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item.address .title:before {
  content: "\e81f";
  font-size: 24px;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item.phone .title:before {
  content: "\e81e";
  font-size: 20px;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item.w-phone .title:before {
  content: "\e81d";
  font-size: 20px;
}
.contact-main-sec .contact-main .contact-main-info .contact-main-info-main .contact-main-info-main-item.email .title:before {
  content: "\e81c";
  font-size: 17px;
}

.contact-map-sec iframe {
  width: 100%;
  height: 400px;
}

.comn-form .form-control {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #555555;
  height: 50px;
  width: 100%;
  border: solid 0.6px #888;
  border-radius: 5px;
}
.comn-form .form-control:focus {
  border: solid 0.6px #0293de;
  box-shadow: none;
}
.comn-form textarea.form-control {
  height: 100px;
  resize: none;
}
.comn-form .phone-input-holder {
  display: flex;
  align-items: center;
  width: 100%;
}
.comn-form .phone-input-holder .ph-code-box {
  width: 114px;
  position: relative;
}
.comn-form .phone-input-holder .ph-code-box:after {
  content: "";
  width: 1px;
  height: 32px;
  background-color: #979797;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.comn-form .phone-input-holder .ph-input-box {
  width: 100%;
}
.comn-form .phone-input-holder .ph-input-box input {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #555555;
  height: 50px;
  width: 100%;
  border: none;
  padding: 5px 15px;
  border-radius: 5px;
  border: solid 0.6px #888;
  width: 100%;
  padding-left: 55px;
}
.comn-form .phone-input-holder .ph-input-box input + label {
  color: #dc3232;
  font-size: 14px;
  line-height: 1.3;
}
.comn-form .phone-input-holder .ph-input-box .intl-tel-input.allow-dropdown .selected-flag, .comn-form .phone-input-holder .ph-input-box .intl-tel-input.separate-dial-code .selected-flag {
  height: 50px;
}
.comn-form .form-label {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: #555555;
}
.comn-form .wpcf7 form.invalid .wpcf7-response-output,
.comn-form .wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #d9251d;
  background-color: #d9251d;
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  text-align: center;
}

/* ========================== */
/* START OF BLOG PAGE CSS */
/* ========================== */
/* wraper-blog-single */
.wraper-blog-single {
  margin-top: 77px;
  /* blog-single-poster */
  /* blog-single-heading */
  /* blog-single-content */
}
@media screen and (max-width: 991px) {
  .wraper-blog-single {
    margin-top: 66px;
  }
}
@media screen and (max-width: 991px) {
  .wraper-blog-single {
    margin-top: 95px;
  }
}
.wraper-blog-single > .container {
  padding-top: 0;
  padding-bottom: 0;
}
.wraper-blog-single .blog-single-left-col {
  height: 100%;
}
@media screen and (max-width: 991px) {
  .wraper-blog-single .blog-single-left-col {
    margin-top: 30px;
    height: auto;
  }
}
.wraper-blog-single .blog-single-poster {
  margin-bottom: 30px;
  padding-top: 68%;
}
.wraper-blog-single .blog-single-poster > .pic-main {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #c5c5c5;
}
.wraper-blog-single .blog-single-poster > .pic-main img {
  width: 100%;
  height: 100%;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: contain;
     object-fit: contain;
}
.wraper-blog-single .blog-single-heading {
  margin-bottom: 30px;
}
.wraper-blog-single .blog-single-heading > *:last-child {
  margin-bottom: 0 !important;
}
.wraper-blog-single .blog-single-heading .headingText {
  font-size: 26px;
  line-height: 1.3;
  color: #222222;
  font-family: "PT Serif", serif;
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (min-width: 576px) {
  .wraper-blog-single .blog-single-heading .headingText {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .wraper-blog-single .blog-single-heading .headingText {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .wraper-blog-single .blog-single-heading .headingText {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .wraper-blog-single .blog-single-heading .headingText {
    font-size: 35px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .wraper-blog-single .blog-single-heading .headingText {
    font-size: 35px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .wraper-blog-single .blog-single-heading .headingText {
    font-size: 48px;
    line-height: 1.5;
  }
}
.wraper-blog-single .blog-single-content-row {
  margin-top: 50px;
}
@media screen and (max-width: 991px) {
  .wraper-blog-single .blog-single-content-row {
    margin-top: 0px;
  }
}
.wraper-blog-single .blog-single-content-row .blog-single-content ul, .wraper-blog-single .blog-single-content-row .blog-single-content ol {
  padding-left: 18px;
  font-size: 18px;
  line-height: 1.89;
  color: #222222;
}
.wraper-blog-single .blog-single-content-row .blog-single-content ul:not(:last-child), .wraper-blog-single .blog-single-content-row .blog-single-content ol:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .wraper-blog-single .blog-single-content-row .blog-single-content ul, .wraper-blog-single .blog-single-content-row .blog-single-content ol {
    font-size: 16px;
  }
}
.wraper-blog-single .blog-single-content > *:last-child {
  margin-bottom: 0 !important;
}
.wraper-blog-single .blog-single-content #gallery-1 .gallery-item {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0 10px;
}
.wraper-blog-single .blog-single-content p {
  font-size: 18px;
  line-height: 1.89;
  color: #222222;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .wraper-blog-single .blog-single-content p {
    font-size: 16px;
  }
}
.wraper-blog-single .blog-single-content p a {
  color: #235299;
  text-decoration: none;
}
.wraper-blog-single .blog-single-content p a:hover {
  color: #d9251d;
  text-decoration: none;
}
.wraper-blog-single .blog-single-content h1 {
  font-size: 33px;
}
@media screen and (max-width: 767px) {
  .wraper-blog-single .blog-single-content h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .wraper-blog-single .blog-single-content h1 {
    font-size: 28px;
  }
}
.wraper-blog-single .blog-single-content h2 {
  font-size: 22px;
  line-height: 1.4;
  color: #222222;
  margin-bottom: 20px;
  font-family: "PT Serif", serif;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .wraper-blog-single .blog-single-content h2 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .wraper-blog-single .blog-single-content h2 {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .wraper-blog-single .blog-single-content h2 {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .wraper-blog-single .blog-single-content h2 {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .wraper-blog-single .blog-single-content h2 {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .wraper-blog-single .blog-single-content h2 {
    font-size: 38px;
    line-height: 1.5;
  }
}
.wraper-blog-single .blog-single-content blockquote {
  background-color: #f7f6fe !important;
  padding: 15px 35px;
  margin-bottom: 20px;
  border-radius: 11px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.wraper-blog-single .blog-single-content blockquote p {
  margin: 0;
  color: #222222;
}
.wraper-blog-single .blog-single-content blockquote p + p {
  margin-top: 20px;
}

/* ==== .tags-list ==== */
.tags-list li {
  background-color: #0293de;
  padding: 2px 10px;
  border-radius: 3px;
  margin-right: 6px;
  margin-bottom: 8px;
  box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.3);
}
.tags-list li:last-child {
  margin-right: 0;
}
.tags-list li .tagText {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

/* smInfo-list */
.blog-smInfo-list .smInfo-list-block .icon-box {
  color: #222222;
  font-size: 16px;
}
.blog-smInfo-list .smInfo-list-block .text-box {
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  color: #222222;
}

.blog-listing-item {
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-listing-item .blog-listing-pic-main {
  padding-top: 56.5%;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #c5c5c5;
}
.blog-listing-item .blog-listing-pic-main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  padding: 28px;
}
.blog-listing-item .blog-listing-pic-main img.prgrm-img {
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #f6f6f6;
}
.blog-listing-item .blog-listing-pic-main .tags-list {
  position: absolute;
  top: 20px;
  z-index: 2;
  left: 20px;
}
.blog-listing-item .blog-listing-content {
  padding: 30px 20px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
}
.blog-listing-item .blog-listing-content .blog-listing-data {
  flex: 1 1 0;
}
.blog-listing-item .blog-listing-content .blog-listing-data .blog-listing-headingText {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #222222;
}
.blog-listing-item .blog-listing-content .blog-listing-data .blog-listing-headingText a {
  color: #222222;
  text-decoration: none;
}
.blog-listing-item .blog-listing-content .blog-listing-data .blog-listing-headingText a:hover {
  color: #d9251d;
}
.blog-listing-item .blog-listing-content .blog-listing-data .blog-listing-excerpt {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.87;
  color: #222222;
  margin: 0;
}
.blog-listing-item .blog-listing-content .blog-smInfo-list {
  margin-top: 23px;
}

.blog-side-heading-block .headingText {
  font-size: 22px;
  line-height: 1.4;
  color: #222222;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
@media screen and (min-width: 576px) {
  .blog-side-heading-block .headingText {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .blog-side-heading-block .headingText {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .blog-side-heading-block .headingText {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .blog-side-heading-block .headingText {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .blog-side-heading-block .headingText {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .blog-side-heading-block .headingText {
    font-size: 38px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 1199px) {
  .blog-side-heading-block {
    flex-wrap: wrap;
  }
}
.blog-side-heading-block .filter-box {
  margin-top: 0;
}
@media screen and (max-width: 1199px) {
  .blog-side-heading-block .filter-box {
    margin-top: 20px;
  }
}

.blog-listing-heading-block ::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #555555 !important;
  opacity: 1; /* Firefox */
}

.blog-listing-heading-block ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #555555 !important;
  opacity: 1; /* Firefox */
}

.blog-listing-heading-block :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #555555 !important;
}

.blog-listing-heading-block ::-ms-input-placeholder { /* Microsoft Edge */
  color: #555555 !important;
}

.blog-listing-heading-block .headingText {
  font-size: 22px;
  line-height: 1.4;
  color: #222222;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
@media screen and (min-width: 576px) {
  .blog-listing-heading-block .headingText {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .blog-listing-heading-block .headingText {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .blog-listing-heading-block .headingText {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .blog-listing-heading-block .headingText {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .blog-listing-heading-block .headingText {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .blog-listing-heading-block .headingText {
    font-size: 38px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 1199px) {
  .blog-listing-heading-block .headingText {
    width: 100%;
    margin-bottom: 16px !important;
  }
}
@media screen and (max-width: 1199px) {
  .blog-listing-heading-block {
    flex-wrap: wrap;
  }
}
.blog-listing-heading-block .alm-filters-container .alm-filter--text-wrap input[type=number], .blog-listing-heading-block .alm-filters-container .alm-filter--text-wrap input[type=text] {
  height: 50px;
  color: #555555;
  height: 40px;
  width: 100%;
  border: solid 0.6px #888;
}
.blog-listing-heading-block .alm-filters-container {
  width: 564px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (max-width: 1199px) {
  .blog-listing-heading-block .alm-filters-container {
    width: 100%;
  }
}
.blog-listing-heading-block .alm-filters-container .alm-filter {
  width: calc(50% - 40px);
  padding-right: 12px;
}
@media screen and (max-width: 1199px) {
  .blog-listing-heading-block .alm-filters-container .alm-filter {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .blog-listing-heading-block .alm-filters-container .alm-filter {
    padding-right: 0;
    margin-bottom: 12px;
  }
}
.blog-listing-heading-block .alm-filters-container .alm-filters--controls {
  width: 80px;
  margin: 0 0 0;
}
@media screen and (max-width: 1199px) {
  .blog-listing-heading-block .alm-filters-container .alm-filters--controls {
    width: 120px;
  }
}
.blog-listing-heading-block .alm-filters-container .alm-filter--select select {
  height: 40px !important;
  padding-right: 26px !important;
}
.blog-listing-heading-block .alm-filters-container button[type=button] {
  color: #fff;
  border-radius: 5px;
  border: 1px solid #d9251d;
  background-color: #d9251d;
  width: 100%;
  height: 40px;
  padding: 0 0;
}
.blog-listing-heading-block .alm-filters-container button[type=button]:hover {
  background-color: #ac1d17;
  color: #fff;
  border: 1px solid #ac1d17;
}
.blog-listing-heading-block .alm-filters-container .alm-filters--submit {
  width: 100%;
  margin: 0 0;
}
.blog-listing-heading-block .alm-filters-container .alm-filter--inner {
  padding: 0 0 0;
}

.socialList-holder ul li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.socialList-holder ul li a {
  display: inline-block;
}
.socialList-holder ul li a .icon-box {
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 19px;
  text-align: center;
  line-height: 32px;
  border-radius: 100%;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.socialList-holder ul li a .icon-box.facebook {
  background-color: #3557a0;
}
.socialList-holder ul li a .icon-box.youtube {
  background-color: #d42428;
}
.socialList-holder ul li a .icon-box.linkedin {
  background-color: #007ab9;
}
.socialList-holder ul li a .icon-box.google {
  background-color: #dd4b39;
}
.socialList-holder ul li a .icon-box.twitter {
  background-color: #00a0f4;
}
.socialList-holder ul li a:hover {
  transform: translateY(-5px);
}
.socialList-holder ul li:first-child {
  margin-left: 0;
}

.upcomingTrainingPost-content-block .upcomingTrainingPost-content .content-row {
  margin-top: 15px;
}
.upcomingTrainingPost-content-block .upcomingTrainingPost-content .content-row:first-child {
  margin-top: 0;
}
.upcomingTrainingPost-content-block .upcomingTrainingPost-content .content-row a {
  text-decoration: none;
}
.upcomingTrainingPost-content-block .upcomingTrainingPost-content .content-row a:hover .dscText p {
  color: #d9251d;
}
.upcomingTrainingPost-content-block .upcomingTrainingPost-content .content-row .text-box-holder {
  width: 107px;
  height: 70px;
  background-color: #0293de;
}
.upcomingTrainingPost-content-block .upcomingTrainingPost-content .content-row .text-box-holder .text-box {
  text-align: center;
}
.upcomingTrainingPost-content-block .upcomingTrainingPost-content .content-row .text-box-holder .text-box .dateText {
  font-size: 20px;
  line-height: 1.3;
  font-weight: bold;
  color: #fff;
}
.upcomingTrainingPost-content-block .upcomingTrainingPost-content .content-row .text-box-holder .text-box .monthText {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  display: inline-block;
}
.upcomingTrainingPost-content-block .upcomingTrainingPost-content .content-row .dscText {
  width: calc(100% - 107px);
  padding-left: 18px;
}
.upcomingTrainingPost-content-block .upcomingTrainingPost-content .content-row .dscText p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.67;
  color: #222222;
  text-decoration: none;
  margin: 0;
}

.trendingPost-content .content-row {
  margin-top: 15px;
}
.trendingPost-content .content-row:first-child {
  margin-top: 0;
}
.trendingPost-content .content-row .img-holder {
  width: 107px;
  height: 70px;
}
.trendingPost-content .content-row .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.trendingPost-content .content-row .dscText {
  width: calc(100% - 107px);
  padding-left: 18px;
}
.trendingPost-content .content-row .dscText a {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.67;
  color: #222222;
  text-decoration: none;
  margin: 0;
}
.trendingPost-content .content-row .dscText a:hover {
  color: #d9251d;
}

.filter-box .search-box {
  position: relative;
}
.filter-box .search-box .btn-send {
  right: 2px;
  color: #222222;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: transparent;
  border: none;
  font-size: 16px;
}
.filter-box .alm-filter--select .alm-filter--item {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #555555;
  height: 50px;
  width: 100%;
  border: solid 0.6px #888;
  border-radius: 5px;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  background-image: url(../images/down-angle.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.blog-listing-content .alm-listing .alm-reveal {
  display: flex;
  flex-wrap: wrap;
}
.blog-listing-content .alm-listing .alm-reveal > .blog-listing-item-col {
  flex-shrink: 0;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
@media screen and (max-width: 767px) {
  .blog-listing-content .alm-listing .alm-reveal > .blog-listing-item-col {
    width: 100%;
    max-width: 100%;
  }
}

.blog-comments input[type=date],
.blog-comments input[type=time],
.blog-comments input[type=datetime-local],
.blog-comments input[type=week],
.blog-comments input[type=month],
.blog-comments input[type=text],
.blog-comments input[type=email],
.blog-comments input[type=url],
.blog-comments input[type=password],
.blog-comments input[type=search],
.blog-comments input[type=tel],
.blog-comments input[type=number],
.blog-comments textarea {
  background: #f7f7f7;
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  border: 1px solid #d1d1d1;
  border-radius: 2px;
  color: #686868;
  padding: 0.625em 0.4375em;
  width: 100%;
}
.blog-comments .comment-list {
  list-style: none;
  margin: 0 0 30px;
  margin-top: 20px;
}
.blog-comments .comment-list .comment-li {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e3e3e3;
  padding: 15px 0;
}
.blog-comments .comment-list .comment-li:first-child {
  border-top: 1px solid #e3e3e3;
}
.blog-comments .comment-list .comment-li .author-image {
  width: 60px;
}
.blog-comments .comment-list .comment-li .author-image img {
  width: 100%;
  height: auto;
  border: 1px solid #c5c5c5;
}
.blog-comments .comment-list .comment-date {
  word-spacing: 10px;
  word-spacing: 10px;
  line-height: 1.2;
  font-weight: 500;
  font-size: 13px;
  color: #858585;
}
.blog-comments .comment-list .comment-content {
  margin-top: 8px;
}
.blog-comments .comment-list li .comment-body {
  width: calc(100% - 60px);
  padding-left: 20px;
  margin-top: -2px;
}
.blog-comments .comment-list li .comment-body .comment-content p {
  margin: 0;
}
.blog-comments .comment-list li .comment-body .comment-author {
  font-size: 16px;
  line-height: 1.3;
  color: #222222;
  font-family: "PT Serif", serif;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ========================== */
/* END OF BLOG PAGE CSS */
/* ========================== */
.dateTime-info-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dateTime-info-list ul li {
  display: flex;
  margin-top: 20px;
  align-items: center;
}
.dateTime-info-list ul li:first-child {
  margin-top: 0;
}
.dateTime-info-list ul li .textData {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: #555555;
}

.webinar-sec {
  padding: 60px 0;
}
.webinar-sec .webinar-left-col .webinar-left-content {
  padding-right: 80px;
}
@media screen and (max-width: 1199px) {
  .webinar-sec .webinar-left-col .webinar-left-content {
    padding-right: 0;
  }
}
.webinar-sec .webinar-right-col .webinar-right-content .block-mt60 {
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  .webinar-sec .webinar-right-col .webinar-right-content .block-mt60 {
    margin-top: 40px;
  }
}
.webinar-sec .webinar-right-col .webinar-right-content .webinar-img-block {
  width: 100%;
}
.webinar-sec .webinar-right-col .webinar-right-content .webinar-img-block .img-holder {
  width: 100%;
  position: relative;
  padding-top: 62%;
}
.webinar-sec .webinar-right-col .webinar-right-content .webinar-img-block .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.webinar-sec .webinar-right-col .webinar-right-content .upcomingWebinar-block-content .content-row a {
  text-decoration: none;
}
.webinar-sec .webinar-right-col .webinar-right-content .upcomingWebinar-block-content .content-row a:hover .dscText p {
  color: #d9251d;
}
.webinar-sec .webinar-right-col .webinar-right-content .upcomingWebinar-block-content .content-row .img-holder {
  width: 124px;
  height: 70px;
}
.webinar-sec .webinar-right-col .webinar-right-content .upcomingWebinar-block-content .content-row .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.webinar-sec .webinar-right-col .webinar-right-content .upcomingWebinar-block-content .content-row .dscText {
  width: calc(100% - 124px);
  padding-left: 18px;
}
.webinar-sec .webinar-right-col .webinar-right-content .upcomingWebinar-block-content .content-row .dscText p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.67;
  color: #222222;
  text-decoration: none;
  margin: 0;
}
.webinar-sec .webinar-right-col .webinar-right-content .comn-form .phone-input-holder .ph-code-box {
  width: 100px;
}
.webinar-sec .trainer-info-content {
  margin-top: 40px;
}
.webinar-sec .trainer-info-content .trainer-smInfo-holder .circle-img-holder {
  padding-right: 20px;
  position: relative;
}
.webinar-sec .trainer-info-content .trainer-smInfo-holder .circle-img-holder .img-holder {
  width: 70px;
  height: 70px;
  border: solid 1px #979797;
  border-radius: 100%;
}
.webinar-sec .trainer-info-content .trainer-smInfo-holder .circle-img-holder .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
.webinar-sec .trainer-info-content .trainer-smInfo-holder .circle-img-holder .socialLink-circle {
  width: 31px;
  height: 30px;
  position: absolute;
  bottom: -10px;
  right: 0px;
}
.webinar-sec .trainer-info-content .trainer-smInfo-holder .circle-img-holder .socialLink-circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.webinar-sec .trainer-info-content .trainer-smInfo-holder .nameText {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #222222;
  text-decoration: underline;
}

.side-block .header-block .headingText {
  font-size: 22px;
  line-height: 1.4;
  font-family: "PT Serif", serif;
  color: #222222;
  font-weight: 400;
}
@media screen and (min-width: 576px) {
  .side-block .header-block .headingText {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .side-block .header-block .headingText {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .side-block .header-block .headingText {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .side-block .header-block .headingText {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .side-block .header-block .headingText {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .side-block .header-block .headingText {
    font-size: 38px;
    line-height: 1.5;
  }
}

@media screen and (min-width: 1200px) {
  .preWebinar-video-slider2 .swiper-wrapper.no-2 {
    justify-content: center;
  }
}
@media screen and (min-width: 576px) {
  .preWebinar-video-slider2 .swiper-wrapper.no-1 {
    justify-content: center;
  }
}

.preWebinar-video-sec .preWebinar-video-slider-wrap .preWebinar-video-slider .swiper-container {
  padding: 0 10px;
}
.preWebinar-video-sec .preWebinar-video-slider-wrap .preWebinar-video-slider .swiper-container .swiper-slide {
  height: auto;
}
@media screen and (min-width: 1200px) {
  .preWebinar-video-sec .preWebinar-video-slider-wrap .preWebinar-video-slider .swiper-wrapper.no-2 {
    justify-content: center;
  }
}
@media screen and (min-width: 576px) {
  .preWebinar-video-sec .preWebinar-video-slider-wrap .preWebinar-video-slider .swiper-wrapper.no-1 {
    justify-content: center;
  }
}

.preWebinar-video-listing-item {
  padding: 10px 0;
  width: 100%;
  display: flex;
  height: 100%;
}

.listing-content-holder {
  width: 100%;
  padding: 12px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.listing-content-holder .video-holder-outer {
  width: 100%;
  z-index: 1;
}
.listing-content-holder .video-holder-outer .video-holder {
  width: 100%;
  position: relative;
  padding-top: 58%;
}
.listing-content-holder .video-holder-outer .video-holder iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.listing-content-holder .data-content {
  width: 100%;
  padding: 20px 15px 10px;
}
.listing-content-holder .data-content .dscText p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #222222;
  margin: 0;
}

.upcoming-training-main-row {
  margin: 80px 0 0;
}
.upcoming-training-main-row .free-crse {
  text-align: center;
  margin: 15px 15px 15px;
  margin: 15px 15px;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  padding: 15px 15px;
}
.upcoming-training-main-row .free-crse figure {
  margin-bottom: 20px;
}
.upcoming-training-main-row .free-crse figure img {
  max-width: 100px;
}
.upcoming-training-main-row .free-crse .btn {
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .upcoming-training-main-row {
    margin: 50px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .upcoming-training-main-row {
    margin: 40px 0 0;
  }
}
.upcoming-training-main-row.even-row:nth-child(even) .upcoming-training-slider-col {
  order: 2;
}
.upcoming-training-main-row.even-row:nth-child(even) .upcoming-training-dscInfo-col {
  order: 1;
}
.upcoming-training-main-row.even-row .upcoming-training-slider-col {
  order: 1;
}
@media only screen and (max-width: 991px) {
  .upcoming-training-main-row.even-row .upcoming-training-slider-col {
    order: 2 !important;
  }
}
.upcoming-training-main-row.even-row .upcoming-training-dscInfo-col {
  order: 2;
}
@media only screen and (max-width: 991px) {
  .upcoming-training-main-row.even-row .upcoming-training-dscInfo-col {
    order: 1 !important;
  }
}
.upcoming-training-main-row.even-row .upcoming-training-dscInfo-col .upcoming-training-dscInfo-holder-wrap {
  padding-left: 50px;
  padding-right: 0;
}
@media only screen and (max-width: 991px) {
  .upcoming-training-main-row.even-row .upcoming-training-dscInfo-col .upcoming-training-dscInfo-holder-wrap {
    padding-left: 15px;
  }
}
.upcoming-training-main-row .upcoming-training-dscInfo-col .upcoming-training-dscInfo-holder-wrap {
  padding-left: 15px;
  padding-right: 50px;
}
@media only screen and (max-width: 991px) {
  .upcoming-training-main-row .upcoming-training-dscInfo-col .upcoming-training-dscInfo-holder-wrap {
    padding-left: 15px;
    padding-right: 0;
  }
}
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider {
  position: relative;
}
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder {
  position: absolute;
  bottom: 36px;
  width: 100%;
  height: 20px;
}
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder .swiper-button-next,
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder .swiper-button-prev {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background-color: #204f95;
  color: #fff;
  top: 0;
  margin: 0;
  border: none;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder .swiper-button-next:after,
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder .swiper-button-prev:after {
  font-size: 9px;
}
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder .swiper-button-next:hover,
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder .swiper-button-prev:hover {
  color: #fff;
}
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder .swiper-button-next:not(.swiper-button-disabled),
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder .swiper-button-prev:not(.swiper-button-disabled) {
  color: #fff;
}
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder .swiper-button-next {
  right: 30px;
  left: auto;
}
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder .swiper-button-next:after {
  content: "\e800";
  font-family: "fontello";
}
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder .swiper-button-prev {
  right: 0;
  left: 30px;
}
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder .swiper-button-prev:after {
  content: "\e804";
  font-family: "fontello";
}
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder.button-center .swiper-button-prev {
  left: calc(50% - 45px);
  bottom: -25px;
  top: auto;
  transform: translateX(50%);
  right: auto;
}
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-button-holder.button-center .swiper-button-next {
  right: calc(50% - 45px);
  bottom: -25px;
  top: auto;
  transform: translateX(-50%);
  left: auto;
}
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-slide {
  height: auto;
}
.upcoming-training-main-row .upcoming-training-slider-col .upcoming-training-slider-wrap .upcoming-training-slider .swiper-container .swiper-slide .csm001-content-block {
  padding: 15px;
  height: 100%;
}

.corporate-training-list-wrap {
  margin-top: -150px;
}
@media only screen and (max-width: 767px) {
  .corporate-training-list-wrap {
    margin-top: 0px;
  }
}
.corporate-training-list-wrap .corporate-training-list-row {
  margin-right: -25px;
  margin-left: -25px;
}
@media only screen and (max-width: 1199px) {
  .corporate-training-list-wrap .corporate-training-list-row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .corporate-training-list-wrap .corporate-training-list-row {
    margin-right: -10px;
    margin-left: -10px;
  }
}
.corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid {
  flex: 0 0 auto;
  width: 50%;
  padding-right: 25px;
  padding-left: 25px;
  margin-bottom: 55px;
}
@media only screen and (max-width: 1199px) {
  .corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid {
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid {
    width: 100%;
  }
}
.corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid:first-child {
  margin-top: 150px;
}
@media only screen and (max-width: 767px) {
  .corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid:first-child {
    margin-top: 0px;
  }
}
.corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder {
  width: 100%;
  background-color: #ffffff;
  position: relative;
}
.corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .img-holder {
  width: 100%;
  position: relative;
  padding-top: 59.5%;
}
.corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .img-holder:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .data-content {
  width: 100%;
  padding: 35px 40px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 991px) {
  .corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .data-content {
    padding: 25px 20px;
  }
}
.corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .data-content .headingText {
  color: #000000;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  font-family: "PT Serif", serif;
}
@media screen and (min-width: 576px) {
  .corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .data-content .headingText {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .data-content .headingText {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .data-content .headingText {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .data-content .headingText {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .data-content .headingText {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .data-content .headingText {
    font-size: 38px;
    line-height: 1.5;
  }
}
.corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .data-content .dscText p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #555555;
  font-weight: 400;
}
.corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .data-content .dscText a {
  color: #204f95;
  text-decoration: none;
  font-weight: 600;
}
.corporate-training-list-wrap .corporate-training-list-row .corporate-training-list-grid .listing-content-holder .data-content .dscText a:hover {
  color: #d9251d;
}

.strategy-content-block {
  width: 100%;
  padding: 0 10px;
}
.strategy-content-block .icon-holder {
  width: 50px;
  height: 50px;
  position: relative;
  margin: 0 auto 25px;
}
.strategy-content-block .icon-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
  position: relative;
}
.strategy-content-block .data-content .headingText {
  color: #fff;
  font-size: 18px;
  line-height: 1.67;
  font-weight: 700;
}
.strategy-content-block .data-content .dsc-text p {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 1.75;
}

.trustedBy-section .trustedBy-logo-content .trustedBy-logo-holder {
  width: calc(20% - 20px);
  margin: 5px 10px;
}
@media only screen and (max-width: 991px) {
  .trustedBy-section .trustedBy-logo-content .trustedBy-logo-holder {
    width: calc(33.33% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .trustedBy-section .trustedBy-logo-content .trustedBy-logo-holder {
    width: calc(50% - 20px);
  }
}
.trustedBy-section .trustedBy-logo-content .trustedBy-logo-holder img {
  width: 100%;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .trustedBy-section .trustedBy-logo-content .trustedBy-logo-holder img {
    height: 95px;
  }
}
.trustedBy-section .trustedBy-trustpilot-slider-holder {
  width: 100%;
}
.trustedBy-section .trustedBy-trustpilot-slider-holder img {
  width: 100%;
}

.objective-sec .objective-slider-wrap {
  width: 100%;
  position: relative;
}
.objective-sec .objective-slider-wrap:after {
  content: "";
  width: 100%;
  height: 26%;
  background-color: #204f95;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.objective-sec .objective-slider-wrap .container {
  position: relative;
  z-index: 2;
}
.objective-sec .dscInfoContent-grayBox-wrap {
  width: 100%;
  position: relative;
}
.objective-sec .dscInfoContent-grayBox-wrap:after {
  content: "";
  width: 100%;
  height: 50%;
  background-color: #204f95;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}
.objective-sec .dscInfoContent-grayBox-wrap .container {
  position: relative;
  z-index: 2;
}
.objective-sec .dscInfoContent-grayBox-wrap .dscInfoContent-grayBox {
  max-width: none;
}

.objective-card {
  background-color: #fff;
  width: 100%;
}
.objective-card .objective-card-body {
  padding: 30px;
}
.objective-card .objective-card-body .icon-holder {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  line-height: 68px;
  background-color: #0293de;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.objective-card .objective-card-body .icon-holder img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}

.requestCall-sec .requestCall-left-col {
  width: calc(100% - 430px);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
@media only screen and (max-width: 991px) {
  .requestCall-sec .requestCall-left-col {
    width: 100%;
  }
}
.requestCall-sec .requestCall-left-col .requestCall-left-content {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 85px;
  padding-left: 320px;
}
@media only screen and (max-width: 991px) {
  .requestCall-sec .requestCall-left-col .requestCall-left-content {
    padding-top: 20px;
    padding-left: 219px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .requestCall-sec .requestCall-left-col .requestCall-left-content {
    padding-top: 20px;
    padding-left: 0;
    padding-bottom: 20px;
  }
}
.requestCall-sec .requestCall-left-col .requestCall-left-content .bg-img-holder {
  background-image: url(../images/course/call-sec-bg-img.jpg);
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .requestCall-sec .requestCall-left-col .requestCall-left-content .bg-img-holder {
    height: 190px;
    position: relative;
  }
}
.requestCall-sec .requestCall-left-col .requestCall-left-content .heading-block {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .requestCall-sec .requestCall-left-col .requestCall-left-content .heading-block {
    margin-top: 20px;
  }
}
.requestCall-sec .requestCall-left-col .requestCall-left-content .heading-block .headingText {
  font-size: 26px;
  line-height: 1.2;
  color: #222222;
  font-family: "PT Serif", serif;
}
@media screen and (min-width: 576px) {
  .requestCall-sec .requestCall-left-col .requestCall-left-content .heading-block .headingText {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .requestCall-sec .requestCall-left-col .requestCall-left-content .heading-block .headingText {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .requestCall-sec .requestCall-left-col .requestCall-left-content .heading-block .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .requestCall-sec .requestCall-left-col .requestCall-left-content .heading-block .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  .requestCall-sec .requestCall-left-col .requestCall-left-content .heading-block .headingText {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  .requestCall-sec .requestCall-left-col .requestCall-left-content .heading-block .headingText {
    font-size: 48px;
    line-height: 1.2;
  }
}
.requestCall-sec .requestCall-left-col .requestCall-left-content .heading-block .sub-headingText {
  font-size: 20px;
  font-weight: normal;
  color: #222222;
}
.requestCall-sec .requestCall-form-col {
  width: 430px;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.requestCall-form-card {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .requestCall-form-card {
    padding: 20px;
  }
}
.requestCall-form-card .headingText {
  font-size: 18px;
  font-weight: bold;
  color: #222222;
  font-family: "PT Serif", serif;
  line-height: 1.56;
}

.courseListing-sec {
  padding: 20px 0;
}

.courseListing-filter-holder {
  padding: 20px 20px 0px 20px;
}
@media only screen and (max-width: 1199px) {
  .courseListing-filter-holder {
    padding: 20px 30px;
  }
}
.courseListing-filter-holder .form-group {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .courseListing-filter-holder .form-group {
    margin-bottom: 15px;
  }
}
.courseListing-filter-holder .row {
  margin-bottom: -30px;
}
@media only screen and (max-width: 1199px) {
  .courseListing-filter-holder .row {
    margin-bottom: -15px;
  }
}

.course_table-wrap .course_table {
  width: 100%;
}
.course_table-wrap .course_table .course_table-row-holder {
  padding: 0 0px;
}
@media only screen and (max-width: 1199px) {
  .course_table-wrap .course_table .course_table-row-holder {
    padding: 0 0px;
  }
}
@media only screen and (max-width: 991px) {
  .course_table-wrap .course_table .course_table-row-holder {
    padding: 0 0px;
  }
}
.course_table-wrap .course_table .course_table-row {
  border-top: 1px solid #999;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .course_table-wrap .course_table .course_table-row {
    padding: 10px 0;
  }
}
.course_table-wrap .course_table .course_table-row:nth-child(1) {
  border-top: none;
}
.course_table-wrap .course_table .course_table-row.course_table-row-head {
  border-bottom: none;
  background-color: #0293de;
  position: relative;
  margin: 0;
  border-top: none;
  padding: 0 60px;
}
@media only screen and (max-width: 1199px) {
  .course_table-wrap .course_table .course_table-row.course_table-row-head {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 991px) {
  .course_table-wrap .course_table .course_table-row.course_table-row-head {
    padding: 0 10px;
  }
}
.course_table-wrap .course_table .course_table-row.course_table-row-head .course_table-cell {
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}
@media only screen and (max-width: 1199px) {
  .course_table-wrap .course_table .course_table-row.course_table-row-head .course_table-cell {
    padding: 15px 10px;
  }
}
.course_table-wrap .course_table .course_table-row .course_table-cell {
  display: flex;
  flex-flow: row nowrap;
  flex-basis: 0;
  flex-grow: 1;
  overflow: hidden;
  padding: 40px 20px;
  overflow: hidden;
  list-style: none;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
  color: #4b5c63;
}
@media only screen and (max-width: 1199px) {
  .course_table-wrap .course_table .course_table-row .course_table-cell {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 991px) {
  .course_table-wrap .course_table .course_table-row .course_table-cell {
    flex-direction: column;
    flex-basis: 50%;
  }
  .course_table-wrap .course_table .course_table-row .course_table-cell.location-cell, .course_table-wrap .course_table .course_table-row .course_table-cell.trainer-cell, .course_table-wrap .course_table .course_table-row .course_table-cell.price-cell {
    flex-basis: 33.33%;
  }
}
@media only screen and (max-width: 767px) {
  .course_table-wrap .course_table .course_table-row .course_table-cell {
    padding: 8px 10px;
  }
}
.course_table-wrap .course_table .course_table-row .course_table-cell .table-dataContent .textType1 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #222222;
  margin: 0;
}
.course_table-wrap .course_table .course_table-row .course_table-cell .table-dataContent .textType2 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: #555555;
  margin: 0;
}
.course_table-wrap .course_table .course_table-row .course_table-cell .table-dataContent .titleText {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #222222;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .course_table-wrap .course_table .course_table-row .course_table-cell .table-dataContent .titleText {
    font-size: 16px;
  }
}
.course_table-wrap .course_table .course_table-row .course_table-cell .table-dataContent .date-list-group {
  margin: 0;
  padding: 0;
  list-style: none;
}
.course_table-wrap .course_table .course_table-row .course_table-cell .table-dataContent .date-list-group li {
  position: relative;
  padding-left: 10px;
  padding-top: 8px;
}
.course_table-wrap .course_table .course_table-row .course_table-cell .table-dataContent .date-list-group li:first-child {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #222222;
  padding-top: 0;
  padding-bottom: 8px;
}
.course_table-wrap .course_table .course_table-row .course_table-cell .table-dataContent .date-list-group li:first-child:after {
  top: 6px;
}
.course_table-wrap .course_table .course_table-row .course_table-cell .table-dataContent .date-list-group li:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #bbb;
  position: absolute;
  left: 0;
  bottom: 6px;
  top: -6px;
}
.course_table-wrap .course_table .course_table-row .course_table-cell .table-dataContent .date-list-group li .single-dateText {
  padding-left: 10px;
}
.course_table-wrap .course_table .course_table-row .course_table-cell .table-dataContent .date-list-group li .single-dateText:after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #bbb;
  position: absolute;
  left: 0;
  bottom: auto;
  top: 17px;
}
.course_table-wrap .course_table .course_table-row .course_table-cell .course_table-cell-head {
  color: #222222;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  padding: 0 5px 0 0;
  margin-bottom: 5px;
}
.course_table-wrap .course_table .course_table-row .course_table-cell.flex-grow-point6 {
  flex-grow: 0.6;
}
.course_table-wrap .course_table .course_table-row .course_table-cell.flex-grow-point7 {
  flex-grow: 0.7;
}
.course_table-wrap .course_table .course_table-row .list-content {
  position: relative;
}

.date-list-group {
  margin: 0;
  padding: 0;
  list-style: none;
}
.date-list-group li {
  position: relative;
  padding-left: 10px;
  padding-top: 2px;
}
.date-list-group li:first-child {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #222222;
  padding-top: 0;
  padding-bottom: 8px;
}
.date-list-group li:first-child:after {
  top: 6px;
}
.date-list-group li:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #bbb;
  position: absolute;
  left: 0;
  bottom: 6px;
  top: -6px;
}
.date-list-group li .single-dateText {
  padding-left: 10px;
}
.date-list-group li .single-dateText:after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #bbb;
  position: absolute;
  left: 0;
  bottom: auto;
  top: 17px;
}

.inr-banner-sec .inr-banner .card.trainerInfo-card {
  width: 300px;
  border-radius: 0;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 1199px) {
  .inr-banner-sec .inr-banner .card.trainerInfo-card {
    width: 350px;
  }
}
@media only screen and (max-width: 991px) {
  .inr-banner-sec .inr-banner .card.trainerInfo-card {
    right: auto;
    bottom: auto;
  }
}

.trainerInfo-card-holder {
  height: 100%;
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .trainerInfo-card-holder {
    width: 100%;
  }
}

.trainerInfo-card {
  border-radius: 0;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  border: none;
}
.trainerInfo-card hr {
  background-color: #d8d8d8;
}
.trainerInfo-card .card-img-holder {
  width: 100%;
  position: relative;
  padding-top: 78%;
}
.trainerInfo-card .card-img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.trainerInfo-card .card-img-holder .socialLink-box {
  width: 30px;
  height: 30px;
  color: rgba(197, 197, 197, 0.5);
  z-index: 2;
  font-size: 32px;
  text-decoration: none;
  position: absolute;
  top: 10px;
  right: 10px;
  line-height: 1;
}
.trainerInfo-card .card-img-holder .socialLink-box:hover {
  color: #d9251d;
}
.trainerInfo-card .titleText {
  color: #000000;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (min-width: 576px) {
  .trainerInfo-card .titleText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .trainerInfo-card .titleText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .trainerInfo-card .titleText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .trainerInfo-card .titleText {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .trainerInfo-card .titleText {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .trainerInfo-card .titleText {
    font-size: 26px;
    line-height: 1.4;
  }
}
.trainerInfo-card .trainerInfo-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.trainerInfo-card .trainerInfo-list ul li {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #555555;
  position: relative;
  padding-left: 25px;
  margin-top: 10px;
}
.trainerInfo-card .trainerInfo-list ul li:after {
  content: "\e81a";
  font-family: "fontello";
  position: absolute;
  top: 6px;
  font-size: 18px;
  line-height: 1;
  color: #204f95;
  left: 0;
}
.trainerInfo-card .trainerInfo-list ul li:first-child {
  margin-top: 0;
}

.testimonial-sec.trainerDetail-testimonial-sec {
  padding-bottom: 350px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-sec.trainerDetail-testimonial-sec {
    padding-bottom: 300px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-sec.trainerDetail-testimonial-sec {
    padding-bottom: 280px;
  }
}

.trainerDetail-courseListing-sec .container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.trainerDetail-courseListing-sec .courseListing-card {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
@media only screen and (max-width: 1199px) {
  .trainerDetail-courseListing-sec .courseListing-card {
    margin-top: -220px;
  }
}
.trainerDetail-courseListing-sec .courseListing-card .courseListing-card-header {
  padding: 50px 60px 40px;
}
@media only screen and (max-width: 1199px) {
  .trainerDetail-courseListing-sec .courseListing-card .courseListing-card-header {
    padding: 30px 30px 40px;
  }
}
@media only screen and (max-width: 991px) {
  .trainerDetail-courseListing-sec .courseListing-card .courseListing-card-header {
    padding: 30px 20px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .trainerDetail-courseListing-sec .courseListing-card .courseListing-card-header {
    padding: 30px 20px 10px;
  }
}
.trainerDetail-courseListing-sec .courseListing-card .courseListing-card-body {
  padding: 0 20px 0;
}
@media only screen and (max-width: 1199px) {
  .trainerDetail-courseListing-sec .courseListing-card .courseListing-card-body {
    padding: 0 30px 0;
  }
}
@media only screen and (max-width: 991px) {
  .trainerDetail-courseListing-sec .courseListing-card .courseListing-card-body {
    padding: 0 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .trainerDetail-courseListing-sec .courseListing-card .courseListing-card-body {
    padding: 0 10px 0;
  }
}
.trainerDetail-courseListing-sec .courseListing-card .courseListing-card-body .course_table-wrap .course_table .course_table-row-holder {
  padding: 0;
}
.trainerDetail-courseListing-sec .courseListing-card .courseListing-card-body .course_table-wrap .course_table .course_table-row.course_table-row-head {
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .trainerDetail-courseListing-sec .courseListing-card .courseListing-card-body .course_table-wrap .course_table .course_table-row.course_table-row-head {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 991px) {
  .trainerDetail-courseListing-sec .courseListing-card .courseListing-card-body .course_table-wrap .course_table .course_table-row.course_table-row-head {
    padding: 0 10px;
  }
}
.trainerDetail-courseListing-sec .courseListing-card .courseListing-card-body .course_table-wrap .course_table .course_table-row .list-content {
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .trainerDetail-courseListing-sec .courseListing-card .courseListing-card-body .course_table-wrap .course_table .course_table-row .list-content {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 991px) {
  .trainerDetail-courseListing-sec .courseListing-card .courseListing-card-body .course_table-wrap .course_table .course_table-row .list-content {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .trainerDetail-courseListing-sec .courseListing-card .courseListing-card-body .course_table-wrap .course_table .course_table-row .list-content {
    padding: 0;
  }
}

.trainerNote-sec .trainerNote-content-wrap {
  padding: 40px 20px;
  background-image: url(../images/course/trainer-note-bgImg.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
}
.trainerNote-sec .trainerNote-content-wrap:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-color: rgba(32, 79, 149, 0.6);
}
.trainerNote-sec .trainerNote-content-wrap .trainerNote-content {
  position: relative;
  z-index: 2;
}
.trainerNote-sec .trainerNote-content-wrap .trainerNote-content .nameText {
  font-size: 18px;
  line-height: 1.3;
  font-family: "PT Serif", serif;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .trainerNote-sec .trainerNote-content-wrap .trainerNote-content .nameText {
    font-size: 18px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .trainerNote-sec .trainerNote-content-wrap .trainerNote-content .nameText {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .trainerNote-sec .trainerNote-content-wrap .trainerNote-content .nameText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .trainerNote-sec .trainerNote-content-wrap .trainerNote-content .nameText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .trainerNote-sec .trainerNote-content-wrap .trainerNote-content .nameText {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .trainerNote-sec .trainerNote-content-wrap .trainerNote-content .nameText {
    font-size: 26px;
    line-height: 1.4;
  }
}

.about001-counter-box-holder {
  padding-top: 70px;
}
@media only screen and (max-width: 991px) {
  .about001-counter-box-holder {
    padding-top: 50px;
  }
}
.about001-counter-box-holder .about001-counter-img-holder {
  width: 100%;
}
.about001-counter-box-holder .about001-counter-img-holder .img-holder {
  width: 100%;
  position: relative;
  padding-top: 47%;
}
.about001-counter-box-holder .about001-counter-img-holder .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.about001-counter-box-holder .counter-box {
  max-width: 100%;
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
  background-color: #204f95;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .about001-counter-box-holder .counter-box {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.about001-counter-box-holder .counter-box .container {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 2;
}
.about001-counter-box-holder .counter-box .counter-block {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
.about001-counter-box-holder .counter-box .counter-block .counterNumbText {
  font-family: "PT Serif", serif;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .about001-counter-box-holder .counter-box .counter-block .counterNumbText {
    font-size: 30px;
  }
}
.about001-counter-box-holder .counter-box .counter-block .counterInfoText {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}

.about002-sec .about002-img-holder .img-holder {
  width: 100%;
  position: relative;
  padding-top: 66%;
}
.about002-sec .about002-img-holder .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

@media only screen and (max-width: 991px) {
  .about003-sec .about003-img-holder {
    max-width: 460px;
  }
}

.about004-sec {
  padding-bottom: 60px;
  background-color: #f6f6f6;
  position: relative;
}
.about004-sec::after {
  content: "";
  background-color: #fff;
  height: 150px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}
.about004-sec .about004-img-holder {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .about004-sec .about004-img-holder {
    max-width: 460px;
  }
}
.about004-sec .about004-img-holder .img-holder {
  width: 100%;
  position: relative;
  padding-top: 105.5%;
}
.about004-sec .about004-img-holder .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media only screen and (min-width: 1300px) {
  .container {
    max-width: 1276px;
  }
  .container.md-container {
    max-width: 1150px;
  }
  .csm-trainer-sec .container.md-container, .trainerList-sec .container.md-container {
    max-width: 1276px;
  }
}
@media only screen and (min-width: 1800px) {
  .container {
    max-width: 1600px;
  }
  .container.md-container {
    max-width: 1436px;
  }
  .csm-trainer-sec .container.md-container, .trainerList-sec .container.md-container {
    max-width: 1600px;
  }
}
.homeCourseBoxHeight {
  min-height: 360px;
  max-height: 360px;
}
.homeCourseBoxHeight .contentHeight {
  min-height: 139px;
  max-height: 200px;
  overflow: hidden;
  position: absolute;
  top: 110px;
}

.h50 {
  min-height: 50px !important;
  max-height: 50px !important;
}

.course-img-holder {
  min-width: 95px;
  max-width: 95px;
  min-height: 95px;
  max-height: 95px;
}

.our-course-owl .owl-theme .owl-nav {
  position: absolute;
  top: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.our-course-owl .owl-carousel .owl-nav button.owl-prev {
  border: none !important;
  padding: 0 !important;
  font: inherit !important;
  margin: -24px !important;
  border-radius: 50% !important;
  font-weight: bolder !important;
  width: 40px !important;
  height: 40px !important;
  color: black !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.our-course-owl .owl-carousel .owl-nav button.owl-prev:hover {
  background: none;
  color: black;
}
.our-course-owl .owl-carousel .owl-nav button.owl-prev span {
  font-size: 60px;
  font-weight: 300;
}
.our-course-owl .owl-carousel .owl-nav button.owl-next {
  border: none !important;
  padding: 0 !important;
  font: inherit !important;
  margin: -24px !important;
  border-radius: 50% !important;
  font-weight: bolder !important;
  width: 40px !important;
  height: 40px !important;
  color: black !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.our-course-owl .owl-carousel .owl-nav button.owl-next:hover {
  background: none;
  color: black;
}
.our-course-owl .owl-carousel .owl-nav button.owl-next span {
  font-size: 60px;
  font-weight: 300;
}
.our-course-owl .owl-prev .span {
  font-size: 40px !important;
  padding-bottom: 4px !important;
}
.our-course-owl .owl-nav button.owl-next {
  color: inherit;
  border: none;
  border: 50%;
  padding: 0 !important;
  font: inherit;
  width: 40px;
  height: 40px;
}
.our-course-owl .owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
  margin: -30px !important;
  border-radius: 50% !important;
}
.our-course-owl .wrapper .owl-prev {
  left: 0;
}
.our-course-owl .wrapper .owl-next {
  right: 0;
}

.rating {
  right: 30px;
  top: 20px;
  font-size: 17px;
  display: flex;
  align-items: center;
}

.short-border::after {
  content: "";
  border-bottom: 3px solid #000;
  width: 50px;
  height: 3px;
  position: absolute;
}

.other-border::after {
  content: "";
  border-bottom: 3px solid #000;
  width: 50px;
  height: 3px;
  position: absolute;
}

.logo-box {
  width: 75px;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
  justify-content: center;
  display: flex;
  margin: auto;
}

.row {
  margin: 0 !important;
  padding: 0 !important;
}

.no-padding {
  margin: 0 !important;
  padding: 0 !important;
}

.single-course-image-holder {
  width: 170px;
  height: 170px;
  border-radius: 50%;
}

.course ul {
  list-style: none;
  padding: 0;
}
.course li {
  padding-left: 1.3em;
}
.course li:before {
  content: "\f02d"; /* FontAwesome Unicode */
  display: inline-block;
  margin-left: -1.3em; /* same as padding-left set on li */
  width: 1.3em; /* same as padding-left set on li */
}

.upcoming-training-trainer-img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.comnStyle-swiper-button .swiper-button-next:not(.swiper-button-disabled) {
  font-weight: bolder;
  font-size: 3rem;
}

.owl-one .owl-nav > div {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: visible;
}

.btn-trainer {
  border: none;
  outline: none;
  background: #d9251d;
  color: white;
  font-size: 16px;
  line-height: 1.3;
  padding: 6px 5px;
  margin-bottom: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 5px;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
  white-space: nowrap;
  font-family: "Libre Franklin", sans-serif;
  position: relative;
  min-width: 130px;
  margin-right: 20px;
}

.btn-blue {
  background: none;
  outline: none;
  border: 1px solid #0d6efd;
  color: #0d6efd;
  font-size: 14px;
  padding: 4px 6px;
  border-radius: 4px;
}

.noLR-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.trainer-img-outer {
  width: 110px;
  height: 110px;
}
.trainer-img-outer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px -1px 14px -1px rgba(0, 0, 0, 0.36);
}

.trainer-box {
  background: rgba(245, 242, 242, 0.73);
  border-radius: 35px;
  padding: 10px 0;
}

.trainer-title-logo {
  width: 60px;
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  min-height: 60px;
  max-height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}

.iframe body .mcWRN {
  overflow: hidden !important;
}

.logo-outer {
  width: 125px;
  height: 125px;
  min-width: 125px;
  max-width: 125px;
  min-height: 125px;
  max-height: 125px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 20px;
  margin-top: 20px;
}

.trustPilot-button {
  border: 1px solid green;
  background: white;
  width: 275px;
  height: 137px;
  padding: 5px 10px;
  border-radius: 10px;
  display: flex;
  justify-content: end;
  position: absolute;
  right: 0;
  bottom: 50px;
}

.trustPilot-button-left {
  border: 1px solid green;
  background: white;
  width: 321px;
  padding: 9px 10px 5px 10px;
  border-radius: 10px;
  display: flex;
  justify-content: end;
  position: relative;
  margin-top: 15px;
}

.whatIsCsmImageOuter {
  width: 370px;
  max-width: 370px;
  min-width: 370px;
  margin-top: -30px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.no-margin {
  margin: 0 !important;
}

.trainer-icon-box {
  width: 42px;
  height: 42px;
}

.advisor-img-outer {
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: -40px;
  border-radius: 20%;
  z-index: 2;
}
.advisor-img-outer .advisor-img-inner {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20%;
}

.advisor-content-box {
  width: 95%;
  height: 340px;
  margin: 30px 0;
  padding-top: 20px;
  border-radius: 15px;
  padding-right: 55px;
  padding-left: 55px;
}

.hide {
  display: none;
}

.DatesHover:hover + .hide {
  display: block;
  color: #000;
  font-weight: 400;
}

.btn-dates {
  background: none;
  outline: none;
  width: 100%;
  padding: 7px 12px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drpQueryBtn {
  background: #0d6efd;
  color: white;
  padding: 3px 6px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
}

.callBack-Bar ul {
  position: sticky;
  top: 30%;
  right: 0px;
  z-index: 3;
  padding: 0;
  margin: 0;
  width: 30px;
}
.callBack-Bar li {
  list-style: none;
  background: dodgerblue;
  color: white;
  font-weight: 600;
  padding: 0.2px 8px;
  z-index: 3;
  font-size: 16px;
}
.callBack-Bar .brCall {
  border-radius: 8px 8px 0 0;
}
.callBack-Bar .brCallb {
  border-radius: 0px 0px 10px 10px;
}

.sub-menu {
  padding-left: 0 !important;
}
.sub-menu ul {
  padding-left: 0 !important;
}

.form-control {
  display: block !important;
  width: 100% !important;
  padding: 0.375rem 30px 0.375rem 10px !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: #212529 !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.75rem center !important;
  background-size: 16px 15px !important;
  border: 1px solid #ced4da !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  border-radius: 0.25rem !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}

.upcomingTrainingPost-content {
  max-height: 593px;
  overflow-y: scroll;
}

.upcomingTrainingPost-blogss {
  max-height: 422px;
  overflow-y: scroll;
}

.lb {
  font-family: "Libre Franklin", sans-serif !important;
}

.form-control {
  padding: 0.375rem 30px 0.375rem 10px !important;
}

/**********Abha css work******************/
.wrapper {
  max-width: 680px;
  margin: 10px auto;
  padding: 0 20px;
}

.youtube {
  background-color: #000;
  margin-bottom: 2px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}

.youtube img {
  width: 100%;
  top: -16.82%;
  left: 0;
  opacity: 0.7;
}

.youtube .play-button {
  width: 80px;
  height: 60px;
  background-color: red;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 1;
  /*opacity: 0.8;*/
  border-radius: 6px;
}

.youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent #fff;
}

.youtube img,
.youtube .play-button {
  cursor: pointer;
}

.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
  position: absolute;
}

.youtube .play-button,
.youtube .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.youtube iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 540px) {
  .mobileFrame {
    height: 390px;
    width: 330px;
  }
}
.callBack-Bar li {
  list-style: none;
  background: #ef420b;
  color: black;
  font-weight: 600;
  padding: 0.2px 8px;
  z-index: 3;
  font-size: 16px;
}

.Alegreya {
  font-family: "Alegreya", serif !important;
}

.Mulish {
  font-family: "Mulish", sans-serif !important;
}

.Oxygen {
  font-family: "Oxygen", sans-serif !important;
}

.Roboto {
  font-family: "Roboto", sans-serif !important;
}

.Poppins {
  font-family: "Poppins", sans-serif !important;
}

.SourceSansPro {
  font-family: "Source Sans Pro", sans-serif !important;
}

.JosefinSans {
  font-family: "Josefin Sans", sans-serif !important;
}

.PTSerif {
  font-family: "PT Serif", serif !important;
}

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

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

.fw-300 {
  font-weight: 300 !important;
}

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

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

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

.fw-700 {
  font-weight: 700 !important;
}

.line-h-25 {
  line-height: 25px;
}

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

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

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

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

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

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

.text-grey {
  color: #555555 !important;
}

.tutorial-main-button {
  padding: 5px 3px;
  background: none;
  border: none;
  align-items: flex-start;
  width: 100%;
  padding: 0.8rem 0rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
.tutorial-main-button:hover, .tutorial-main-button:active, .tutorial-main-button:focus {
  color: #0293de;
  font-weight: 500;
}

.tutorial-main-buttontwo {
  padding: 2px 3px;
  background: none;
  border: none;
  align-items: flex-start;
  width: 100%;
  padding: 0 0rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
.tutorial-main-buttontwo:hover, .tutorial-main-buttontwo:active, .tutorial-main-buttontwo:focus {
  color: #0293de;
  font-weight: 500;
}

.scroll {
  height: 100%;
  max-height: 90vh;
  overflow: auto;
  position: sticky;
  top: 90px;
}
.scroll ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.scroll ul:before {
  content: "";
  display: inline-block;
  width: 2px;
  background: dodgerblue;
  position: absolute;
  left: 3px;
  top: 5px;
  height: calc(100% - 10px);
}
.scroll ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
}
.scroll ul li:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: dodgerblue;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 10px;
}

.scroll::-webkit-scrollbar {
  width: 3px;
  border-radius: 25px;
}

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

.scroll::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.tutorial-outer-holder {
  max-width: 300px;
  min-width: 300px;
  min-height: 300px;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.tutorial-outer-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.redHover:hover {
  color: #E52116 !important;
}

.whiteHover:hover {
  color: #fff !important;
}

.lightRed:hover {
  color: #d9251d !important;
}

.Rec-owl .owl-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 35%;
  z-index: 1 !important;
}
.Rec-owl .owl-nav button {
  background: none;
  outline: none;
  border: none;
  font-size: 60px;
}
.Rec-owl .owl-nav .owl-prev {
  margin-left: -20px;
}
.Rec-owl .owl-nav .owl-next {
  margin-right: -20px;
}
.Rec-owl .owl-nav .disabled {
  color: lightgray;
}

.Prog-owl .owl-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 25%;
}
.Prog-owl .owl-nav button {
  background: none;
  outline: none;
  border: none;
  font-size: 60px;
}
.Prog-owl .owl-nav .owl-prev {
  margin-left: -17px;
}
.Prog-owl .owl-nav .owl-next {
  margin-right: -17px;
}
.Prog-owl .owl-nav .disabled {
  color: lightgray;
}

.Train-owl .owl-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 25%;
  z-index: 2 !important;
}
.Train-owl .owl-nav button {
  background: none;
  outline: none;
  border: none;
  font-size: 60px;
}
.Train-owl .owl-nav .owl-prev {
  margin-left: -6px;
}
.Train-owl .owl-nav .owl-next {
  margin-right: -6px;
}
.Train-owl .owl-nav .disabled {
  color: lightgray;
}

.Review-owl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: -250px;
  z-index: 30 !important;
  position: relative;
}
.Review-owl button {
  background: none;
  outline: none;
  border: none;
  font-size: 60px;
}
.Review-owl .owl-prev {
  margin-left: -30px;
  color: lightgray;
}
.Review-owl .owl-next {
  margin-right: -30px;
  color: lightgray;
}
.Review-owl .disabled {
  color: grey;
}

.Review-owl-trainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: -140px;
  z-index: 30 !important;
  position: relative;
}
.Review-owl-trainer button {
  background: none;
  outline: none;
  border: none;
  font-size: 60px;
}
.Review-owl-trainer .owl-prev {
  margin-left: -30px;
  color: lightgray;
}
.Review-owl-trainer .owl-next {
  margin-right: -30px;
  color: lightgray;
}
.Review-owl-trainer .disabled {
  color: grey;
}

.sampleVideoC .owl-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: -240px;
  z-index: 3;
}
.sampleVideoC .owl-nav button {
  background: none;
  outline: none;
  border: none;
  font-size: 60px;
}
.sampleVideoC .owl-nav .owl-prev {
  margin-left: -6px;
  z-index: 3;
}
.sampleVideoC .owl-nav .owl-next {
  margin-right: -6px;
  z-index: 3;
}
.sampleVideoC .owl-nav .disabled {
  color: lightgray;
}

.sampleVideoCssOwl .owl-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: -240px;
  z-index: 3;
}
.sampleVideoCssOwl .owl-nav button {
  background: none;
  outline: none;
  border: none;
  font-size: 60px;
}
.sampleVideoCssOwl .owl-nav .owl-prev {
  margin-left: -24px;
}
.sampleVideoCssOwl .owl-nav .owl-next {
  margin-right: -24px;
}
.sampleVideoCssOwl .owl-nav .disabled {
  color: lightgray;
}

.our-adviser-owl .owl-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: -240px;
  z-index: 3;
}
.our-adviser-owl .owl-nav button {
  background: none;
  outline: none;
  border: none;
  font-size: 60px;
}
.our-adviser-owl .owl-nav .owl-prev {
  margin-left: -24px;
}
.our-adviser-owl .owl-nav .owl-next {
  margin-right: -24px;
}
.our-adviser-owl .owl-nav .disabled {
  color: lightgray;
}

.TestimonialSlider-top .owl-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: -250px;
  z-index: 3;
}
.TestimonialSlider-top .owl-nav button {
  background: none;
  outline: none;
  border: none;
  font-size: 60px;
}
.TestimonialSlider-top .owl-nav .owl-prev {
  margin-left: -20px;
}
.TestimonialSlider-top .owl-nav .owl-next {
  margin-right: -20px;
}
.TestimonialSlider-top .owl-nav .disabled {
  color: lightgray;
}

@media screen and (min-device-width: 200px) and (max-device-width: 768px) {
  .CsmMobile .csm003-content-block {
    display: flex;
  }
  .CsmMobile .icon-holder {
    min-width: 35px;
    max-width: 35px;
    min-height: 35px;
    max-height: 35px;
  }
  .CsmMobile .dsc-text {
    text-align: left;
    padding-left: 15px;
  }
}
@media screen and (min-device-width: 200px) and (max-device-width: 768px) {
  .csm002-top-content-block {
    margin: 0;
  }
  .csm002-top-content-block .content-holder {
    display: flex;
    max-width: none !important;
  }
  .csm002-top-content-block .dscText {
    text-align: left;
    padding-left: 15px;
  }
  .content-holder {
    margin-top: 20px;
  }
}
@media screen and (min-device-width: 200px) and (max-device-width: 768px) {
  .MobileHide {
    display: none !important;
  }
}
@media screen and (min-device-width: 500px) {
  .DesktopHide {
    display: none !important;
  }
}
@media screen and (min-device-width: 200px) and (max-device-width: 768px) {
  .logo-outer {
    min-width: 70px;
    max-width: 70px;
    min-height: 70px;
    max-height: 70px;
    margin: 10px 10px 0 0;
  }
}
@media screen and (min-device-width: 200px) and (max-device-width: 768px) {
  .scroll {
    height: 100%;
    max-height: 90vh;
    overflow: auto;
    position: static !important;
  }
  .scroll ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
  }
  .scroll ul:before {
    content: "";
    display: inline-block;
    width: 2px;
    background: dodgerblue;
    position: absolute;
    left: 3px;
    top: 5px;
    height: calc(100% - 10px);
  }
  .scroll ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 15px;
  }
  .scroll ul li:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: dodgerblue;
    position: absolute;
    left: 0;
    top: 5px;
    border-radius: 10px;
  }
  .csm002-bottom-content-wrap {
    padding: 7px 19px !important;
  }
  .csm002-bottom-sec {
    padding: 0 !important;
    height: 100%;
    margin-bottom: -280px !important;
  }
  .csm002-bottom-content-wrap-modified {
    padding: 7px 19px !important;
  }
  .PmpMobile .icon-holder {
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
  }
}
@media screen and (min-device-width: 200px) and (max-device-width: 768px) {
  .TwoColSectMarginRemove {
    margin-bottom: 20px !important;
  }
  .NoMarginBottom {
    margin-bottom: 0 !important;
  }
  .PaddingBottom20 {
    padding-bottom: 20px !important;
  }
  .PaddingBottom10 {
    padding-bottom: 10px !important;
  }
  .PaddingTop10 {
    padding-top: 10px !important;
  }
  .PaddingTop20 {
    padding-top: 20px !important;
  }
  .MarginTop20 {
    margin-top: 20px !important;
  }
  .MobileLeftNoMargin {
    margin-left: 0 !important;
  }
  .MobileBottomNoMargin {
    margin-bottom: 0 !important;
  }
}
@media screen and (min-device-width: 200px) and (max-device-width: 768px) {
  .MobileNoPadding {
    padding: 0 !important;
  }
  .MobileTopNoPadding {
    padding-top: 0 !important;
  }
  .MobileBottomNoPadding {
    padding-bottom: 0 !important;
  }
  .MobileLeftNoPadding {
    padding-left: 0 !important;
  }
}
@media screen and (min-device-width: 200px) and (max-device-width: 768px) {
  .MobileupcomingTraing {
    max-width: 390px;
    word-spacing: 15px;
    min-width: -moz-max-content;
    min-width: max-content;
    z-index: 1;
    left: 0;
    margin-top: 45px;
  }
  .Mobile20Heading {
    font-size: 20px !important;
  }
}
@media screen and (min-device-width: 200px) and (max-device-width: 768px) {
  .Mobile22px {
    font-size: 22px !important;
  }
  .Mobile23px {
    font-size: 23px !important;
  }
  .Mobile24px {
    font-size: 24px !important;
  }
  .Mobile25px {
    font-size: 25px !important;
  }
  .Mobile26px {
    font-size: 26px !important;
  }
  .Mobile27px {
    font-size: 27px !important;
  }
}
@media screen and (min-device-width: 200px) and (max-device-width: 768px) {
  .MobileViewDates {
    max-width: 390px;
    word-spacing: 15px;
    left: 0;
    margin-top: 40px;
  }
  .MobileTrainerImgHolder {
    width: 125px;
    height: 125px;
    border-radius: 50%;
  }
}
@media screen and (min-device-width: 200px) and (max-device-width: 768px) {
  .mobile-header-menu {
    padding-top: 20px;
  }
  .mobile-header-menu ul {
    padding-left: 10px;
  }
  .mobile-header-menu ul li {
    padding: 0;
  }
}
@media screen and (min-device-width: 200px) and (max-device-width: 768px) {
  #menu-item-45075 {
    display: none !important;
  }
  .menu {
    padding-left: 0 !important;
  }
  .ubermenu-autoclear {
    padding-left: 0 !important;
  }
  .ubermenu-content-block .ubermenu-widget-area .ubermenu-autoclear {
    display: none !important;
  }
}
.newCourseMenu .ubermenu-responsive-toggle {
  display: none !important;
}

.newCourseMenu a.ubermenu-target.ubermenu-item-layout-default.ubermenu-item-layout-text_only {
  background: transparent !important;
  color: black !important;
  padding: 0 !important;
  display: inline-block !important;
  padding-right: 45px !important;
  font-family: "Libre Franklin", sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: #222222 !important;
  line-height: 1.25 !important;
  text-decoration: none !important;
  width: 100% !important;
}

.newCourseMenu a.ubermenu-target.ubermenu-item-layout-default.ubermenu-item-layout-text_only:before {
  position: absolute !important;
  opacity: 0 !important;
}

.newCourseMenu .ubermenu .ubermenu-submenu.ubermenu-submenu-id-513 {
  min-height: auto;
  position: relative;
}

@media (max-width: 919px) {
  li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-46844 {
    position: absolute;
    top: 79px;
  }
}
.newCourseMenu {
  padding-top: 0px;
}

.newCourseMenu i.ubermenu-sub-indicator.fas.fa-angle-down {
  font-size: 0;
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #d9251d;
}

.newCourseMenu .ubermenu .ubermenu-nav .ubermenu-column-1-4 .ubermenu-target-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 3px;
  color: rgba(0, 0, 0, 0.65);
  display: block;
  padding: 6px 0px;
}

.newCourseMenu a.ubermenu-target.ubermenu-item-layout-default.ubermenu-item-layout-text_only {
  border: none !important;
}

.newCourseMenu ul.ubermenu-tabs-group.ubermenu-column.ubermenu-column-1-4.ubermenu-submenu.ubermenu-submenu-id-44993.ubermenu-submenu-type-auto.ubermenu-submenu-type-tabs-group {
  border: none !important;
}

.newCourseMenu li.ubermenu-item.ubermenu-tabs.ubermenu-item-44993.ubermenu-item-level-1.ubermenu-column.ubermenu-column-full.ubermenu-tab-layout-left.ubermenu-tabs-show-default.ubermenu-tabs-show-current {
  border: navajowhite !important;
  padding-bottom: 24px !important;
}

.newCourseMenu .ubermenu-tab {
  background: transparent !important;
}

.newCourseMenu .ubermenu-tab {
  background: transparent !important;
}

.newCourseMenu .ubermenu-tab > ul {
  border: none !important;
  padding: 0px 0px !important;
}

.newCourseMenu .ubermenu-tab > ul li {
  padding-left: 0 !important;
}

.newCourseMenu i.fas.fa-times {
  display: none !important;
}

.newCourseMenu i.ubermenu-sub-indicator.fas.fa-angle-down {
  display: block !important;
}

.newCourseMenu .ubermenu-active > a > i.ubermenu-sub-indicator.fas.fa-angle-down {
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .wraper-header-main .header-main .header-mobilemenu-trigger {
    position: absolute;
    right: auto;
    top: 7px;
    left: -18px;
  }
  .wraper-header-main .header-main .brand-logo {
    margin-right: 10px;
    width: 100%;
    text-align: right;
  }
}
h3.headingText.Mobile23px {
  font-family: "Libre Franklin" !important;
}

.csm004-sec:after {
  opacity: 0;
}

@media (min-width: 767px) {
  .row.d-flex.justify-content-between.pmp-overview > div {
    width: 50%;
  }
  .row.d-flex.justify-content-between.pmp-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    all: revert;
    width: 100%;
  }
  .single-course section.inr-banner-sec.csm-banner-sec.no-margin .row.d-flex.justify-content-between > div {
    width: 50%;
  }
  .single-course section.inr-banner-sec.csm-banner-sec.no-margin .row.d-flex.justify-content-between {
    display: grid;
    grid-template-columns: 1fr 1fr;
    all: revert;
    width: 100%;
  }
}
.single-course section.csm-faq-sec.comn-sec-py.MobileNoPadding {
  padding: 0px 0 60px !important;
  margin-top: -14px !important;
}

@media (min-width: 991px) {
  .wraper-header-main .header-main .main-nav > ul > li > a i {
    font-size: 100%;
    padding-right: 6px;
  }
}
.ubermenu > ul > li.ubermenu-item {
  border: solid 1px white !important;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
}
.ubermenu > ul > li > a.ubermenu-target {
  padding: 5px 12px !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: white;
  padding-right: 25px !important;
  background: #e00000;
}
.ubermenu > ul > li > a.ubermenu-target:before {
  content: "\e803";
  font-family: "fontello";
  color: #fff;
  margin-right: 5px;
  font-size: 16px;
  line-height: 21px;
  display: inline-block;
  vertical-align: middle;
}
.ubermenu > ul > li > a.ubermenu-target:hover {
  color: #204f95;
}
.ubermenu.ubermenu-disable-submenu-scroll .ubermenu-active > .ubermenu-submenu.ubermenu-submenu-type-mega {
  background-color: transparent !important;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li a {
  color: #434343;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 > li:hover {
  background-color: #f1f1f1;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 > li:hover .ubermenu-target-description,
.ubermenu .ubermenu-nav .ubermenu-column-1-4 > li:hover .ubermenu-target-text {
  color: #2d5a9e;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 > li:hover > a {
  color: #2d5a9e;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-current-menu-item {
  background-color: #f1f1f1;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-current-menu-item .ubermenu-target-description,
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-current-menu-item .ubermenu-target-text {
  color: #2d5a9e;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-current-menu-item > a {
  color: #2d5a9e;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-active {
  background-color: #f1f1f1;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-active .ubermenu-target-description,
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-active .ubermenu-target-text {
  color: #2d5a9e;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 li.ubermenu-active > a {
  color: #2d5a9e;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 .ubermenu-target-description {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: #767676;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-4 .ubermenu-target-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 3px;
  color: #333333;
  display: block;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 .gallery-columns-3 {
  display: flex;
  flex-wrap: wrap;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 .gallery-columns-3 .gallery-item {
  width: 20% !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  padding-right: 15px;
  pointer-events: none;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 .gallery-columns-3 .gallery-item img {
  border: none !important;
  display: block;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 > li > ul > li ul {
  list-style: none;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 > li > ul > li ul li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 400;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 > li > ul > li ul li:last-child {
  margin-bottom: 15px;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 > li > ul > li ul li a {
  color: #000000;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 > li > ul > li ul li a:hover {
  color: #d9251d;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 > li > ul > li ul li.current-menu-item a {
  color: #d9251d;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 > li > ul > li ul li.current-menu-item a:hover {
  color: #d9251d;
}
.ubermenu .ubermenu-nav .ubermenu-column-3-4 h3.ubermenu-widgettitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #333333;
  display: block;
  padding: 0 0;
  margin-bottom: 20px;
}
.ubermenu .ubermenu-target {
  color: #555555;
}
.ubermenu .ubermenu-target:hover {
  color: #d9251d;
}
.ubermenu .ubermenu-tab-layout-left > .ubermenu-tabs-group {
  border-color: #e5e5e5;
}
.ubermenu .ubermenu-nav .ubermenu-column-1-2:not(:last-child) {
  border-right: 1px solid #e5e5e5;
  height: 100%;
}

.ubermenu-nojs.ubermenu-transition-shift .ubermenu-item:hover > .ubermenu-submenu-drop,
.ubermenu-transition-shift .ubermenu-item.ubermenu-active > .ubermenu-submenu-drop {
  padding-top: 22px !important;
  box-shadow: none !important;
}
.ubermenu-nojs.ubermenu-transition-shift .ubermenu-item:hover > .ubermenu-submenu-drop > li.ubermenu-column-full,
.ubermenu-transition-shift .ubermenu-item.ubermenu-active > .ubermenu-submenu-drop > li.ubermenu-column-full {
  background: #fff;
  border: 1px solid #e5e5e5;
}

.ubermenu-bound {
  position: static;
}

.ubermenu-tabs-group {
  min-height: initial !important;
  max-height: 420px !important;
  overflow-x: hidden !important;
}

.ubermenu .ubermenu-tab-layout-left > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel {
  height: 100%;
}

.ubermenu-bound {
  position: static !important;
}

.ubermenu-tabs-group {
  min-height: initial !important;
  max-height: 420px !important;
  overflow-x: hidden !important;
}

div.asl_r.vertical {
  margin-top: -10px;
}

/* ====================== */
/* END OF MOBILE SIDR MENU */
/* ====================== */
/* ========================== */
/* START OF RESPONSIVE CSS */
/* ========================== */
/* EXTRA LARGE DESKTOP PART */
/* EXTRA LARGE DESKTOP PART */
/* LARGE DESKTOP PART */
/* DESKTOP PART */
/* TABLET LANDSCAPE PART */
@media only screen and (max-width: 991px) {
  .mobile-header-menu .menu li .clickD {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
  }
  .mobile-header-menu .menu li .clickD:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid #d9251d;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .mobile-header-menu .menu li .clickD.toggled {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
  }
  .mobile-header-menu .menu li .sub-menu.show {
    display: block;
    position: static;
    padding: 20px 18px;
    background: #f6f6f6;
  }
  .mobile-header-menu .menu li .sub-menu.show li {
    list-style: none;
    list-style-type: none;
  }
  .mobile-header-menu .menu li .sub-menu.show li a {
    padding: 0;
  }
  .mobile-header-menu .menu li .sub-menu.show li.current-menu-item > a {
    color: #ed5500;
  }
  .mobile-header-menu .menu li .sub-menu.show li ul li.current-menu-item a {
    color: #ed5500;
  }
  .ubermenu-responsive-default.ubermenu-responsive .ubermenu-tabs > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel {
    position: absolute;
  }
  .ubermenu .ubermenu-tab .ubermenu-tab-content-panel {
    position: absolute !important;
  }
  .ubermenu .ubermenu-nav .ubermenu-column-3-4 {
    width: 70% !important;
  }
  .ubermenu .ubermenu-nav .ubermenu-column-1-4 {
    width: 30% !important;
  }
  .ubermenu-nojs.ubermenu-transition-shift .ubermenu-item:hover > .ubermenu-submenu-drop, .ubermenu-transition-shift .ubermenu-item.ubermenu-active > .ubermenu-submenu-drop {
    padding-top: 17px !important;
  }
}
@media screen and (max-width: 959px) {
  .ubermenu .ubermenu-nav .ubermenu-column-3-4 {
    width: 100% !important;
  }
  .ubermenu .ubermenu-nav .ubermenu-column-1-4 {
    width: 100% !important;
  }
  .header-select-search-wrap > button.ubermenu-responsive-toggle {
    display: none !important;
  }
  .ubermenu > ul > li.ubermenu-item {
    width: 100% !important;
    white-space: nowrap;
  }
  .ubermenu > ul > li.ubermenu-item {
    width: 100% !important;
  }
  .header-select-search-wrap > nav.ubermenu {
    width: 120px !important;
  }
}
/* TABLET PROTRAIT PART */
@media screen and (max-width: 767px) {
  .ubermenu .ubermenu-tab .ubermenu-tab-content-panel {
    position: static !important;
  }
  .ubermenu-responsive-default.ubermenu-responsive .ubermenu-tabs > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel {
    position: static;
  }
  .wraper-header-main .header-main .header-search-box {
    width: 230px;
    margin-left: 10px;
  }
}
/* HIGH DEFINITION PHONE PART */
@media screen and (max-width: 575px) {
  .wraper-header-main .header-main .header-search-box #ajaxsearchlite1 .probox .proinput input[type=search] {
    width: 100%;
  }
  .wraper-header-main .header-main .header-search-box {
    width: calc(100% - 130px);
    margin-left: 10px;
  }
  .wraper-header-main .header-select-search-wrap {
    min-width: 100%;
    margin-right: 0;
  }
  .wraper-header-main .header-select-search-wrap {
    width: 100%;
  }
  .wraper-header-main .header-main > .d-flex {
    width: 100%;
  }
  .ubermenu-nojs.ubermenu-transition-shift .ubermenu-item:hover > .ubermenu-submenu-drop, .ubermenu-transition-shift .ubermenu-item.ubermenu-active > .ubermenu-submenu-drop {
    padding-top: 11px !important;
  }
}
/* SMART PHONE LANDSCAPE PART */
@media screen and (max-width: 479px) {
  .header-select-search-wrap > nav.ubermenu {
    width: 100px !important;
  }
  .wraper-header-main .header-main .header-search-box {
    width: calc(100% - 105px);
    margin-left: 5px;
  }
  .ubermenu > ul > li > a.ubermenu-target {
    padding: 5px 5px !important;
    padding-right: 10px !important;
  }
  .ubermenu > ul > li > a.ubermenu-target .ubermenu-sub-indicator-close {
    width: 14px !important;
    font-size: 12px !important;
  }
  .ubermenu-sub-indicators .ubermenu-has-submenu-drop > .ubermenu-target > .ubermenu-sub-indicator {
    right: 3px !important;
  }
}
/* SMART PHONE LANDSCAPE PART */
@media only screen and (max-width: 991px) {
  body .mobile-header-menu .menu li .sub-menu.show {
    background: transparent !important;
  }
  .mobile-header .mobile-header-top .mobile-header-menu > ul {
    padding-top: 33px;
  }
}
/* ========================== */
/* END OF RESPONSIVE CSS */
/* ========================== *//*# sourceMappingURL=style.css.map */