/*! Normalise CSS !*/
@import url(normalize.css);
/*!Root Css!*/
@import url(root.css);
/*! Google Fonts !*/
@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");
/*! Google Fonts !*/
* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
}

body {
  margin: 0rem;
  padding: 0rem;
  color: var(--Light-Grey, #888);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
  background: #fff;
  overflow-x: hidden;
}

p {
  padding: 0rem;
  margin: 0rem 0 0.75rem;
  color: var(--Light-Grey, #888);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
}
p:last-child {
  margin: 0;
}

h1 {
  margin: 0rem 0rem 1.5rem;
  padding: 0rem;
  color: var(--Grey, #4f4f4f);
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h2 {
  margin: 0rem 0rem 1.5rem;
  padding: 0rem;
  color: var(--Grey, #4f4f4f);
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h3 {
  margin: 0rem 0rem 1.5rem;
  padding: 0rem;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

h4 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

h5 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

h6 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  line-height: normal;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  margin: 0;
  padding: 0;
}

.btn {
  position: relative;
  display: inline-flex;
  padding: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
  color: var(--White, #fff);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  outline: none;
  border: 0.0625rem solid var(--Orange, #ec671b);
  border-radius: 20px;
  background: var(--Orange, #ec671b);
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 1;
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  background: #fff;
  color: var(--Orange, #ec671b);
  border: 1px solid var(--Orange, #ec671b);
}
.btn:hover {
  border: none;
  background: #fff;
  color: var(--Orange, #ec671b);
  border: 1px solid var(--Orange, #ec671b);
}
.btn.blackBorder {
  border: 1px solid var(--Light-Grey, #888);
  background: #fff;
  color: #000;
}
.btn.blackBorder span {
  margin-right: 0.625rem;
}
.btn.blackBorder:hover {
  border: 1px solid var(--Orange, #ec671b);
  color: #ec671b;
}

input:not([type=submit])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: rgba(46, 46, 46, 0.2);
  opacity: 1;
  font-size: 1rem;
}

input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
  color: rgba(46, 46, 46, 0.2);
  opacity: 1;
  font-size: 1rem;
}

input:not([type=submit]) {
  display: block;
  width: 100%;
  color: var(--Dark-Grey, #7a7a7a);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 1.032rem 1.5rem;
  height: auto;
  border: 1px solid #f8f8f8;
  border-radius: 8px;
  background: #f8f8f8;
  margin-bottom: 1rem;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
input:not([type=submit])::-moz-placeholder {
  color: var(--Dark-Grey, #7a7a7a);
}
input:not([type=submit])::placeholder {
  color: var(--Dark-Grey, #7a7a7a);
}
input:not([type=submit]):focus {
  box-shadow: none;
  border: 1px solid #f8f8f8;
  background: #f8f8f8;
}

textarea {
  height: 13rem;
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  color: var(--Dark-Grey, #7a7a7a);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 1.032rem 1.5rem;
  height: 133px;
  border: 1px solid #f8f8f8;
  border-radius: 8px;
  background: #f8f8f8;
  margin-bottom: 1rem;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
textarea::-moz-placeholder {
  color: var(--Dark-Grey, #7a7a7a);
}
textarea::placeholder {
  color: var(--Dark-Grey, #7a7a7a);
}

textarea:focus {
  outline: none;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  border-radius: 0rem;
  box-shadow: none;
  background-image: url(../images/down-arrow-select.svg);
  background-position: calc(100% - 0.9375rem);
  background-repeat: no-repeat;
  color: var(--Dark-Grey, #7a7a7a);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 1.032rem 1.5rem;
  height: auto;
  border: 1px solid #f8f8f8;
  border-radius: 8px;
  text-transform: none;
  cursor: pointer;
  background-color: #fff;
  background-size: 1.5rem;
  border: 0.0625rem solid #cccccc;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}

select:focus {
  border: 0.0625rem solid #cccccc;
  outline: none;
  background-color: #fff;
}

select option {
  color: #1d1d1d;
  font-size: 0.875rem;
  font-weight: 400;
}

label {
  color: var(--Dark-Grey, #7a7a7a);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0rem 0rem 0.69rem;
  padding: 0;
}

.checkbox {
  display: inline-block;
}
.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  color: var(--Dark-Grey, #7a7a7a);
  leading-trim: both;
  text-edge: cap;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 0.5rem;
  text-align: left;
}
.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 0.0625rem solid #ccc;
  padding: 0.6255rem;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 0.5rem;
  border-radius: 0.25rem;
  top: 0;
}
.checkbox label a {
  text-decoration: none;
  color: var(--accent-color-2, #ed7005);
}
.checkbox input:checked + label::before {
  background-color: #ec671b;
  border: 0.0625rem solid #ec671b;
}
.checkbox input:checked + label:after {
  position: absolute;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  left: 0.375rem;
  font-size: 0.8125rem;
  top: 0.3125rem;
  color: #fff;
}

section h1,
section h2 {
  margin: 0 0 1.5rem;
}
section h1 span,
section h2 span {
  color: var(--Orange, #ec671b);
}

header.header_main {
  position: sticky;
  left: 0;
  top: 0;
  padding: 0.719rem 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}
header.header_main .stellarnav {
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
  width: 100%;
}
header.header_main .stellarnav #mega-menu-wrap-primary {
  background: none !important;
}
header.header_main .stellarnav #mega-menu-wrap-primary ul#mega-menu-primary {
  text-align: center !important;
}
header.header_main .stellarnav #mega-menu-wrap-primary ul#mega-menu-primary li a {
  color: #4f4f4f !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  padding: 0 20px;
  background: none !important;
}
header.header_main .stellarnav #mega-menu-wrap-primary ul#mega-menu-primary li a > span.mega-indicator:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
header.header_main .stellarnav #mega-menu-wrap-primary ul#mega-menu-primary li a:hover {
  background: none !important;
}
header.header_main .stellarnav #mega-menu-wrap-primary ul#mega-menu-primary li > ul.mega-sub-menu {
  background: #fff !important;
  border-radius: 8px;
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.15);
}
header.header_main .stellarnav #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
  width: 50%;
}
header.header_main .stellarnav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  text-transform: unset;
  font-weight: 500;
}
header.header_main #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
header.header_main #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
header.header_main #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
  background: transparent;
  color: #ec671b !important;
}
header.header_main .hd_adjust {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header_main .hd_adjust .logo {
  max-width: 11.25rem;
  width: 100%;
  margin-right: 3rem;
}
header.header_main .hd_adjust .logo a {
  display: block;
}
header.header_main .hd_adjust .rig-hd {
  display: flex;
  gap: 3rem;
  margin-left: 3rem;
  align-items: center;
}
header.header_main .hd_adjust .rig-hd .search_gp .toggleSearch {
  display: none;
}
header.header_main .hd_adjust .rig-hd .search_gp .searchToggle {
  position: relative;
}
header.header_main .hd_adjust .rig-hd .search_gp .searchToggle input:not([type=submit]) {
  border-radius: 3.75rem;
  background: #f1f1f1;
  color: var(--Grey, #4f4f4f);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 0.5rem 5.0625rem 0.5rem 1.25rem;
  margin: 0;
  border: none;
  height: 43.5px;
}
header.header_main .hd_adjust .rig-hd .search_gp .searchToggle input:not([type=submit])::-moz-placeholder {
  color: var(--Grey, #4f4f4f);
}
header.header_main .hd_adjust .rig-hd .search_gp .searchToggle input:not([type=submit])::placeholder {
  color: var(--Grey, #4f4f4f);
}
header.header_main .hd_adjust .rig-hd .search_gp .searchToggle input[type=submit] {
  width: 3.8125rem;
  height: 43.5px;
  position: absolute;
  border-radius: 0px 3.75rem 3.75rem 0px;
  background: var(--Orange, #ec671b) url(../images/white_search_icon.svg) no-repeat;
  background-position: center;
  border: none;
  right: 0;
  top: 0;
}
header.header_main .hd_adjust .rig-hd .nav_list ul {
  display: flex;
  gap: 1.25rem;
}
header.header_main .hd_adjust .rig-hd .nav_list ul li a {
  display: flex;
  flex-direction: column;
  color: var(--Grey, #4f4f4f);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}

section.banner {
  position: relative;
  padding: 5rem 0 3.75rem;
  background: #fdf3ed;
  overflow: hidden;
  z-index: 1;
}
section.banner .container {
  position: relative;
}
section.banner .educate_bx {
  position: absolute;
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  width: 9.25rem;
  padding: 0.75rem 0.375rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.75rem;
  background: #fff;
  gap: 0.375rem;
  left: -50px;
  top: 5px;
  box-shadow: 0 0 21px 0px rgba(236, 103, 27, 0.4);
}
section.banner .educate_bx span {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1000px;
  background: var(--Orange, #ec671b);
}
section.banner .educate_bx span img {
  width: 24px;
  height: 24px;
}
section.banner .educate_bx .ed_dt h3 {
  color: #000;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1rem;
  margin: 0 0 0.5rem;
}
section.banner .educate_bx .ed_dt h6 {
  color: var(--Light-Grey, #888);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  margin: 0;
}
section.banner h1 {
  color: var(--Grey, #4f4f4f);
  text-align: center;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 3rem;
  z-index: 1;
}
section.banner .ban_item {
  padding: 29px 47px 20px 46px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.25);
}
section.banner .ban_item .ban_fm {
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 0.8125rem;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.banner .ban_item .ban_fm a {
  display: block;
  width: 100%;
  height: 100%;
}
section.banner .ban_item .ban_fm a img {
  width: 100%;
}
section.banner .ban_item:hover h6 a {
  color: #ec671b;
}
section.banner .ban_item:hover .ban_fm {
  transform: scale(1.05);
}
section.banner .ban_item h6 {
  color: var(--Grey, #4f4f4f);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
section.banner .ban_item h6 a {
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}

section.hm_sec1 {
  padding: 3.25rem 0 4.75rem;
  background: url(../images/bk_left.png) no-repeat, url(../images/bk_right.svg) no-repeat, #f9f9f9;
  background-position: left 50px, right 0;
  text-align: center;
}
section.hm_sec1 h2 {
  margin: 0 0 1.6875rem;
  line-height: 2rem;
}
section.hm_sec1 .gp_fm_ex {
  padding: 1.375rem 2.5rem;
  border-radius: 60px;
  border: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}
section.hm_sec1 .gp_fm_ex .d-flex {
  gap: 1.75rem;
  flex-wrap: wrap;
}
section.hm_sec1 .gp_fm_ex .d-flex .each_col {
  flex: 1 0 calc(25% - 1.5rem);
}
section.hm_sec1 .gp_fm_ex .d-flex .each_col.autoWth {
  flex: 1 0 calc(12.5% - 1.5rem);
}
section.hm_sec1 .gp_fm_ex .fm_gp {
  width: 100%;
}
section.hm_sec1 .gp_fm_ex .fm_gp input:not([type=submit]),
section.hm_sec1 .gp_fm_ex .fm_gp select {
  margin: 0;
  border-radius: 60px;
  border: 1px solid #e7e7e7;
}
section.hm_sec1 .gp_fm_ex .fm_gp.click_chk {
  position: relative;
}
section.hm_sec1 .gp_fm_ex .fm_gp.click_chk input[type=checkbox] {
  position: absolute;
  z-index: 1;
  opacity: 0;
  inset: 0;
}
section.hm_sec1 .gp_fm_ex .fm_gp.click_chk label {
  cursor: pointer;
  margin: 0;
  padding: 0;
  border-radius: 60px;
  border: 1px solid #e7e7e7;
  display: block;
  padding: 15px 10px;
  z-index: 1;
  position: relative;
  transition: all 0.3s ease-in-out;
}
section.hm_sec1 .gp_fm_ex .fm_gp.click_chk label.checked {
  background: var(--Orange, #ec671b);
  color: #fff;
}
section.hm_sec1 .gp_fm_ex .fm_gp .btn {
  width: 100%;
  border-radius: 50px;
}

section.hm_sec2 {
  padding: 8.75rem 0;
  text-align: center;
}
section.hm_sec2 h2 {
  line-height: 2rem;
  margin: 0 0 1.5rem;
}
section.hm_sec2 .box-outer {
  margin: 3rem 0;
}

section.hm_sec3 {
  padding: 3.6563rem 0;
  text-align: center;
}
section.hm_sec3 .box-outer {
  display: block;
}
section.hm_sec3 .arrowSwiper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  margin-top: 3rem;
}
section.hm_sec3 .arrowSwiper .swiper-button-next,
section.hm_sec3 .arrowSwiper .swiper-button-prev {
  display: flex;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: var(--White, #fff);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
  position: static;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
section.hm_sec3 .arrowSwiper .swiper-button-next::after,
section.hm_sec3 .arrowSwiper .swiper-button-prev::after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 23px;
  color: #1f1f1f;
  transition: all 0.3s ease-in-out;
}
section.hm_sec3 .arrowSwiper .swiper-button-next.swiper-button-disabled,
section.hm_sec3 .arrowSwiper .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
section.hm_sec3 .arrowSwiper .swiper-button-next:hover,
section.hm_sec3 .arrowSwiper .swiper-button-prev:hover {
  background: var(--Orange, #ec671b);
}
section.hm_sec3 .arrowSwiper .swiper-button-next:hover::after,
section.hm_sec3 .arrowSwiper .swiper-button-prev:hover::after {
  color: #fff;
}
section.hm_sec3 .arrowSwiper .swiper-button-next::after {
  font: var(--fa-font-solid);
  content: "\f061";
}
section.hm_sec3 .arrowSwiper .swiper-button-prev::after {
  font: var(--fa-font-solid);
  content: "\f060";
}

section.hm_sec4 {
  padding: 60px 0;
}
section.hm_sec4 .bk_fm {
  position: relative;
  border-radius: 0px 2.5rem 2.5rem 0px;
  background: #fdf3ed;
  padding: 1.6875rem 5rem 1.6875rem 0;
}
section.hm_sec4 .bk_fm::before {
  content: " ";
  position: absolute;
  width: 100vw;
  left: -100vw;
  background: #fdf3ed;
  height: 100%;
  top: 0;
}
section.hm_sec4 .bk_fm::after {
  content: " ";
  position: absolute;
  width: 266px;
  height: 115px;
  background: url(../images/curve_dash_icon.png) no-repeat;
  background-size: contain;
  right: -128px;
  top: -60px;
  bottom: 0;
  margin: auto;
}
section.hm_sec4 .gp_btn {
  margin-top: 3rem;
  gap: 1.875rem;
  display: flex;
}
section.hm_sec4 .gp_btn .btn {
  padding: 0.75rem 1.25rem;
}

section.hm_sec5 {
  position: relative;
  padding: 80px 0;
  background: url(../images/bk_right.svg) no-repeat, url(../images/bk_right_rev.png) no-repeat #fdf3ed;
  background-position: top left, bottom right;
}
section.hm_sec5 .test_details .heading_test {
  display: flex;
  gap: 46px;
  align-items: end;
  margin: 0 0 1.5rem;
}
section.hm_sec5 .test_details .heading_test .rate_stars i {
  color: #ccc;
  font-size: 36px;
}
section.hm_sec5 .test_details .heading_test .rate_stars i.checked {
  color: #ffb800;
}
section.hm_sec5 .test_details p {
  color: var(--Grey-2, #444);
}
section.hm_sec5 .test_details h5 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 3rem;
}
section.hm_sec5 .dots_slide {
  position: absolute;
  width: 2.125rem;
  height: 22.3125rem;
  margin: auto;
  inset: 0;
}
section.hm_sec5 .dots_slide .swiper-pagination {
  width: 100%;
  height: 100%;
  position: relative;
  inset: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
section.hm_sec5 .dots_slide .swiper-pagination::before {
  content: " ";
  position: absolute;
  width: 4px;
  height: 100%;
  background: rgba(236, 103, 27, 0.1);
  z-index: -1;
}
section.hm_sec5 .dots_slide .swiper-pagination .swiper-pagination-bullet {
  background: var(--White, #fff);
  border: 1px solid rgba(236, 103, 27, 0.2);
  width: 22px;
  height: 22px;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  outline: 0px solid #ffd7a9;
}
section.hm_sec5 .dots_slide .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--Orange, #ec671b);
  border: 4px solid #fff;
  outline: 8px solid #ffd7a9;
}

section.hm_sec6 {
  padding: 120px 0;
  text-align: center;
}
section.hm_sec6 .client_logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.hm_sec6 .client_logo a {
  display: block;
  width: 100%;
}

section.fill_form {
  padding: 5rem 0;
}
section.fill_form h2 {
  line-height: 2rem;
  margin: 0 0 1.5rem;
}
section.fill_form h2 + p {
  margin: 0 0 3rem;
}
section.fill_form p {
  line-height: 1.875rem;
}
section.fill_form .register_fm {
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
}
section.fill_form .register_fm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.fill_form .fm_gp {
  position: relative;
  margin: 0 0 1.5rem;
}
section.fill_form .fm_gp input:not([type=submit]) {
  margin: 0;
}
section.fill_form .fm_gp.passwordToggle .toggle-password {
  position: absolute;
  right: 1.25rem;
  top: 22px;
  bottom: 0;
  margin: 0;
  height: 1.25rem;
}
section.fill_form .fm_gp.submitBtn {
  margin: 2.5rem 0;
}
section.fill_form .fm_gp.submitBtn .btn {
  width: 100%;
}
section.fill_form .fm_gp .label_txt {
  display: inline-block;
  color: var(--Dark-Grey, #7a7a7a);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 0.75rem;
}
section.fill_form .fm_gp .adjust_chk_pss {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 1.5rem;
}
section.fill_form .fm_gp .adjust_chk_pss a.password_link {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
section.fill_form .fm_gp .adjust_chk_pss a.password_link:hover {
  color: #ec671b;
}
section.fill_form .fm_gp.otp-inputs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.875rem;
}
section.fill_form .fm_gp.otp-inputs .otp-input {
  text-align: center;
  line-height: 45px;
  padding: 0;
  height: 80px;
}
section.fill_form .click_login {
  text-align: center;
}
section.fill_form .click_login p a {
  text-decoration: none;
  color: var(--Orange, #ec671b);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
section.fill_form .click_login p a:hover {
  color: #000;
}
section.fill_form .click_login p span {
  color: var(--Orange, #ec671b);
  font-weight: 600;
}
section.fill_form.setPassPg .fm_gp {
  margin: 0 0 3rem;
}

footer.ftmain .subscribe_bx {
  border-radius: 40px;
  background: #fdf3ed;
  padding: 2.1875rem 7.125rem;
  text-align: center;
  margin: 0 0 3rem;
}
footer.ftmain .subscribe_bx h2 {
  margin: 0 0 0.625rem;
}
footer.ftmain .subscribe_bx p {
  color: var(--Light-Grey, #888);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  /* 150% */
  letter-spacing: 0.02rem;
  margin: 0 0 1.75rem;
}
footer.ftmain .subscribe_bx .eamil_sub {
  max-width: 30.5625rem;
  margin: auto;
  position: relative;
}
footer.ftmain .subscribe_bx .eamil_sub input:not([type=submit]) {
  border-radius: 2.5rem;
  background: var(--White, #fff);
  color: var(--Color, #616161);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  padding: 0.75rem 8.75rem 0.75rem 2.5rem;
}
footer.ftmain .subscribe_bx .eamil_sub input:not([type=submit])::-moz-placeholder {
  color: var(--Color, #616161);
}
footer.ftmain .subscribe_bx .eamil_sub input:not([type=submit])::placeholder {
  color: var(--Color, #616161);
}
footer.ftmain .subscribe_bx .eamil_sub input[type=submit] {
  padding: 0.6563rem 2.075rem;
  position: absolute;
  right: 0;
  top: 0;
}
footer.ftmain .ft_top .ft_item {
  margin: 0 0 1.5rem;
}
footer.ftmain .ft_top .ft_item.logo_para p {
  color: #52525b;
}
footer.ftmain .ft_top .ft_item .ft_logo {
  max-width: 237.497px;
  width: 100%;
  margin: 0 0 1rem;
}
footer.ftmain .ft_top .ft_item .ft_logo a {
  display: block;
}
footer.ftmain .ft_top .ft_item .social_link {
  margin-top: 6.75rem;
}
footer.ftmain .ft_top .ft_item .social_link ul {
  display: flex;
  gap: 0.9375rem;
}
footer.ftmain .ft_top .ft_item .social_link ul li {
  margin: 0;
}
footer.ftmain .ft_top .ft_item .social_link ul li a {
  display: flex;
  width: 28px;
  height: 28px;
  border: 1px solid #ec671b;
  justify-content: center;
  align-items: center;
  border-radius: 3.125rem;
  font-size: 14px;
  color: #ec671b;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer.ftmain .ft_top .ft_item .social_link ul li a:hover {
  background: #ec671b;
  color: #fff;
}
footer.ftmain .ft_top .ft_item h4 {
  color: var(--Black, #010101);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.125rem;
  /* 112.5% */
  letter-spacing: 0.0625rem;
  margin: 0 0 1.5rem;
}
footer.ftmain .ft_top .ft_item ul li a {
  color: #000;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.375rem;
  /* 137.5% */
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer.ftmain .ft_top .ft_item ul li a:hover {
  color: #ec671b;
}
footer.ftmain .ft_top .ft_item ul li + li {
  margin-top: 1rem;
}
footer.ftmain .ft_top .ft_item.contact ul li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.625rem;
}
footer.ftmain .ft_top .ft_item.contact ul li span {
  margin-top: -2px;
}
footer.ftmain .ft_top .ft_item.contact ul li p {
  color: var(--Black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer.ftmain .ft_copyright {
  border-top: 1px solid #e2e8f0;
  padding: 1.1875rem 0 1.4375rem;
}
footer.ftmain .ft_copyright p {
  color: var(--Dark-Grey, #7a7a7a);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.375rem;
  /* 157.143% */
}

.box-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.box-outer.books .booksbg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.box-outer.books .bxbtm {
  background-color: #fff;
  padding: 20px;
  text-align: left;
  width: 100%;
}
.box-outer.books .bxbtm .rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.box-outer.books .bxbtm .rating .ratingimg {
  margin-bottom: 0;
}
.box-outer.books .bxbtm .rating p {
  margin-bottom: 0;
}
.box-outer.books .bxbtm .bookname {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.box-outer.books .bxbtm .bookname img {
  width: 31px;
}
.box-outer.books .bxbtm .bookname h3 {
  width: calc(100% - 31px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
.box-outer.books .bxbtm .bookname h3 a img {
  width: 20px;
}
.box-outer .bx {
  width: 306px;
  padding: 48px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  background: #f9f9f9;
  gap: 33px;
  position: relative;
  text-align: center;
}
.box-outer .bx:hover {
  background-color: #fdf3ed;
}
.box-outer .bx h3 {
  margin-bottom: 10px;
}
.box-outer .bx .line-abs {
  position: absolute;
  width: 117px;
  bottom: 0;
  right: 0;
}
.box-outer .bx .abs {
  position: absolute;
  inset: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.innerbanner {
  position: relative;
}
.innerbanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}
.innerbanner img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.innerbanner .container {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.innerbanner .container h1 {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 12px;
}
.innerbanner .container p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 24px;
}
.innerbanner .container ul {
  display: flex;
  align-items: center;
}
.innerbanner .container ul li {
  position: relative;
}
.innerbanner .container ul li::after {
  content: url(../images/innerbanner-arrow.svg);
  display: inline-block;
  margin: 0px 8px 0 6px;
  position: relative;
  top: 3px;
}
.innerbanner .container ul li:last-child:after {
  display: none;
}
.innerbanner .container ul li a:hover {
  color: #ff783e;
}
.innerbanner .container ul li a,
.innerbanner .container ul li span {
  color: white;
}
.innerbanner .container button.btn {
  margin: 25px 0 0;
}

.havoexam {
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
}
.havoexam:before {
  content: url(../images/havooexam-sideimg.svg);
  width: 100px;
  position: absolute;
  top: 53%;
  right: 0;
}
.havoexam h2 {
  text-align: center;
  margin-bottom: 14px;
}
.havoexam h2 + p {
  text-align: center;
  margin-bottom: 55px;
}
.havoexam .tab-block .tabmenu-outer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.havoexam .tab-block .tab-mnu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  border-bottom: 1px solid #a9a9a9;
  margin-bottom: 48px;
}
.havoexam .tab-block .tab-mnu:after {
  content: "";
  display: table;
  clear: both;
}
.havoexam .tab-block .tab-mnu li {
  color: #a9a9a9;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  border-bottom: 4px solid var(--Orange, rgba(236, 104, 27, 0));
  margin: 0 23px;
  padding-bottom: 5px;
}
.havoexam .tab-block .tab-mnu li:first-child {
  margin-left: 0;
}
.havoexam .tab-block .tab-mnu li:last-child {
  margin-right: 0;
}
.havoexam .tab-block .tab-mnu li a {
  color: #111;
}
.havoexam .tab-block .tab-mnu .active {
  background-color: #fff;
  color: #000;
  border-bottom: 4px solid var(--Orange, #ec671b);
  cursor: default;
}
.havoexam .tab-block .tab-cont {
  box-sizing: border-box;
  border-top: 1px solid white;
  background-color: white;
  color: #292d2f;
}
.box-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.box-outer.books .booksbg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.box-outer.books .bx {
  width: 416px;
  background: #f0f0f0;
  gap: 0;
  padding: 0;
}
.box-outer.books .bx .bxtop {
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-outer.books .bx .icon {
  position: relative;
  box-shadow: 0 0 40px 0px rgba(0, 0, 0, 0.3);
}
.box-outer.books .bxbtm {
  background-color: #fff;
  padding: 20px;
  text-align: left;
}
.box-outer.books .bxbtm .rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.box-outer.books .bxbtm .rating .ratingimg {
  margin-bottom: 0;
}
.box-outer.books .bxbtm .rating p {
  margin-bottom: 0;
}
.box-outer.books .bxbtm .bookname {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.box-outer.books .bxbtm .bookname img {
  width: 31px;
}
.box-outer.books .bxbtm .bookname h3 {
  width: calc(100% - 31px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
.box-outer.books .bxbtm .bookname h3 a img {
  width: 20px;
}

.bx {
  width: 306px;
  padding: 48px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  background: #f9f9f9;
  gap: 33px;
  position: relative;
  text-align: center;
}
.bx:hover {
  background-color: #fdf3ed;
}
.bx h3 {
  margin-bottom: 10px;
}
.bx .line-abs {
  position: absolute;
  width: 117px;
  bottom: 0;
  right: 0;
}
.bx .abs {
  position: absolute;
  inset: 0;
}

.havoexam-2 {
  padding: 60px 0;
}
.havoexam-2 h2 {
  margin-bottom: 14px;
}
.havoexam-2 h2 + p {
  margin-bottom: 60px;
}
.havoexam-2 .col-md-6:first-child .hvexmcol {
  border: 1px solid rgba(236, 103, 27, 0.2);
  background: #fdf3ed;
}
.havoexam-2 .hvexmcol {
  padding: 25px 40px;
  border-radius: 10px;
  border: 1px solid rgba(236, 103, 27, 0.2);
  background: #fff;
}
.havoexam-2 .hvexmcol .hvlang:first-child {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #e9e9e9;
}
.havoexam-2 .hvexmcol .hvlang h6 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.32px;
  margin-bottom: 24px;
}
.havoexam-2 .hvexmcol .hvlang ul {
  display: flex;
  gap: 10px 25px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.havoexam-2 .hvexmcol .hvlang ul li {
  color: #8a8a8a;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
  position: relative;
  padding-left: 10px;
}
.havoexam-2 .hvexmcol .hvlang ul li:before {
  content: "";
  border-radius: 10px;
  width: 6px;
  height: 6px;
  background-color: #ec671b;
  position: absolute;
  top: 10px;
  left: 0;
}

.cta {
  background: linear-gradient(270deg, #c53f3c 0%, #5f1e1d 100%);
  padding: 80px 0;
  margin: 60px 0;
  overflow: hidden;
}
.cta .container {
  position: relative;
}
.cta .container .book {
  width: 324px;
  position: absolute;
  left: 145px;
  bottom: -80px;
}
.cta .container:before {
  content: "";
  width: 655px;
  height: 384px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #d74f41;
  position: absolute;
  left: 0;
  bottom: -340px;
}
.cta .w869 {
  width: 876px;
  position: relative;
}
.cta .w869 .absimg {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
}
.cta h3 {
  align-self: stretch;
  -webkit-text-stroke: 2px white;
  text-stroke: 2px white;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 18px;
  color: transparent;
}
.cta p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
  margin-bottom: 40px;
}
.cta .btn {
  background-color: white;
  color: var(--Dark, #1f1f1f);
}

.final-exam {
  padding: 60px 0;
}
.final-exam p {
  margin-bottom: 20px;
}
.final-exam p span {
  color: #ec671b;
}

.final-exam-2 {
  margin: 50px 0;
  padding: 60px 0;
  background: #fdf3ed;
}
.final-exam-2 .fe-rgt p {
  color: var(--Grey, #4f4f4f);
  leading-trim: both;
  text-edge: cap;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 24px;
}
.final-exam-2 ul li {
  color: var(--Light-Grey, #888);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
}
.final-exam-2 ul li img {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.final-exam-2 ul li:last-child {
  margin-bottom: 0;
}
.final-exam-2 ul li span {
  color: #ec671b;
}

.figures {
  padding: 60px 0;
  margin-bottom: 60px;
}
.figures ul {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
  margin-top: 20px;
}
.figures ul li {
  position: relative;
  padding-left: 34px;
}
.figures ul li img {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

section.s_gd_sec1 {
  padding: 3.75rem 0;
  background: url(../images/sub_bg1.png) no-repeat, url(../images/sub_bg1.png) no-repeat, #fdf3ed;
  background-position: left top, right top;
}
section.s_gd_sec1 .sub_item_bx {
  text-align: center;
}
section.s_gd_sec1 .sub_item_bx .sub_circle {
  display: flex;
  width: 5.625rem;
  height: 5.625rem;
  padding: 1.5625rem;
  align-items: center;
  border-radius: 45px;
  border: 4px solid #ffdfcc;
  background: #fee4d3;
  margin: 0 auto 1.5rem;
}
section.s_gd_sec1 .sub_item_bx h3 {
  color: #000;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.4px;
  margin: 0 0 0.75rem;
}
section.s_gd_sec1 .sub_item_bx h3 a {
  color: inherit;
}

section.s_gd_sec2 {
  padding: 5rem 0;
}
section.s_gd_sec2 .heading_adj {
  display: flex;
  justify-content: space-between;
  margin: 0 0 1.75rem;
}
section.s_gd_sec2 .heading_adj .right_bar form {
  display: flex;
  gap: 0.8125rem;
}
section.s_gd_sec2 .heading_adj .right_bar form .searcBar {
  position: relative;
  width: 100%;
  max-width: 180px;
}
section.s_gd_sec2 .heading_adj .right_bar form .searcBar input[type=search] {
  border-radius: 60px;
  background: #f6f6f6;
  color: var(--Grey, #4f4f4f);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 0;
  padding: 11px 70px 11px 15px;
}
section.s_gd_sec2 .heading_adj .right_bar form .searcBar input[type=submit] {
  display: flex;
  width: 61px;
  height: 48px;
  padding: 3px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 0px 60px 60px 0px;
  background: url(../images/white_search_icon.svg) no-repeat, var(--Orange, #ec671b);
  border: none;
  background-position: center;
  position: absolute;
  right: 0;
  top: 0;
}
section.s_gd_sec2 .heading_adj .right_bar form .selectFm select {
  color: var(--Grey, #4f4f4f);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  border: none;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  border-radius: 20px;
  background: url(../images/down-arrow-select.svg) no-repeat, var(--Light-Gray, #f7f7f7);
  background-position: center right 15px;
  border-radius: 50px;
  padding: 12px 45px 12px 15px;
  margin: 0;
}
section.s_gd_sec2 .train_details {
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: #f9f9f9;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  margin: 0 0 1.875rem;
}
section.s_gd_sec2 .train_details .train_fm {
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 1.5rem;
}
section.s_gd_sec2 .train_details .train_fm a {
  display: block;
  width: 100%;
  height: 100%;
}
section.s_gd_sec2 .train_details .train_fm a img {
  width: 100%;
}
section.s_gd_sec2 .train_details .trainDt h5 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  margin: 0 0 1.25rem;
}
section.s_gd_sec2 .train_details .trainDt h5 a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
section.s_gd_sec2 .train_details .trainDt p a {
  color: var(--Orange, #ec671b);
  font-style: italic;
  text-decoration: underline;
}
section.s_gd_sec2 .train_details .trainDt ul.trainList {
  border-top: 1px solid #ebebeb;
  padding-top: 1.25rem;
  margin: 0 0 1.5rem;
  display: flex;
  gap: 1.5rem;
}
section.s_gd_sec2 .train_details .trainDt ul.trainList li {
  position: relative;
  display: flex;
  gap: 0.75rem;
}
section.s_gd_sec2 .train_details .trainDt ul.trainList li + li::before {
  position: absolute;
  content: " ";
  width: 1px;
  height: 20px;
  background: #dbdbdb;
  left: -12px;
  top: 2px;
}
section.s_gd_sec2 .train_details .trainDt .btn {
  padding: 12px 20px;
}

section.s_gdt_sec1 {
  padding: 80px 0;
}
section.s_gdt_sec1 h2 {
  text-align: center;
  margin: 0 0 3rem;
}
section.s_gdt_sec1 .traing_dt {
  margin: 0 0 1.875rem;
}
section.s_gdt_sec1 .traing_dt h3 {
  line-height: 1.25rem;
  margin: 0 0 1.2rem;
  display: flex;
  gap: 0.5rem;
  font-weight: 600;
  text-transform: capitalize;
}
section.s_gdt_sec1 .traing_dt h3::before {
  content: " ";
  position: relative;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  background: var(--Orange, #ec671b);
  border-radius: 3.125rem;
  top: 5px;
}
section.s_gdt_sec1 .traing_dt p {
  padding-left: 1.25rem;
}

section.final-exam-2.s_gdt_sec2 {
  margin: 0;
  background: transparent;
}
section.final-exam-2.s_gdt_sec2 h2 {
  line-height: 1.875rem;
  margin: 0 0 1.5rem;
}
section.final-exam-2.s_gdt_sec2 p {
  margin: 0 0 1.5rem;
}
section.final-exam-2.s_gdt_sec2 ul {
  display: grid;
  grid-template-columns: 50% 50%;
  max-width: 900px;
}
section.final-exam-2.s_gdt_sec2 ul li {
  width: 100%;
}
section.final-exam-2.s_gdt_sec2 .tab {
  display: none;
}
section.final-exam-2.s_gdt_sec2 .tab-active {
  display: block;
}
section.final-exam-2.s_gdt_sec2 .tab-container ul {
  display: flex;
  max-width: 100%;
  margin: 0 0 32px;
  background: #fff;
  border-radius: 100px;
}
section.final-exam-2.s_gdt_sec2 .tab-container ul li {
  margin: 0;
  padding: 0;
  width: auto;
  margin-right: 30px;
}
section.final-exam-2.s_gdt_sec2 .tab-container ul li a.tab-a {
  color: #000;
  font-size: 18px;
  padding: 15px 35px;
  display: table;
  border-radius: 100px;
  background: #fbe0d0;
}
section.final-exam-2.s_gdt_sec2 .tab-container ul li a.tab-a.active-a {
  background: #ec671b;
  color: #fff;
  font-weight: 600;
}
section.final-exam-2.s_gdt_sec2 .tab-container ul li a.tab-a.active-a span {
  color: #fff;
}

section.s_gdt_sec4 {
  padding: 3.75rem 0;
  background: #fdf3ed;
}
section.s_gdt_sec4 h2 {
  line-height: 2rem;
  margin: 0 0 3rem;
}
section.s_gdt_sec4 .c_bx_hv {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 20px 15px 20px 20px;
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  margin: 0 0 1.875rem;
  overflow: hidden;
  align-items: center;
}
section.s_gdt_sec4 .c_bx_hv .c_bx_hv_fm {
  width: 100%;
  height: 100px;
  overflow: hidden;
  border-radius: 12px;
}
section.s_gdt_sec4 .c_bx_hv .c_bx_hv_fm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.s_gdt_sec4 .c_bx_hv .c_bx_hx_dt {
  position: relative;
  width: 100%;
  padding-right: 3.4375rem;
  text-align: left;
}
section.s_gdt_sec4 .c_bx_hv .c_bx_hx_dt h5,
section.s_gdt_sec4 .c_bx_hv .c_bx_hx_dt p {
  max-width: 21.125rem;
}
section.s_gdt_sec4 .c_bx_hv .c_bx_hx_dt h5 {
  line-height: 1rem;
  color: #000;
  margin: 0 0 0.625rem;
}
section.s_gdt_sec4 .c_bx_hv .c_bx_hx_dt h5 a {
  color: inherit;
}
section.s_gdt_sec4 .c_bx_hv .c_bx_hx_dt p {
  line-height: 1.25rem;
}
section.s_gdt_sec4 .c_bx_hv .c_bx_hx_dt a {
  color: var(--Orange, #ec671b);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
}
section.s_gdt_sec4 .c_bx_hv .c_bx_hx_dt .click_circle {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
}

section.hm_sec5.s_gdt_sec5 {
  background: url(../images/sub_bg1.png) no-repeat left 60px, url(../images/bk_right_rev.png) no-repeat right bottom;
}

.faq_box .faq_item {
  text-align: left;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
}
.faq_box .faq_item:last-child {
  margin: 0;
}
.faq_box .faq_item + .faq_item {
  margin-top: 1.5rem;
}
.faq_box .faq_item .faq_hd {
  padding: 1.25rem 3.75rem 1.25rem 1.25rem;
  cursor: pointer;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0px;
}
.faq_box .faq_item .faq_hd::before {
  font: var(--fa-font-solid);
  content: "\f107";
  position: absolute;
  display: flex;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  right: 1.625rem;
  bottom: 0px;
  top: 0px;
  margin: auto;
  z-index: 1;
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  color: #000;
  transition: all 0.3s ease-in-out;
}
.faq_box .faq_item .faq_hd.closed::before {
  transform: rotate(180deg);
}
.faq_box .faq_item .faq_hd h5 {
  position: relative;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.faq_box .faq_item .faq_cont {
  display: none;
  background: #fdf3ed;
  padding: 1.8125rem 1.25rem;
}
.faq_box .faq_item .faq_cont p {
  color: var(--Light-Grey, #888);
}
.faq_box .faq_item .faq_cont p span {
  color: var(--Orange, #ec671b);
}

section.s_gdt_sec6 {
  padding: 5rem 0;
  text-align: center;
}
section.s_gdt_sec6 h2 {
  text-align: center;
}
section.s_gdt_sec6 .faq_box {
  margin: 0 0 1.875rem;
}
section.s_gdt_sec6 .btn {
  padding: 0.75rem 1.25rem;
}
section.s_gdt_sec6 .container {
  position: relative;
}
section.s_gdt_sec6 .container select {
  width: 19.125rem;
  height: 3rem;
  padding: 0rem 1.25rem;
  border-radius: 1.875rem;
  border: 1px solid #efefef;
  background: #fff;
  color: #000;
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem;
  /* 142.857% */
  background-image: url(../images/select-arow.svg);
  background-repeat: no-repeat;
  background-position: right 0.69rem center;
  position: absolute;
  top: 0;
  right: 0.75rem;
}

section.hm_sec1.s_gdt_sec7 {
  background: none;
  padding-top: 0;
}

section.cnt_sec1 {
  padding: 140px 0;
}
section.cnt_sec1 h2 {
  line-height: 1.4375rem;
}
section.cnt_sec1 h2 + p {
  margin: 0 0 3rem;
}
section.cnt_sec1 input:not([type=submit]) {
  margin-bottom: 1.5rem;
}
section.cnt_sec1 textarea {
  margin: 0 0 2.1875rem;
}
section.cnt_sec1 input[type=submit] {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 3.125rem;
}
section.cnt_sec1 .cnt_listing {
  background: #fdf3ed;
  padding: 1.875rem;
  height: 100%;
}
section.cnt_sec1 .cnt_listing h2 {
  line-height: 2rem;
  margin: 0 0 3.875rem;
}
section.cnt_sec1 .cnt_listing ul {
  display: flex;
  gap: 3rem;
  flex-direction: column;
}
section.cnt_sec1 .cnt_listing ul li {
  display: grid;
  grid-template-columns: 1.875rem 1fr;
  gap: 1.25rem;
}
section.cnt_sec1 .cnt_listing ul li span.icon_bx {
  width: 30px;
  height: 30px;
  background: var(--Orange, #ec671b);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.cnt_sec1 .cnt_listing ul li .cn_bx_dt h5 {
  color: var(--Grey, #4f4f4f);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  padding: 0;
}
section.cnt_sec1 .cnt_listing ul li .cn_bx_dt p {
  color: var(--Grey, #4f4f4f);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
section.cnt_sec1 .cnt_listing ul li .cn_bx_dt p a {
  color: inherit;
}
section.cnt_sec1 .cnt_listing ul li .cn_bx_dt p a:hover {
  color: #ec671b;
}

section.cnt_sec2 {
  padding: 0 0 5rem;
}
section.cnt_sec2 .map_gp {
  width: 100%;
}
section.cnt_sec2 .map_gp iframe {
  width: 100%;
  border: 0;
  height: 32.3125rem;
  border-radius: 20px;
  overflow: hidden;
}

.advantage {
  margin-bottom: 80px;
  margin-top: 0;
}
.advantage .container:before {
  left: 80px;
  bottom: -350px;
}
.advantage .container .book {
  width: 464px;
}
.advantage p {
  margin-bottom: 25px;
}
.advantage .w869 {
  width: 706px;
  position: relative;
}
.advantage .w869 ul {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  margin-bottom: 45px;
}
.advantage .w869 ul li {
  color: var(--White, #fff);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
  padding-left: 34px;
  position: relative;
}
.advantage .w869 ul li img {
  position: absolute;
  left: 0;
  top: 0;
}

.geo-1 {
  padding: 80px 0;
  position: relative;
}
.geo-1:before {
  content: url(../images/havooexam-sideimg.svg);
  width: 100px;
  position: absolute;
  top: 53%;
  right: 0;
}
.geo-1 h2 {
  text-align: center;
}
.geo-1 h2 + p {
  text-align: center;
}

.geo-2 {
  padding: 60px 0;
  margin-bottom: 80px;
}

.nestedacc-outer {
  border-radius: 20px;
  background: #fffaf8;
  padding: 60px;
  margin-top: 46px;
  position: relative;
}
.nestedacc-outer h3 {
  color: var(--Grey, #4f4f4f);
  leading-trim: both;
  text-edge: cap;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}
.nestedacc-outer h3 + p {
  margin-bottom: 30px;
}
.nestedacc-outer .nested-accordion {
  margin-top: 10px;
  cursor: pointer;
  position: relative;
}
.nestedacc-outer .nested-accordion.active:before {
  content: "";
  width: 1px;
  top: 33px;
  bottom: -25px;
  left: 11px;
  background-color: #ec671b;
  position: absolute;
}
.nestedacc-outer .nested-accordion:last-child:before {
  bottom: 0 !important;
}
.nestedacc-outer .nested-accordion .comment {
  margin-left: 28px;
  margin-bottom: 8px;
}
.nestedacc-outer .nested-accordion .nested-accordion h3 {
  border-radius: 4px;
  background: #fbeae0;
  padding: 8px;
  overflow: hidden;
  color: var(--Grey, #4f4f4f);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.nestedacc-outer .nested-accordion .nested-accordion .comment {
  margin-left: 0;
}
.nestedacc-outer .nested-accordion .nested-accordion.active:before {
  display: none;
}
.nestedacc-outer .nested-accordion h3 {
  overflow: hidden;
  color: var(--Grey, #4f4f4f);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
  padding: 9px 36px;
  position: relative;
}
.nestedacc-outer .nested-accordion h3 img {
  position: absolute;
  top: 12px;
  left: 0;
}
.nestedacc-outer .nested-accordion h3 i {
  position: absolute;
  top: 14px;
  right: 12px;
  font-size: 12px;
}
.nestedacc-outer .nested-accordion p {
  color: var(--Grey, #4f4f4f);
  text-overflow: ellipsis;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.nestedacc-outer .nested-accordion .comment {
  padding: 8px;
}
.nestedacc-outer .nested-accordion a {
  text-decoration: none;
  color: #47a3da;
}

.final-exam-3 {
  margin-bottom: 140px;
}
.final-exam-3 h3 {
  color: var(--Grey, #4f4f4f);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.4px;
  margin-bottom: 24px;
}
.final-exam-3 ul {
  margin-bottom: 24px;
}
.final-exam-3 ul li {
  color: var(--Light-Grey, #888);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
  position: relative;
}
.final-exam-3 ul li:last-child {
  margin-bottom: 0;
}
.final-exam-3 ul li::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../images/mdi_tick-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.final-exam-3 ul li img {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 0px;
}

.books-outer {
  padding-bottom: 140px;
}

.students-who {
  padding: 80px 0;
}
.students-who h2 {
  text-align: center;
}
.students-who .col-md-6 {
  margin-top: 32px;
}
.students-who .col-md-6:nth-child(1), .students-who .col-md-6:nth-child(2) {
  margin-top: 0;
}
.students-who .studwho h5 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}
.students-who .studwho h5:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 30px;
  background-color: #ec671b;
  position: absolute;
  left: 0;
  top: 5px;
}
.students-who .studwho p {
  padding-left: 20px;
}

.cta {
  position: relative;
}

.cta .container {
  z-index: 1;
}

.cta:after {
  content: "";
  width: 521px;
  height: 323px;
  transform: rotate(6.664deg);
  flex-shrink: 0;
  border-radius: 50%;
  background: #d74f41;
  position: absolute;
  top: -250px;
  right: -170px;
  z-index: 0;
}

.exam-training {
  padding: 80px 0;
}
.exam-training h2 {
  margin-bottom: 40px;
  text-align: center;
}
.exam-training .exm-outer {
  position: relative;
}
.exam-training .exm-outer:before {
  content: "";
  position: absolute;
  width: 1px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #fff3dc;
}
.exam-training .row {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}
.exam-training .row:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 40px;
  background: #ec671b;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
.exam-training .row:after {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #f0ddb6;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 0;
  box-shadow: 0 0 0px 20px rgb(255, 255, 255);
}
.exam-training .row:last-child {
  margin-bottom: 0;
}
.exam-training .row:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.exam-training .row .txt h5 {
  color: var(--Dark, #1f1f1f);
  leading-trim: both;
  text-edge: cap;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  /* 250% */
  letter-spacing: 0.48px;
  margin-bottom: 20px;
}
.exam-training .row .txt p {
  color: #333;
  leading-trim: both;
  text-edge: cap;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 175% */
  letter-spacing: 0.32px;
  margin-bottom: 0;
}

.havoexam.p-80 {
  padding: 0 0 80px 0;
}

.examoverview {
  padding: 60px 0;
}
.examoverview .ov-left .col-md-6 {
  margin-top: 30px;
}
.examoverview .ov-left .col-md-6:nth-child(1), .examoverview .ov-left .col-md-6:nth-child(2) {
  margin-top: 0;
}
.examoverview .ov-left .ovlft-inner img {
  width: 24px;
  margin-bottom: 10px;
}
.examoverview .ov-left .ovlft-inner h6 {
  color: var(--Dark, #1f1f1f);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.16px;
  margin-bottom: 10px;
}
.examoverview .ov-right {
  background: #fdf3ed;
  padding: 20px;
}
.examoverview .ov-right span {
  color: #ec671b;
}
.examoverview .ov-right h6 {
  color: var(--Grey, #4f4f4f);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
}
.examoverview .ov-right h6.orange {
  color: #ec671b;
}
.examoverview .ov-right ul {
  margin-top: 0px;
  margin-bottom: 30px;
}
.examoverview .ov-right ul li {
  color: var(--Light-Grey, #888);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
}
.examoverview .ov-right ul li img {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.examoverview .ov-right .tab-block .tabmenu-outer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.examoverview .ov-right .tab-block .tab-mnu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 28px;
  width: 100%;
}
.examoverview .ov-right .tab-block .tab-mnu:after {
  content: "";
  display: table;
  clear: both;
}
.examoverview .ov-right .tab-block .tab-mnu li {
  color: #a9a9a9;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  border-bottom: 4px solid var(--Orange, rgba(236, 104, 27, 0));
  margin: 0 23px;
  padding-bottom: 5px;
  padding-left: 0;
}
.examoverview .ov-right .tab-block .tab-mnu li:first-child {
  margin-left: 0;
}
.examoverview .ov-right .tab-block .tab-mnu li:last-child {
  margin-right: 0;
}
.examoverview .ov-right .tab-block .tab-mnu .active {
  background: #fdf3ed;
  color: #000;
  border-bottom: 4px solid var(--Orange, #ec671b);
  cursor: default;
}
.examoverview .ov-right .tab-block .tab-cont {
  box-sizing: border-box;
  background: #fdf3ed;
  color: #292d2f;
}
.summery {
  margin: 65px 0;
}
.summery .geo-det-rgt .topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0.75rem;
}
.summery .geo-det-rgt .topbar h6 {
  margin: 0;
}
.summery .geo-det-rgt .topbar .rating {
  position: relative;
}
.summery .geo-det-rgt .topbar .rating::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #cecece;
  left: -1.875rem;
  top: 0;
}
.summery .geo-det-rgt .heading {
  margin: 0 0 1.5rem;
}
.summery .geo-det-rgt .heading h5 {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
}
.summery .geo-det-rgt .price {
  margin: 0 0 3rem;
}
.summery .geo-det-rgt .price h1 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.summery .geo-det-rgt .desc ul {
  margin: 0 0 3rem;
}
.summery .geo-det-rgt .desc ul li h5 {
  color: var(--Dark, #1f1f1f);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.32px;
  margin: 0 0 0.625rem;
}
.summery .geo-det-rgt .desc ul li p {
  padding-left: 2.125rem;
}
.summery .geo-det-rgt .desc ul li + li {
  margin-top: 0.625rem;
}
.summery .geo-det-rgt h6 {
  color: var(--Light-Grey, #888);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 125% */
}
.summery .swiper.geo-det .swiper-button-prev,
.summery .swiper.geo-det .swiper-button-next {
  display: flex;
  width: 30px;
  height: 30px;
  padding: 6px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #ec671b;
  border-radius: 100px;
  background: #ffede6;
}
.summery .swiper.geo-det .swiper-button-prev::after,
.summery .swiper.geo-det .swiper-button-next::after {
  font-size: 0.875rem;
}
.summery .swiper.geo-det .swiper-button-prev.swiper-button-disabled,
.summery .swiper.geo-det .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}

.tx-type1 {
  padding: 5rem 0;
}
.tx-type1 .title {
  margin-bottom: 2rem;
}
.tx-type1 iframe {
  max-height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tx-type1 h3 {
  margin: 0rem 0rem 1.5rem;
  padding: 0rem;
  color: var(--Grey, #4f4f4f);
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.tx-type1 ul.list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}
.tx-type1 ul.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  height: 0.9rem;
  width: 0.9rem;
  background: var(--Orange, #ec671b);
  border: 2px solid #fff;
  outline: 5px solid #ffd7a9;
  border-radius: 50%;
}

.card-sec-common .box-outer.books {
  align-items: flex-start;
}
.card-sec-common:not(:last-of-type) {
  padding-bottom: 0;
}

.odd-heading {
  padding: 4rem 0 2rem;
}
.odd-heading .container {
  position: relative;
}
.odd-heading .container::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  display: inline-block;
  height: 1px;
  width: 100%;
  background: #ec671b;
}
.odd-heading h2 {
  background: #fff;
  padding: 10px;
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 0;
}

p.not-found {
  text-align: center;
  color: #ec671b;
}
p.not-found:not(:first-of-type) {
  margin-bottom: 3rem;
}

.item-has-sub {
  position: relative;
}
.item-has-sub span.icon_circle {
  position: relative;
}
.item-has-sub span.icon_circle::before {
  content: "\f0d7";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}
.item-has-sub .subaccc {
  position: absolute;
  top: auto;
  padding: 0.4rem;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all ease 1s 0s;
  width: 130px;
  left: -12px;
}
.item-has-sub .subaccc li a {
  padding: 0.3rem;
  display: block !important;
  font-weight: 600 !important;
}
.item-has-sub:hover > .subaccc {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.page-id-101 section.cnt_sec1 {
  padding: 80px 0;
}
.page-id-101 section.cnt_sec1 .cnt_listing {
  background: none;
  padding: 0;
  height: auto;
}
.page-id-101 section.cnt_sec1 .cnt_listing .ld-registration__form {
  background: #fff;
  box-shadow: 0 0 15px #ddd;
  padding: 35px;
  border-radius: 20px;
}
.page-id-101 section.cnt_sec1 .cnt_listing .ld-registration__form input:not([type=submit]):not([type=checkbox]) {
  display: block;
  width: 100%;
  color: var(--Dark-Grey, #7a7a7a);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 1.032rem 1.5rem;
  height: auto;
  border: 1px solid #f8f8f8;
  border-radius: 8px;
  background: #f8f8f8;
  margin-bottom: 0;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.page-id-101 section.cnt_sec1 .cnt_listing .ld-registration__form input[type=submit] {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 3.125rem;
  position: relative;
  display: inline-flex;
  padding: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
  color: var(--White, #fff);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  outline: none;
  border: 0.0625rem solid var(--Orange, #ec671b);
  background: var(--Orange, #ec671b);
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 1;
}
.page-id-101 section.cnt_sec1 .cnt_listing .ld-registration__form p.login-remember input#rememberme {
  padding: 0;
  width: 20px;
  height: 20px;
  transform: scale(1);
}
.page-id-101 section.cnt_sec1 .cnt_listing .ld-registration__form p.login-username,
.page-id-101 section.cnt_sec1 .cnt_listing .ld-registration__form p.login-password {
  margin: 0 0 1.25rem;
}
.page-id-101 section.cnt_sec1 .cnt_listing .ld-registration__form p.login-remember label {
  display: flex;
}
.page-id-101 section.cnt_sec1 .cnt_listing .ld-registration__form p.login-remember {
  display: none;
}
.page-id-101 section.cnt_sec1 .cnt_listing h2 {
  line-height: 2rem;
  margin: 0 0 2rem;
  text-align: center;
}
.page-id-101 section.cnt_sec1 .cnt_listing p.ld-registration__p {
  text-align: center;
  font-size: 18px;
}
.page-id-101 section.cnt_sec1 .cnt_listing p.ld-registration__p a {
  color: #ec671b;
}

.mejs-video {
  margin: 0 0 45px;
}

section.geo-1.s_gdt_sec3 h2,
section.geo-1.s_gdt_sec3 p {
  text-align: left;
}

section.trainSec1 {
  padding: 3.75rem 0;
  background: #fff;
}
section.trainSec1 h2 {
  margin: 0 0 3.22rem;
}
section.trainSec1 .gp_fm_ex .fm_gp {
  position: relative;
}
section.trainSec1 .gp_fm_ex .btn {
  padding: 0.75rem 1.25rem;
}
section.trainSec1 .gp_fm_ex .d-flex .each_col {
  flex: 1 0 calc(25% - 8.5rem);
}
section.trainSec1 .gp_fm_ex .d-flex .each_col.width75 {
  flex: 1 0 calc(75% - 1.5rem);
}

section.s_gd_sec2.trainSec2 .btn {
  background: transparent;
}
section.s_gd_sec2.trainSec2 .train_details .trainDt h5 {
  line-height: normal;
}
section.s_gd_sec2.trainSec2 .train_details .trainDt hr {
  margin: 1.25rem 0 1.5rem;
}

.mt5 {
  margin-top: 5.56rem;
}

section.trainSec3 {
  padding: 3.75rem 0;
}
section.trainSec3 .learnList h4 {
  color: #000;
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.025rem;
  text-transform: capitalize;
  padding-left: 1.25rem;
  position: relative;
}
section.trainSec3 .learnList h4::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0.5625rem;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--Orange, #ec671b);
  border-radius: 50%;
}
section.trainSec3 .learnList .nestedacc-outer {
  padding: 0;
  margin: 0;
  background: transparent;
}
section.trainSec3 .learnList .nestedacc-outer .nested-accordion.active:before {
  display: none;
}
section.trainSec3 .learnList .nestedacc-outer .nested-accordion {
  margin: 0 0 25px;
  cursor: pointer;
  position: relative;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 7px;
}
section.trainSec3 .learnList .nestedacc-outer .nested-accordion .nested-heading h6 {
  color: var(--Orange, #ec671b);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 2.15rem;
  margin-bottom: 0;
}
section.trainSec3 .learnList .nestedacc-outer .nested-accordion .nested-heading h3 {
  padding: 0;
  padding-right: 45px;
  font-size: 16px;
}
section.trainSec3 .learnList .nestedacc-outer .nested-accordion .nested-heading h3 i {
  top: 8px;
}
section.trainSec3 .learnList .nestedacc-outer .nested-accordion .nested-heading h3 img {
  display: none;
}
section.trainSec3 .learnList .nestedacc-outer .nested-accordion .comment {
  padding: 0;
  margin: 0;
}
section.trainSec3 .learnList .nestedacc-outer .nested-accordion .comment .learnDt {
  position: relative;
  padding: 0rem;
  padding-top: 20px;
}
section.trainSec3 .learnList .nestedacc-outer .nested-accordion .comment .learnDt p {
  color: var(--Grey, #4f4f4f);
  text-overflow: ellipsis;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
  text-align: justify;
}
section.trainSec3 .learnList .nestedacc-outer .nested-accordion .comment .learnDt ul li {
  position: relative;
  list-style: disc;
  list-style-position: inside;
  color: var(--Grey, #4f4f4f);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

section.trainSec4 {
  padding: 5rem 0;
}
section.trainSec4 h2 {
  margin: 0 0 3rem;
}
section.trainSec4 .calendar_frame {
  width: 100%;
  margin: 0 0 3rem;
}
section.trainSec4 .calendar_frame .double-calendar-month {
  width: 50%;
}
section.trainSec4 .calendar_frame .double-calendar {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 0.375rem;
  border-radius: 0.25rem;
  border: 1px solid #dadada;
  background: #fff;
  text-align: center;
  padding: 1.2rem 1rem 1rem;
  max-width: 100%;
}
section.trainSec4 .calendar_frame .double-calendar button.double-prev-month {
  position: absolute;
  left: 1.25rem;
  top: 1.15rem;
  z-index: 9;
  border-radius: 0.25rem;
  border: 1px solid #d0d5dd;
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  justify-content: center;
  align-items: center;
  background: transparent;
}
section.trainSec4 .calendar_frame .double-calendar button.double-next-month {
  position: absolute;
  right: 1.25rem;
  top: 1.15rem;
  z-index: 9;
  border-radius: 0.25rem;
  border: 1px solid #d0d5dd;
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  justify-content: center;
  align-items: center;
  background: transparent;
}
section.trainSec4 .calendar_frame .double-calendar .month-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}
section.trainSec4 .calendar_frame .double-calendar .month-wrapper::after {
  content: "";
  width: 1px;
  height: 85%;
  background: #f1f1f1;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
}
section.trainSec4 .calendar_frame .double-calendar .double-calendar-header {
  display: flex;
  gap: 0 1.38rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem 0.5rem 0 0;
  margin: auto;
  margin-bottom: 0.45rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid #e7eaee;
}
section.trainSec4 .calendar_frame .double-calendar .double-calendar-header span {
  color: #191d23;
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
section.trainSec4 .calendar_frame .double-calendar .double-calendar-header button {
  background: none;
  border: none;
  font-size: 1rem;
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
  border: 1px solid #d0d5dd;
  cursor: pointer;
  color: #555;
}
section.trainSec4 .calendar_frame .double-calendar .double-calendar-header .double-month-year {
  display: block;
  font-weight: bold;
  color: #191d23;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
section.trainSec4 .calendar_frame .double-calendar .double-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.37rem;
}
section.trainSec4 .calendar_frame .double-calendar .double-calendar-weekdays span {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 0.31rem 0.55rem;
}
section.trainSec4 .calendar_frame .double-calendar .double-calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 0.1rem;
}
section.trainSec4 .calendar_frame .double-calendar .double-calendar-dates .date {
  color: var(--Text-heading, #0d0d0d);
  padding-block: 1.37rem;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
section.trainSec4 .calendar_frame .double-calendar .double-calendar-dates .date.available {
  background: rgba(236, 103, 27, 0.1);
  cursor: pointer;
}
section.trainSec4 .calendar_frame .double-calendar .double-calendar-dates .date.active {
  border-radius: 0.25rem;
  background: var(--Orange, #ec671b);
  cursor: text;
  color: #fff;
}
section.trainSec4 .calendar_frame .double-calendar .double-calendar-dates .range {
  background: #eeecf3;
}
section.trainSec4 .calendar_frame .double-calendar .double-calendar-dates .selected {
  color: #fff;
  background: var(--Color-2, #513a7e);
}
section.trainSec4 .calendar_frame .double-calendar .double-calendar-dates .disabled {
  color: #ccc;
  cursor: not-allowed;
}
section.trainSec4 .needHelp {
  width: 100%;
  background: #fdf3ed;
  padding: 0.88rem 3.13rem 3.12rem;
  text-align: center;
}
section.trainSec4 .needHelp .helpImg {
  width: 100%;
  margin: 0 0 1.38rem;
}
section.trainSec4 .needHelp h3 {
  color: var(--Dark, #1f1f1f);
  text-align: center;
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.7rem;
  /* 250% */
  letter-spacing: 0.03rem;
  margin: 0 0 1.5rem;
}
section.trainSec4 .needHelp p {
  color: #333;
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 175% */
  letter-spacing: 0.02rem;
  margin: 0;
}
section.trainSec4 .needHelp p.or-line {
  color: var(--Orange, #ec671b);
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.02rem;
  margin: 1rem 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.94rem;
}
section.trainSec4 .needHelp p.or-line::before {
  content: " ";
  width: 100%;
  max-width: 7.375rem;
  height: 0.0625rem;
  background: #ffcfb2;
}
section.trainSec4 .needHelp p.or-line::after {
  content: " ";
  width: 100%;
  max-width: 7.375rem;
  height: 0.0625rem;
  background: #ffcfb2;
}
section.trainSec4 .needHelp p a {
  color: inherit;
  line-height: inherit;
  font-size: inherit;
  transition: all 0.3s ease-in-out;
}
section.trainSec4 .needHelp p a:hover {
  color: var(--Orange, #ec671b);
}
section.trainSec4 .needHelp p i {
  margin: 0 0.375rem;
}
section.trainSec4 .needHelp .btn {
  display: grid;
  grid-template-columns: 1.437rem 1fr;
  gap: 0.63rem;
  margin-top: 3rem;
  max-width: 11.6875rem;
  margin: 3rem auto 0;
  padding: 0.6565rem 0.8938rem;
  background: transparent;
}
section.trainSec4 .needHelp .btn span {
  width: 100%;
}

section.trainSec5 {
  padding: 0 0 5rem;
}
section.trainSec5 h2 + p {
  margin-bottom: 4rem;
}
section.trainSec5 .placeImg {
  width: 100%;
  margin: 0 0 1.87rem;
}
section.trainSec5 .placeImg img {
  width: 100%;
}
section.trainSec5 .mapFrame {
  width: 100%;
  height: 22.75rem;
}
section.trainSec5 .mapFrame iframe {
  width: 100%;
  height: 100%;
}
section.trainSec5 .map_pin_dt {
  width: 100%;
  background: #f2f2f2;
  padding: 1.25rem 1.25rem 1.1875rem 1.25rem;
  margin: 0 0 1.88rem;
}
section.trainSec5 .map_pin_dt h4 {
  color: #000;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  line-height: 1rem;
  margin: 0 0 1rem;
}
section.trainSec5 .map_pin_dt p {
  color: var(--Dark, #1f1f1f);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 1.94rem;
}
section.trainSec5 .map_pin_dt .place_location {
  display: grid;
  padding: 0.875rem 1.25rem;
  background: #fff;
  flex-direction: column;
  align-items: flex-start;
  grid-template-columns: 2.75rem 1fr;
  align-items: center;
  gap: 0.625rem;
}
section.trainSec5 .map_pin_dt .place_location .pin_place {
  display: flex;
  width: 2.75rem;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 6.25rem;
  border: 1px solid #e6e6e6;
  background: #fff;
}
section.trainSec5 .map_pin_dt .place_location p {
  margin: 0;
  padding: 0;
}

section.s_gdt_sec4.trainSec6 {
  margin: 0 0 5rem;
}

.calendar {
  display: none;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #e9e9e9;
  background: #fff;
  box-shadow: 0px 4px 9.8px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 1rem;
  max-width: 25rem;
  position: absolute;
  z-index: 9;
  top: 100%;
  left: 0;
}
.calendar .calendar-header {
  display: flex;
  gap: 0 1.38rem;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem 0.5rem 0 0;
  margin: auto;
  margin-bottom: 0.45rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid #e7eaee;
}
.calendar .calendar-header button {
  background: none;
  border: none;
  font-size: 1rem;
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
  border: 1px solid #d0d5dd;
  cursor: pointer;
  color: #555;
}
.calendar .calendar-header .month-year {
  display: block;
  font-weight: bold;
  color: #191d23;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.calendar .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.37rem;
}
.calendar .calendar-weekdays span {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 0.31rem 0.55rem;
}
.calendar .calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 0.1rem;
}
.calendar .calendar-dates .date {
  cursor: unset;
  color: var(--Text-heading, #0d0d0d);
  padding-block: 1.37rem;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.calendar .calendar-dates .date.available {
  background: rgba(236, 103, 27, 0.1);
  cursor: pointer;
}
.calendar .calendar-dates .date.active {
  border-radius: 0.25rem;
  background: var(--Orange, #ec671b);
  cursor: text;
  color: #fff;
}
.calendar .calendar-dates .range {
  background: #eeecf3;
}
.calendar .calendar-dates .selected {
  color: #fff;
  background: var(--Color-2, #513a7e);
}
.calendar .calendar-dates .disabled {
  color: #ccc;
  cursor: not-allowed;
}

input:not([type=submit]).date-selector {
  padding: 0.832rem 1.5rem;
  cursor: pointer !important;
  width: 100%;
  border: none;
  border-radius: 0rem;
  box-shadow: none;
  background-image: url(../images/down-arrow-select.svg);
  background-position: calc(100% - 1.9375rem);
  background-repeat: no-repeat;
  background-color: transparent;
  color: var(--Grey, #4f4f4f);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

section.hm_sec1 {
  overflow: hidden;
}

section.hm_sec1 .gp_fm_ex .d-flex .each_col,
section.hm_sec1.s_gdt_sec7 .gp_fm_ex .d-flex .each_col {
  overflow: hidden;
  position: relative;
}

section.hm_sec1 .gp_fm_ex .fm_gp input:not([type=submit]),
section.hm_sec1 .gp_fm_ex .fm_gp select,
section.hm_sec1.s_gdt_sec7 .gp_fm_ex .fm_gp input:not([type=submit]),
section.hm_sec1.s_gdt_sec7 .gp_fm_ex .fm_gp select {
  border: 0px !important;
  border-radius: 0px !important;
}

section.hm_sec1 .select2-container--default .select2-selection--multiple,
section.hm_sec1.s_gdt_sec7 .select2-container--default .select2-selection--multiple {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  border-radius: 0rem;
  box-shadow: none;
  background-image: url(../images/down-arrow-select.svg);
  background-position: calc(100% - 0.9375rem);
  background-repeat: no-repeat;
  color: var(--Dark-Grey, #7a7a7a);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.8rem 1.5rem;
  height: auto;
  text-transform: none;
  cursor: pointer;
  background-color: #fff;
  background-size: 1.5rem;
  border: none;
  margin-bottom: 0.75rem;
  margin: 0;
}

/* Select2 Styling */
#locationcategory,
#category {
  width: 100% !important;
}

section.hm_sec1 .gp_fm_ex .fm_gp {
  border-radius: 20px;
}

.select2-container--default .select2-selection--multiple:hover {
  border-color: #ec671b;
}

.select2-selection__rendered {
  display: flex;
  gap: 5px;
  align-items: center;
}

.select2-selection__choice {
  background-color: #ec671b;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  font-size: 14px;
}

.select2-selection__placeholder {
  color: #999;
  font-size: 14px;
}

section.hm_sec1 .gp_fm_ex .fm_gp {
  border: 0.0625rem solid #cccccc;
  border-radius: 30px;
  overflow: hidden;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: #ec671b;
  border: 0px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: block;
}

section.hm_sec1 .gp_fm_ex .fm_gp .btn {
  border: 0px;
}

.select2-results li[aria-selected=true] {
  display: none;
}

.select2-dropdown {
  border: 0px;
}

section.hm_sec1.trainSec1 .gp_fm_ex .fm_gp {
  overflow: unset;
}

section.trainSec1 .gp_fm_ex .d-flex .each_col.width75 {
  overflow: unset;
}

section.hm_sec1.trainSec1 {
  overflow: unset !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
  max-width: 600px;
  padding: 10px;
  left: 0;
  right: 0;
  margin: auto;
}

section.trainSec3 + .product-price {
  display: none;
}
section.trainSec3 + .product-price + .product-add-to-cart {
  display: none;
}

.page-id-106 section.cnt_sec1 input#checkbox-control-0,
.page-id-106 section.cnt_sec1 input#radio-control-0-free_shipping\:1,
.page-id-106 section.cnt_sec1 input#checkbox-control-1 {
  padding: 0;
}
.page-id-106 section.cnt_sec1 button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.wc-block-components-checkout-place-order-button--full-width.contained {
  position: relative;
  display: inline-flex;
  padding: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
  color: var(--White, #fff);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  outline: none;
  border: 0.0625rem solid var(--Orange, #ec671b);
  border-radius: 20px;
  background: var(--Orange, #ec671b);
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 1;
}
.page-id-106 section.cnt_sec1 button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.wc-block-components-checkout-place-order-button--full-width.contained:focus, .page-id-106 section.cnt_sec1 button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.wc-block-components-checkout-place-order-button--full-width.contained:active:focus {
  outline: 0;
  box-shadow: none;
  background: #fff;
  color: var(--Orange, #ec671b);
  border: 1px solid var(--Orange, #ec671b);
}
.page-id-106 section.cnt_sec1 button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.wc-block-components-checkout-place-order-button--full-width.contained:hover {
  border: none;
  background: #fff;
  color: var(--Orange, #ec671b);
  border: 1px solid var(--Orange, #ec671b);
}
.page-id-106 section.cnt_sec1 ul.wc-block-components-product-details {
  display: block;
}
.page-id-106 section.cnt_sec1 ul.wc-block-components-product-details li {
  display: block;
}
.page-id-106 section.cnt_sec1 ul.wc-block-components-product-details li + li {
  margin-top: 5px;
}
.page-id-106 section.cnt_sec1 ul.wc-item-meta {
  display: block;
}
.page-id-106 section.cnt_sec1 ul.wc-item-meta li {
  display: block;
}
.page-id-106 section.cnt_sec1 ul.wc-item-meta li + li {
  margin-top: 5px;
}

.page-id-106 section.cnt_sec1 {
  /* TABLE ORDER DETAIL */
}
.page-id-106 section.cnt_sec1 a {
  color: #ec671b;
}
.page-id-106 section.cnt_sec1 h2.woocommerce-order-details__title,
.page-id-106 section.cnt_sec1 h2.woocommerce-column__title {
  margin: 0 0 1.25rem;
}
.page-id-106 section.cnt_sec1 .woocommerce-order-overview {
  background: #ec671b;
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
@media (max-width: 767px) {
  .page-id-106 section.cnt_sec1 .woocommerce-order-overview {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.page-id-106 section.cnt_sec1 .woocommerce-order-overview:before, .page-id-106 section.cnt_sec1 .woocommerce-order-overview:after {
  background: -webkit-linear-gradient(transparent 0, transparent 0), -webkit-linear-gradient(135deg, #ec671b 33.33%, transparent 33.33%), -webkit-linear-gradient(45deg, #ec671b 33.33%, transparent 33.33%);
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
  background-size: 0 100%, 16px 16px, 16px 16px;
}
.page-id-106 section.cnt_sec1 .woocommerce-order-overview:after {
  top: auto;
  bottom: -16px;
  transform: rotate(180deg);
}
.page-id-106 section.cnt_sec1 .woocommerce-order-overview li {
  padding: 1em 1.618em;
  font-size: 0.8em;
  width: 25%;
  text-transform: uppercase;
  border-right: 1px dotted #141414;
  text-align: center;
  display: block;
  color: #fff;
}
@media (max-width: 767px) {
  .page-id-106 section.cnt_sec1 .woocommerce-order-overview li {
    width: auto;
    text-align: left;
    padding: 10px 0;
    margin: 0 15px;
    border-right: none;
    border-bottom: 1px dotted #141414;
  }
  .page-id-106 section.cnt_sec1 .woocommerce-order-overview li:last-child {
    border-bottom: none;
  }
}
.page-id-106 section.cnt_sec1 .woocommerce-order-overview li:last-child {
  border-right: none;
}
.page-id-106 section.cnt_sec1 .woocommerce-table--customer-details {
  border: none;
}
.page-id-106 section.cnt_sec1 .woocommerce-table--customer-details tbody th {
  background: #f8f8f8;
  padding-left: 25px;
}
@media (max-width: 767px) {
  .page-id-106 section.cnt_sec1 .woocommerce-table--customer-details tbody th {
    width: 100%;
    display: block;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.page-id-106 section.cnt_sec1 .woocommerce-table--customer-details tbody td {
  background: #fdfdfd;
  padding-left: 25px;
  text-align: left !important;
}
.page-id-106 section.cnt_sec1 .shop_table.woocommerce-table--order-details {
  box-shadow: 0 0 5px rgba(236, 103, 27, 0.1);
}
.page-id-106 section.cnt_sec1 .shop_table.woocommerce-table--order-details thead {
  background: #ec671b;
  color: #fff;
}
.page-id-106 section.cnt_sec1 .shop_table.woocommerce-table--order-details thead th {
  border-bottom: none;
  font-weight: normal;
  font-size: 0.9rem;
  border-radius: 0.3125rem;
}
.page-id-106 section.cnt_sec1 .shop_table.woocommerce-table--order-details thead th.product-name {
  text-align: left;
}
.page-id-106 section.cnt_sec1 .shop_table.woocommerce-table--order-details tbody td {
  border-color: #f0f2f7;
}
@media (max-width: 767px) {
  .page-id-106 section.cnt_sec1 section.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses .woocommerce-column {
    margin: 0 0 1.25rem;
  }
}

section.trainSec4 .product-price {
  font-weight: 700;
  margin: 0 0 1rem;
  font-size: 1.5rem;
}
section.trainSec4 .heading_title {
  margin: 0 0 1rem;
}

section.hm_sec1.trainSec1 {
  padding-bottom: 0;
}

.page-id-537.logged-in .main-content {
  padding: 3.75rem 0;
}
@media (max-width: 767px) {
  .page-id-537.logged-in .main-content {
    padding: 1.875rem 0;
  }
}
.page-id-537.logged-in .main-content.last {
  padding-bottom: 7.5rem;
}
.page-id-537.logged-in .order-history {
  display: grid;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 0 0 1.5625rem;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 992px) {
  .page-id-537.logged-in .order-history {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .page-id-537.logged-in .order-history {
    grid-template-columns: 1fr;
  }
}
.page-id-537.logged-in .order-history .order-item {
  position: relative;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 0.125rem solid #f2f2f2;
  background: var(--White, #fff);
}
.page-id-537.logged-in .order-history .order-item h4 {
  font-weight: 700;
  font-size: 16px;
}
.page-id-537.logged-in .order-history .order-item ul li {
  margin: 0 0 1.25rem;
}
.page-id-537.logged-in .order-history .order-item ul p {
  margin: 0 0 0.625rem;
}
.page-id-537.logged-in .heading_panel.fxAdjust h2 {
  margin: 0;
}

.learndash-wrapper .ld-progress .ld-progress-heading .ld-progress-stats .ld-progress-percentage {
  color: #ff5722;
}

.learndash-wrapper .ld-course-status.ld-course-status-enrolled {
  background-color: rgba(255, 87, 34, 0.17);
}

.postid-224 section.cnt_sec1 {
  padding: 3.75rem 0;
}
@media (max-width: 767px) {
  .postid-224 section.cnt_sec1 {
    padding: 1.875rem 0;
  }
}
.postid-224 section.cnt_sec1 .learndash-wrapper .ld-primary-background {
  background-color: #ff5722 !important;
}
.postid-224 section.cnt_sec1 .learndash-wrapper .ld-expand-button.ld-button-alternate,
.postid-224 section.cnt_sec1 .learndash-wrapper .ld-primary-color,
.postid-224 section.cnt_sec1 .learndash-wrapper .ld-primary-color {
  color: #ff5722 !important;
}
.postid-224 section.cnt_sec1 .learndash-wrapper .ld-item-list .ld-item-list-item a.ld-item-name:hover {
  color: #ff5722 !important;
}

section.geo-1.s_gdt_sec3 .mt50 {
  margin-top: 3.125rem;
}
section.geo-1.s_gdt_sec3 iframe {
  max-width: 450px !important;
  height: 450px;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 992px) {
  section.geo-1.s_gdt_sec3 iframe {
    height: 21rem;
  }
}
@media (max-width: 767px) {
  section.geo-1.s_gdt_sec3 iframe {
    height: 246px;
  }
}
@media (max-width: 576px) {
  section.geo-1.s_gdt_sec3 iframe {
    height: 240px;
    width: 240px;
    margin: 0 auto 1.25rem;
    display: block;
  }
}

.item-has-sub .subaccc {
  display: block !important;
}
.item-has-sub .subaccc li {
  display: block;
}

.learndash-wrapper .ld-button:hover:not(.learndash-link-previous-incomplete):not(.ld-button-transparent):not(.ld--ignore-inline-css),
#learndash-tooltips .ld-tooltip:after,
#learndash-tooltips .ld-tooltip,
.learndash-wrapper .ld-primary-background,
.learndash-wrapper .btn-join:not(.ld--ignore-inline-css),
.learndash-wrapper #btn-join:not(.ld--ignore-inline-css),
.learndash-wrapper .ld-button:not(.ld-button-reverse):not(.learndash-link-previous-incomplete):not(.ld-button-transparent):not(.ld--ignore-inline-css),
.learndash-wrapper .ld-expand-button,
.learndash-wrapper .wpProQuiz_content .wpProQuiz_button:not(.wpProQuiz_button_reShowQuestion):not(.wpProQuiz_button_restartQuiz),
.learndash-wrapper .wpProQuiz_content .wpProQuiz_button2,
.learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation-heading,
.learndash-wrapper .ld-focus .ld-focus-sidebar .ld-focus-sidebar-trigger,
.learndash-wrapper .ld-focus-comments .form-submit #submit,
.learndash-wrapper .ld-login-modal input[type=submit],
.learndash-wrapper .ld-login-modal .ld-login-modal-register,
.learndash-wrapper .wpProQuiz_content .wpProQuiz_certificate a.btn-blue,
.learndash-wrapper .ld-focus .ld-focus-header .ld-user-menu .ld-user-menu-items a,
#wpProQuiz_user_content table.wp-list-table thead th,
#wpProQuiz_overlay_close,
.learndash-wrapper .ld-expand-button.ld-button-alternate .ld-icon {
  background-color: #ff5722 !important;
}

.learndash-wrapper .ld-breadcrumbs a,
.learndash-wrapper .ld-lesson-item.ld-is-current-lesson .ld-lesson-item-preview-heading,
.learndash-wrapper .ld-lesson-item.ld-is-current-lesson .ld-lesson-title,
.learndash-wrapper .ld-primary-color-hover:hover,
.learndash-wrapper .ld-primary-color,
.learndash-wrapper .ld-primary-color-hover:hover,
.learndash-wrapper .ld-primary-color,
.learndash-wrapper .ld-tabs .ld-tabs-navigation .ld-tab.ld-active,
.learndash-wrapper .ld-button.ld-button-transparent,
.learndash-wrapper .ld-button.ld-button-reverse,
.learndash-wrapper .ld-icon-certificate,
.learndash-wrapper .ld-login-modal .ld-login-modal-login .ld-modal-heading,
#wpProQuiz_user_content a,
.learndash-wrapper .ld-item-list .ld-item-list-item a.ld-item-name:hover,
.learndash-wrapper .ld-focus-comments__heading-actions .ld-expand-button,
.learndash-wrapper .ld-focus-comments__heading a,
.learndash-wrapper .ld-focus-comments .comment-respond a,
.learndash-wrapper .ld-focus-comment .ld-comment-reply a.comment-reply-link:hover,
.learndash-wrapper .ld-expand-button.ld-button-alternate {
  color: #ff5722 !important;
}

.learndash-wrapper .ld-course-navigation .ld-lesson-item.ld-is-current-lesson .ld-lesson-item-preview-heading .ld-status-incomplete,
.learndash-wrapper .ld-course-navigation .ld-lesson-item.ld-is-current-lesson .ld-lesson-title .ld-status-incomplete {
  border: 2px solid #ff5722;
}

.learndash-wrapper .ld-course-navigation .ld-lesson-item.ld-is-current-lesson .ld-status-incomplete,
.learndash-wrapper .ld-focus-comment.bypostauthor:not(.ptype-sfwd-assignment) > .ld-comment-wrapper > .ld-comment-avatar img,
.learndash-wrapper .ld-focus-comment.role-group_leader > .ld-comment-wrapper > .ld-comment-avatar img,
.learndash-wrapper .ld-focus-comment.role-administrator > .ld-comment-wrapper > .ld-comment-avatar img {
  border-color: #ff5722 !important;
}

section.about-sec1 {
  padding: 3.75rem 0;
}
section.about-sec1 .row {
  margin-bottom: 3.75rem;
}
section.about-sec1 .row:last-child {
  margin: 0;
}
section.about-sec1 h2 {
  margin: 0;
}
section.about-sec1 p {
  margin-top: 1rem;
  line-height: 1.625rem;
  color: var(--Grey, #4f4f4f);
  margin-bottom: 0;
  font-size: 0.96rem;
}
section.about-sec1 img.main-img {
  max-width: 1000%;
  max-height: 31.25rem;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.about-sec1 ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.88rem;
  margin-top: 2rem;
}
section.about-sec1 ul li {
  color: var(--Grey, #4f4f4f);
  font-family: Poppins;
  font-size: 0.96rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  width: 100%;
}
section.about-sec1 ul li span {
  width: 3.75rem;
  height: 3.75rem;
  background-color: #64201e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.about-sec1 ul li span img {
  max-width: 1.5rem;
  max-height: 1.5rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.about-sec1 ul li h6 {
  color: #000;
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  /* 130% */
  margin-bottom: 0.5rem;
  margin-top: 0.75rem;
}

section.about-sec2 {
  padding: 3.75rem 0;
  background: linear-gradient(270deg, #c53f3c 0%, #5f1e1d 100%);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
section.about-sec2::after {
  content: "";
  width: 521px;
  height: 323px;
  transform: rotate(6.664deg);
  flex-shrink: 0;
  border-radius: 50%;
  background: #d74f41;
  position: absolute;
  top: -250px;
  right: -170px;
  z-index: -1;
}
section.about-sec2 ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
section.about-sec2 ul li {
  width: 100%;
}
section.about-sec2 ul li span {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
section.about-sec2 ul li span img {
  max-width: 2.25rem;
  max-height: 2.25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.about-sec2 ul li strong {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.3rem;
  display: block;
  margin: 1.62rem 0 1rem;
}
section.about-sec2 ul li p {
  color: #cfcfcf;
  text-align: center;
  font-family: Poppins;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.select2-container .select2-selection--single {
  height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
}

.select2-container--default .select2-selection--single {
  border: none;
  outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
  top: 0px;
  right: 1px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 35px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 35px;
}/*# sourceMappingURL=style.css.map */