/*============================================================================================
	Theme Reset
==============================================================================================*/

/* 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");
@import url('https://fonts.googleapis.com/css2?family=Imperial+Script&display=swap');

/* Custom Variable Colors */
:root {
  --ed-primary-color: #543ee8;
  --ed-secondary-color: #011c1a;
  --ed-tertiary-color: #ffcd20;
  --ed-white-color: #fff;
  --ed-offwhite-color: #f5f5f5;
  --ed-title-color: #011c1a;
  --ed-paragraph-color: #5f5d5d;
  --ed-border-color: #f0f2f2;
  --ed-font-family: "Poppins", sans-serif;
  --ed-font-family-2: "Poppins", sans-serif;
}

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

/* Selection CSS */
::-moz-selection {
  color: var(--ed-white-color);
  background: var(--ed-primary-color);
}

::selection {
  color: var(--ed-white-color);
  background: var(--ed-primary-color);
}

/* ScrollBar CSS */
/* ::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
  display: block;
}
::-moz-scrollbar {
  width: 8px !important;
  height: 8px !important;
  display: block;
}
::-ms-scrollbar {
  width: 8px !important;
  height: 8px !important;
}
::-webkit-scrollbar-thumb {
  cursor: pointer !important;
  background: var(--ed-primary-color) !important;
  border-radius: 4px;
} */

/* Main Body CSS */
body {
  font-family: var(--ed-font-family);
  background: var(--ed-white-color);
  color: var(--ed-paragraph-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

html {
  font-family: var(--ed-font-family);
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  height: 100%;
  margin: 0;
}

/* Main Container */
.ed-container {
  max-width: 1170px;
  margin: auto;
}

.ed-container-expand {
  max-width: 1200px;
  margin: auto;
}

.ed-container-fluid {
  padding: 0;
  padding: 0px 80px;
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .ed-container-expand {
    max-width: 1170px;
  }
}

@media only screen and (max-width: 1199.99px) {

  .ed-container,
  .ed-container-fluid,
  .ed-container-expand {
    padding: 0% 5%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

  .ed-container,
  .ed-container-fluid,
  .ed-container-expand {
    padding: 0% 15px;
  }
}

/* Theme Typhography */
img {
  max-width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
  text-decoration: none;
}

.animated:focus-visible {
  outline: none;
}

.table {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  transition: all 0.4s ease;
}

button:focus-visible {
  outline: none;
}

input:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
}

button {
  overflow: visible;
  border: none !important;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  appearance: button;
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.btn-close:focus {
  box-shadow: none;
}

button,
input,
select,
optgroup,
textarea {
  font-family: var(--ed-font-family);
  color: var(--ed-paragraph-color);
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
}

.c-font,
.c-font a {
  font-family: var(--ed-font-family);
}

a,
button,
input,
textarea {
  font-weight: 400;
}

img,
a,
input,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  transition: all 0.4s ease;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: var(--ed-border-color);

  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: var(--ed-font-family);
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted var(--ed-border-color);
  cursor: help;
}

mark,
ins {
  background: var(--ed-white-color) 9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth !important;
}

hr {
  background-color: var(--ed-border-color);
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

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

a {
  display: inline-block;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: var(--ed-border-color) var(--ed-border-color) var(--ed-border-color);
  border-radius: 3px;
  background: var(--ed-white-color);
  color: var(--ed-paragraph-color);
  line-height: 1;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: var(--ed-paragraph-color);
  border: 1px solid var(--ed-border-color);
  border-radius: 5px;
  padding: 12px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #393e46;
}

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

select {
  border: 1px solid var(--ed-border-color);
}

textarea {
  width: 100%;
}

a {
  color: inherit;
}

a:hover,
a:focus,
a:active {
  color: var(--ed-title-color);
}

a:hover,
a:active {
  outline: 0;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--ed-white-color);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: var(--ed-secondary-color);
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

#content[tabindex="-1"]:focus {
  outline: 0;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

.infinity-end.neverending .site-footer {
  display: block;
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

embed,
iframe,
object {
  max-width: 100%;
}

.custom-logo-link {
  display: inline-block;
}

/* Heading Title */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
}

h1,
h1 a,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a {
  font-family: var(--ed-font-family-2);
  color: var(--ed-title-color);
  font-weight: 600;
  line-height: 130%;
}

h1 {
  font-size: 61px;
}

h2 {
  font-size: 49px;
}

h3 {
  font-size: 39px;
}

h4 {
  font-size: 31px;
}

h5 {
  font-size: 25px;
}

h6 {
  font-size: 20px;
}

/* Paragraph Text */
p {
  color: var(--ed-paragraph-color);
  margin: 0;
  line-height: 26px;
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 15px !important;
  }
}

/* Cutom Padding */
.pd-top-10 {
  padding-top: 10px;
}

.pd-top-20 {
  padding-top: 20px;
}

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

.pd-top-40 {
  padding-top: 40px;
}

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

.pd-top-55 {
  padding-top: 55px;
}

.pd-top-60 {
  padding-top: 60px;
}

.pd-top-70 {
  padding-top: 70px;
}

.pd-top-80 {
  padding-top: 80px;
}

.pd-top-90 {
  padding-top: 90px !important;
}

.pd-top-100 {
  padding-top: 100px;
}

.pd-top-120 {
  padding-top: 120px;
}

.pd-btm-10 {
  padding-bottom: 10px;
}

.pd-btm-20 {
  padding-bottom: 20px;
}

.pd-btm-30 {
  padding-bottom: 30px;
}

.pd-btm-40 {
  padding-bottom: 40px;
}

.pd-btm-50 {
  padding-bottom: 50px;
}

.pd-btm-60 {
  padding-bottom: 60px;
}

.pd-btm-70 {
  padding-bottom: 70px;
}

.pd-btm-80 {
  padding-bottom: 80px;
}

.pd-btm-90 {
  padding-bottom: 90px;
}

.pd-btm-100 {
  padding-bottom: 100px;
}

/* Cutom Margin */
.mg-top-10 {
  margin-top: 10px;
}

.mg-top-20 {
  margin-top: 20px !important;
}

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

.mg-top-30 {
  margin-top: 30px;
}

.mg-top-40 {
  margin-top: 40px !important;
}

.mg-top-42 {
  margin-top: 42px !important;
}

.mg-top-46 {
  margin-top: 46px !important;
}

.mg-top-50 {
  margin-top: 50px;
}

.mg-top-60 {
  margin-top: 60px;
}

.mg-top-70 {
  margin-top: 70px;
}

.mg-top-80 {
  margin-top: 80px;
}

.mg-btm-10 {
  margin-bottom: 10px;
}

.mg-btm-15 {
  margin-bottom: 15px;
}

.mg-btm-20 {
  margin-bottom: 20px;
}

.mg-btm-25 {
  margin-bottom: 25px;
}

.mg-btm-30 {
  margin-bottom: 30px;
}

.mg-btm-35 {
  margin-bottom: 35px;
}

.mg-btm-40 {
  margin-bottom: 40px;
}

.mg-btm-50 {
  margin-bottom: 50px;
}

.mg-btm-80 {
  margin-bottom: 80px;
}

.mg-btm-120 {
  margin-bottom: 120px;
}

/* Colors  */
.bg-primary-color {
  background: var(--ed-primary-color) !important;
}

/* Display Flex End Between  */
.d-flex-end-between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.d-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Order Class */
@media only screen and (max-width: 991.99px) {
  .order-class {
    order: -1;
  }
}

/* Background Image */
.background-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Section Gap */
.section-gap {
  padding: 60px 0px;
}

.section-gap-1 {
  padding: 60px 0px;
}

.outcomes-sec .right-sec {
  padding-left: 30px;
}

.modules-sec .module-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.modules-sec .module-box .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
  padding: 15px;
}

.modules-sec .module-box h6 {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 18px;
}

.events-sec .event-box {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  padding-top: 15px;
}

.events-sec .event-box .event-date {
  width: 100px;
  position: relative;
}

.events-sec .event-box .event-date .date {
  width: 100px;
  line-height: 50px;
  background-color: #543ee7;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.events-sec .event-box .event-date .date-line {
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 10px;
  border-left: 1px dashed rgba(0, 0, 0, 0.3);
}

.events-sec .event-box .event-info {
  width: calc(100% - 115px);
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
  margin-left: 15px;
}

.events-sec .event-box .accordion {
  margin-top: 0;
  font-size: 20px;
  font-family: var(--ed-font-family-2);
  color: var(--ed-title-color);
  font-weight: 600;
  line-height: 130%;
  cursor: pointer;
  padding: 12px 20px 12px 20px;
}

.events-sec .event-box .accordion span {
  display: inline-block;
  background: #ffcd20;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1;
}

.events-sec .event-box .panel {
  padding: 0 20px 10px 20px;
  margin-top: 0;
  background-color: transparent;
}

.panel ul li {
  margin: 0 0 10px 0;
  position: relative;
  /*padding-left: 40px;*/
  display:block;
}

/*.panel ul li:before {*/
/*  position: absolute;*/
/*  font-family: uicons-regular-rounded !important;*/

/*      content:"\f19c"; */


/*  left: 0;*/
/*  background: #f0eefd;*/
/*  color: #543ee8;*/
/*  width: 30px;*/
/*  height: 30px;*/
/*  text-align: center;*/
/*  line-height: 30px;*/
/*  border-radius: 50%;*/
/*  top: -5px;*/
/*}*/

.events-sec .event-box.imp .event-date .date {
  background-color: #df4343;
}

@media only screen and (max-width: 991.99px) {
  .section-gap {
    padding: 60px 0px;
  }
}

/* Section BG Color */
.section-bg-color-1 {
  background: #faf9f6;
}

.bg-color-1 {
  background: #ebf5eb !important;
}

.section-bg__img {
  position: absolute;
  z-index: -1;
  top: 238px;
  left: 0;
  width: 100%;
  height: 1200px;
}

.section-bg__img.style-2 {
  top: 0px;
}

.section-bg__img img {
  width: 100%;
  height: 1200px;
  object-fit: cover;
}

/* Section Head */
.ed-section-head {
  margin-bottom: 0px;
  /* text-align: justify !important;
  text-justify: auto !important; */
}

.ed-section-head__sm-title {
  display: inline-block;
  margin-bottom: 5px;
  color: #543ee7;
  font-weight: 600;
  letter-spacing: -0.01rem;
}

.ed-section-head__title {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.36px;
  margin-bottom: 15px;
}

.ed-section-head__title span {
  color: var(--ed-primary-color);
}

.ed-section-bottom-btn {
  margin-top: 65px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .ed-section-bottom-btn {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 991.99px) {
  .ed-section-head__sm-title {
    margin-bottom: 12px;
  }

  .ed-section-head__title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 16px;
  }

  .ed-section-head__title br {
    display: none;
  }

  .ed-section-head.d-flex-between {
    display: block;
  }

  .ed-section-head__btn {
    margin-top: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ed-section-head__title {
    font-size: 38px;
    line-height: 50px;
    margin-bottom: 16px;
  }
}

/* Animation  */
.updown-ani {
  -webkit-animation-name: UpDown;
  animation-name: UpDown;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.rotate-ani {
  animation-name: Rotate;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@keyframes UpDown {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@keyframes Rotate {
  from {
    -webkit-transform: rotate(-0deg);
    transform: rotate(-0deg);
  }

  to {
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
  }
}

@-webkit-keyframes UpDown {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(-0deg);
    transform: rotate(-0deg);
  }

  to {
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
  }
}

/* Cursor CSS */
#ed-mouse {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  pointer-events: none;
  z-index: 999999;
  transition: opacity 0.2s ease-in-out 0.5s;
}

#ed-mouse #cursor-ball {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-radius: 50%;
  pointer-events: none;
  box-sizing: border-box;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
}

#ed-mouse #cursor-ball:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ed-primary-color);
  transform: translate(-50%);
}

@media (max-width: 1024px) {
  #ed-mouse {
    display: none;
  }
}

/* Preloader CSS */
.ed-preloader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9000;
  background: var(--ed-white-color);
}

.ed-preloader .animation-preloader {
  z-index: 1000;
  position: relative;
}

.ed-preloader .animation-preloader::after {
  position: absolute;
  left: 50%;
  top: 30px;
  content: "";
  height: 50px;
  width: 50px;
  background: url(../images/favicon.svg);
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.ed-preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid #543ee81a;
  border-top-color: var(--ed-primary-color);
  height: 110px;
  margin: 0 auto 30px auto;
  width: 110px;
}

.ed-preloader.secondary .animation-preloader .spinner {
  border-top-color: var(--ed-primary-color);
}

.ed-preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.ed-preloader .loader .row {
  height: 100%;
}

.ed-preloader .loader .loader-section {
  padding: 0px;
}

.ed-preloader .loader .loader-section .bg {
  background-color: var(--ed-white-color);
  height: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.ed-preloader.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.ed-preloader.loaded .loader-section .bg {
  width: 0;
  -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  -o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

/* Hobble Effect CSS */
.ed-hover-layer,
.ed-hover-layer-1,
.ed-hover-layer-2,
.ed-hover-layer-4 {
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: perspective(600px) translate3d(0, 0, 0);
  transform: perspective(600px) translate3d(0, 0, 0);
}

/* Back To Top CSS */
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px #543ee821;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "\f181";
  font-family: uicons-regular-rounded !important;
  text-align: center;
  line-height: 46px;
  font-size: 26px;
  color: var(--ed-primary-color);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--ed-primary-color);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

@media only screen and (min-width: 768px) and (max-width: 991.99px) {
  .progress-wrap {
    right: 5%;
  }
}

@media only screen and (max-width: 767px) {
  .progress-wrap {
    right: 5%;
  }
}

/* Nice Select CSS */
.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: var(--ed-primary-color) !important;
  box-shadow: none;
}

.nice-select:hover {
  border-color: var(--ed-border-color);
}

.nice-select::after {
  margin-top: -5px;
}

.nice-select .list {
  width: 100%;
  transform: none !important;
  max-height: 320px;
  overflow-y: scroll;
  border: 1px solid var(--ed-border-color);
  box-shadow: none;
}

.nice-select .option:hover {
  background-color: var(--ed-primary-color);
}

.nice-select .option {
  line-height: 42px;
  min-height: 42px;
  padding-left: 16px;
  padding-right: 16px;
}

.nice-select::after {
  right: 18px;
}

.nice-select .option.selected {
  font-weight: 600;
}

.nice-select .option.selected {
  background: var(--ed-primary-color);
  color: var(--ed-white-color);
}

.nice-select .list:hover .option:not(:hover) {
  color: var(--ed-paragraph-color);
}

.nice-select .list::-webkit-scrollbar {
  width: 4px !important;
  height: 4px !important;
  display: block;
}

.nice-select .list::-moz-scrollbar {
  width: 4px !important;
  height: 4px !important;
  display: block;
}

.nice-select .list::-ms-scrollbar {
  width: 4px !important;
  height: 4px !important;
}

.list-group-item+.list-group-item.active {
  margin-top: 0;
}

/* Theme Button */
.ed-btn {
  display: inline-block;
  padding: 16px 67px 16px 30px;
  background: var(--ed-primary-color);
  color: var(--ed-white-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 52px;
  position: relative;
  height: 52px;
  transition: all 0.4s ease;
}

.ed-btn i {
  position: absolute;
  width: 44px;
  height: 44px;
  line-height: 45px;
  background: var(--ed-white-color);
  border-radius: 100%;
  color: var(--ed-primary-color);
  text-align: center;
  font-size: 20px;
  top: 4px;
  right: 5px;
  transition: all 0.4s ease;
}

.ed-btn:hover {
  background: var(--ed-secondary-color);
  color: var(--ed-white-color);
}

@media only screen and (max-width: 767px) {
  .ed-btn {
    font-size: 14px;
    line-height: 17px;
    height: 48px;
  }

  .ed-btn i {
    width: 40px;
    height: 40px;
    line-height: 47px;
  }
}

.outcomes-sec {
  margin-top: 0px;
}

.modal form .nice-select {
  margin-bottom: 0 !important;
  width: 100%;
  padding: 10px 15px;
  height: 50px;
}

.logos-area {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-left: 30px;
}

.logos-area img {
  max-height: 70px;
  padding: 5px 0;
}

.logos-area img.redhat {
  max-height: 45px;
}

.logo-abs-right {
  background: #fff;
  position: absolute;
  bottom: 20px;
  right: 40px;
  border-radius: 10px;
  width: 150px;
  height: auto;
}

.payment-info-block {
  background: #ffce43;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
}

.payment-info-block p {
  color: #222222;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 10px;
}

.payment-bank-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.payment-bank-info span {
  font-size: 14px;
  width: 32%;
}

/* .payment-bank-info span:nth-child(1) {
  width: 20%;
}

.payment-bank-info span:nth-child(2) {
  width: 25%;
}

.payment-bank-info span:nth-child(3) {
  width: 20%;
}

.payment-bank-info span:nth-child(4) {
  width: 20%;
}

.payment-bank-info span:nth-child(5) {
  width: 15%;
} */

.payment-bank-info span strong {
  font-weight: 600;
  color: #323232;
}

.payment-bank-info span>div {
  background: #c18c07;
  border-radius: 3px;
  padding-left: 6px;
  color: #fff;
}

.form-group {
  position: relative;
}

.abs-label {
  position: absolute;
  top: 2px;
  left: 20px;
  font-size: 14px;
  background: #fff;
  padding: 10px;
  /* width: 100%; */
  z-index: 1;
}

.fileUpload {
  cursor: pointer;
  padding-left: 0 !important;
}

.fileUpload::-webkit-file-upload-button {
  visibility: hidden;
}

.fileUpload::before {
  content: "Upload Proof of Payment";
  background: #e4e9f2;
  padding: 15px;
  font-weight: 500;
}

.adv-para {
  border-radius: 10px;
  margin-bottom: 20px;
  color: #000000;
  line-height: 22px;
  background: #ffce43;
  padding: 15px;
  text-align: center;
  border: 2px solid #fff;
  box-shadow: 0 0 10px 0 #2b1593;
}

.adv-para p {
  color: inherit;
  line-height: 22px;
}

.adv-para a {
  color: inherit;
  font-weight: 700;
  font-size: 20px;
}

.highlight-block {
  background: #5537e1;
  padding: 12px 10px 10px 10px;
  margin-bottom: 20px;
  border-radius: 6px;
  color: #fff;
  text-align: center;
}

.highlight-block p {
  color: inherit;
}

.highlight-block p a {
  color: inherit;
  font-weight: 700;
  font-size: 20px;
}

.highlight-block p span {
  background: #09a959;
  line-height: 0px;
  padding: 10px 15px 8px;
  border-radius: 24px;
}

.highlight-block p span i {
  background: #fff;
  color: #00aa61;
  width: 25px;
  display: inline-block;
  height: 25px;
  text-align: center;
  line-height: 29px;
  border-radius: 50%;
}

.adv-para span {
  background: #09a959;
  line-height: 0px;
  padding: 10px 10px 10px;
  border-radius: 24px;
  color: #fff;
}

.adv-para span i {
  background: #fff;
  color: #00aa61;
  width: 25px;
  display: inline-block;
  height: 25px;
  text-align: center;
  line-height: 29px;
  border-radius: 50%;
}

.text-justify {
  text-align: justify;
}

.mt-15 {
  margin-top: 15px;
}

.mmt-15 {
  margin-top: -15px;
}

.mmt-25 {
  margin-top: -25px;
}

.course-banner {
  margin-top: 80px;
  background: var(--ed-primary-color);
  position: relative;
  padding: 45px 0 90px 0;
}

.course-banner h3 {
  color: #fff;
  margin-bottom: 0;
  letter-spacing: -0.04rem;
  font-size: 36px;
  line-height: 44px;
}

.course-banner .ed-course__rattings {
  color: #fff;
}

.course-banner p {
  color: #fff;
  margin: 10px 0 15px 0;
  font-size: 18px;
}

.duration-partner {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 20px;
  font-size: 14px;
}

.duration-partner i {
  position: relative;
  top: 1px;
  color: var(--ed-tertiary-color);
}

.duration-partner .duration {
  margin-right: 30px;
}

.course-banner .ed-btn {
  background: var(--ed-tertiary-color);
  color: #263238;
}

.course-banner .ed-btn i {
  background: var(--ed-secondary-color);
  color: var(--ed-white-color);
}

.course-banner .ed-btn:hover {
  background: var(--ed-white-color);
}

.course-banner .image {
  margin-left: 50px;
}

.course-banner .image img {
  border-radius: 86px 10px 86px 10px;
  border: 5px solid #fff;
}

.course-highlights .highlights-inner {
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
  margin-top: -50px;
  position: relative;
}

.course-highlights .highlights-inner .highlights-box {
  padding: 20px;
  display: flex;
  align-items: center;
}

.course-highlights .highlights-inner .highlights-box .icon {
  width: 50px;
}

.course-highlights .highlights-inner .highlights-box .icon-text {
  padding-left: 15px;
}

.course-highlights .highlights-inner .highlights-box p {
  font-size: 14px;
  line-height: 14px;
}

.course-highlights .highlights-inner .highlights-box h4 {
  margin-bottom: 0;
  font-size: 26px;
  margin-top: 0;
  letter-spacing: -0.03rem;
}

.about-course {
  text-align: center;
}

.about-course .tools-sec {
  margin-top: 30px;
}

.about-course .tools-sec .tools-inner .tools-box {
  width: 20%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: 25px;
}

.about-course .tools-sec .tools-inner .tools-box .tools-box-inner {
  position: relative;
  padding: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
}

.about-course .tools-sec .tools-inner .tools-box .tools-box-inner img {
  max-height: 70px;
}

.curriculum-sec {
  display: flex;
}

.curriculum-sec .curriculum-left {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.curriculum-sec .curriculum-left .curriculum-no {
  height: 40px;
  width: 40px;
  background-color: #df4343;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 22px;
  font-weight: 500;
}

.curriculum-sec .curriculum-left .curriculum-line {
  height: 98%;
  width: 2px;
  background: linear-gradient(180deg,
      rgba(223, 67, 67, 1) 0%,
      rgba(223, 67, 67, 0) 100%);
}

.curriculum-sec .curriculum-right {
  padding-left: 15px;
  padding-bottom: 30px;
}

.curriculum-sec .curriculum-right .curriculum-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.curriculum-sec .curriculum-right .curriculum-list>div {
  background: #fff;
  padding: 10px 15px 10px 10px;
  border-radius: 25px;
  font-weight: 500;
}

.curriculum-sec .curriculum-right .curriculum-list>div i {
  color: #543ee7;
  font-size: 20px;
  vertical-align: middle;
  display: inline-block;
  height: 20px;
  position: relative;
  top: -1px;
}

.why-section .why-inner {
  margin-top: 30px;
  position: relative;
}

.why-section .why-img {
  width: 300px;
  margin: 0 auto;
}

.why-section .why-img img {
  border-radius: 50%;
}

.why-section .why-inner .why-box {
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px;
  position: absolute;
  display: flex;
  align-items: center;
  border-radius: 40px;
  margin-top: 0;
}

.why-section .why-inner .why-box.left {
  flex-direction: row-reverse;
  padding-left: 25px;
}

.why-section .why-inner .why-box.left .icon {
  margin-left: 10px;
}

.why-section .why-inner .why-box.right {
  padding-right: 25px;
}

.why-section .why-inner .why-box.right .icon {
  margin-right: 10px;
}

.why-section .why-inner .why-box .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 12px;
}

.why-section .why-inner .why-box .icon-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03rem;
  color: #333;
  margin-top: 0;
}

.why-section .why-inner .why-box.one {
  top: 0;
  left: 15%;
}

.why-section .why-inner .why-box.two {
  top: 0;
  right: 15%;
}

.why-section .why-inner .why-box.three {
  top: 37%;
  left: 5%;
}

.why-section .why-inner .why-box.four {
  top: 37%;
  right: 8%;
}

.why-section .why-inner .why-box.five {
  bottom: 0;
  left: 15%;
}

.why-section .why-inner .why-box.six {
  bottom: 0;
  right: 15%;
}

.job-assistance-sec .job-assistance {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.job-assistance-sec .job-assistance .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 18px;
}

.job-assistance-sec .job-assistance .icon-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03rem;
  color: #333;
  padding-left: 10px;
  width: calc(100% - 70px);
}

.how-it-works .how-box {
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 30px;
  position: relative;
}

.how-it-works .how-box:before {
  content: "";
  position: absolute;
  width: calc(100% + 26px);
  height: calc(50% + 13px);
  border: 2px solid #df4343;
  left: -13px;
}

.how-it-works .how-box.one:before {
  border-radius: 10px 10px 0 0;
  border-bottom: 0;
  top: -13px;
}

.how-it-works .how-box.two:before {
  border-radius: 0 0 10px 10px;
  border-top: 0;
  bottom: -13px;
}

.how-it-works .how-box.fst:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #df4343;
  border-radius: 10px;
  left: -19px;
  top: 50%;
}

.how-it-works .how-box.lst:after {
  content: "";
  position: absolute;
  right: -22px;
  top: 43%;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #df4343;
}

.how-it-works .how-box .icon {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  margin: 0 auto;
  padding: 15px;
}

.how-it-works .how-box h5 {
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 15px;
  letter-spacing: -0.03rem;
}

.eligibility-section ul li {
  margin: 15px 0;
  color: #333;
  padding-left: 30px;
  position: relative;
  font-weight: 500;
  letter-spacing: -0.03rem;
}

.eligibility-section ul li:before {
  content: "\f34a";
  position: absolute;
  font-family: uicons-solid-straight !important;
  left: 0;
  color: #df4343;
  font-size: 20px;
}

.course-banner.training-banner {
  background: transparent;
  margin: 0;
}

.course-banner.training-banner {
  padding: 50px 0 50px 0;
}

.course-banner.training-banner h3 {
  color: var(--ed-title-color);
}

.course-banner.training-banner .ed-course__rattings ul li span {
  color: #777;
}

.course-banner.training-banner p {
  color: #555;
}

.duration-partner .fee {
  margin-right: 30px;
  background: var(--ed-primary-color);
  color: #fff;
  padding: 8px 5px 8px 15px;
  font-weight: 500;
  border-radius: 5px 0 0 5px;
  font-size: 20px;
  position: relative;
}

.duration-partner .fee:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 19.5px solid transparent;
  border-bottom: 19.5px solid transparent;
  border-left: 19px solid var(--ed-primary-color);
  top: 0;
  right: -19px;
}

.duration-partner .fee-2 {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.duration-partner .fee-2 .price {
  color: var(--ed-primary-color);
  font-size: 34px;
  font-weight: 600;
}

.duration-partner .fee-2 .price b {
  font-size: 25px;
  font-weight: 600;
  position: relative;
  top: -2px;
}

.duration-partner .fee-2 .gst {
  position: relative;
  top: -2px;
}

.course-banner.training-banner .duration-partner {
  color: #777;
  margin-bottom: 0;
}

.course-banner.training-banner .duration-partner i {
  color: var(--ed-primary-color);
}

.why-section .why-section-inner {
  margin-top: -15px;
}

.why-section .why-box {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-top: 25px;
}

.why-section .why-box .icon {
  width: 64px;
  margin: 0 auto;
}

.why-section .why-box .icon-text {
  margin-top: 15px;
}

.why-section .why-box .icon-text h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.course-sec {
  position: relative;
  z-index: 1;
}

.course-sec .ed-faq__accordion-item .accordion-button {
  padding-left: 15px;
}

.course-sec .ed-faq__accordion-body {
  padding: 15px 15px;
}

.course-sec .ed-faq__accordion-body ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.course-sec .ed-faq__accordion-body ul li:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #42ac98;
  border-radius: 50%;
  left: 0;
  top: 7px;
}

.course-sec .ed-faq__accordion-body ul li:not(:last-child) {
  margin-bottom: 5px;
}

.course-sec .ed-faq__accordion-body h5 {
  font-size: 18px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-top: 25px;
}

.course-sec .course-form {
  /*background: #543ee7;*/
  padding: 15px 20px 20px 20px;
  border-radius: 10px;
  position: sticky;
  top: 90px;
}

.course-sec .course-form .course-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.course-sec .course-form h4 {
  color: #fff;
  letter-spacing: -0.05rem;
  font-size: 22px;
  margin-bottom: 0;
}

.course-sec .course-form p {
  color: #fff;
  font-size: 13px;
  line-height: 18px;
}

.course-sec .course-form .form-input {
  margin-bottom: 10px;
}

.course-sec .course-form .form-input .form-control {
  font-size: 14px;
}

.course-sec .course-form .form-input .abs-label {
  position: absolute;
  top: 3px;
  left: 2px;
  font-size: 14px;
  background: #fff;
  padding: 10px;
}

.course-sec .course-form .form-input .nice-select {
  width: 100%;
  margin-bottom: 0;
  height: 46px;
  line-height: 33px;
  color: #666;
  padding-left: 12px;
}

.course-sec .course-form .form-input .nice-select .option {
  line-height: 40px;
  min-height: 40px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 13px;
  letter-spacing: -0.01rem;
}

.course-sec .ed-btn {
  background: var(--ed-tertiary-color);
  color: #263238;
  width: 100%;
  padding: 12px 30px;
  height: 46px;
}

.course-sec .ed-btn:hover {
  background: #e6b400;
}

.placement-section .image {
  margin-right: 30px;
}

.placement-section .image img {
  border-radius: 90px 10px 90px 10px;
}

.placement-section .placement-box {
  display: flex;
  align-items: center;
}

.placement-section .placement-box .icon {
  width: 87px;
  height: 87px;
  border-radius: 50%;
  padding: 20px;
}

.placement-section .placement-box .icon-text {
  padding-left: 15px;
  width: calc(100% - 87px);
}

.placement-section .placement-box .icon-text h5 {
  font-size: 20px;
  margin-bottom: 5px;
}

.placement-section .sep {
  border-bottom: 1px dashed #ccc;
  margin: 20px 0;
}

.training-section {
  background: var(--ed-primary-color);
  position: relative;
}

.training-section .training-box {
  background: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  margin-top: 25px;
  border-radius: 65px;
}

.training-section .training-box .icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 15px;
}

.training-section .training-box .icon-text {
  padding-left: 15px;
  width: calc(100% - 90px);
}

.training-section .training-box .icon-text h5 {
  font-size: 20px;
  margin-bottom: 5px;
}

.prs .logos-area {
  margin-left: 10%;
}

.refresh-captcha {
  position: absolute;
  top: 15px;
}

.contact-section .contact-box {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  margin-top: 25px;
}

.contact-section .contact-box .icon {
  background: #fff;
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 18px;
  margin-bottom: 10px;
}

.contact-section .contact-box .icon-text h5 {
  font-size: 22px;
  margin-bottom: 5px;
}

.google-maps {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.capcode {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.capcode .code-img {
  width: 131px;
  color: #fff;
}

.capcode .code-img img {
  border-radius: 5px;
}

.capcode .code-inp {
  width: calc(100% - 150px);
}

.vision-section {
  background: var(--ed-primary-color);
  text-align: center;
}

.vision-section .vision-inner {
  position: relative;
  padding: 0 100px;
  margin: 0 12%;
}

.vision-section .vision-inner span {
  position: absolute;
}

.vision-section .vision-inner span.left {
  left: 0;
  top: -40px;
}

.vision-section .vision-inner span.right {
  right: 0;
  top: 0px;
}

.vision-section p {
  text-align: center;
  font-size: 24px;
  line-height: 34px;
}

.mission-section .inner {
  position: relative;
}

.mission-section .inner .dot-img {
  position: absolute;
  right: 30px;
  bottom: 0;
}

.mission-section .image img {
  border-radius: 8px 8px 140px 8px;
}

.mission-section ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
}

.mission-section ul li:before {
  position: absolute;
  font-family: uicons-regular-rounded !important;
  content: "\f61a";
  left: 0;
  background: #f0eefd;
  color: #543ee8;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  top: -3px;
}

.ed-auth__modal-form .form-group input.fileUpload {
  position: relative;
  padding-left: 0px !important;
}

.web-count {
  display: flex;
  align-items: center;
  border-radius: 5px 5px 0 0;
  font-size: 16px;
  letter-spacing: -0.03rem;
  margin-top: 25px;
}

.web-count .website-counter {
  margin-left: 5px;
  background: #543ee8;
  color: #fff;
  padding: 7px 8px 6px 8px;
  font-weight: 600;
  border-radius: 5px;
}

.video-sec .video-wrapper {
  background: url(../images/course/ipad.png);
  background-repeat: no-repeat;
  background-size: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 32px 30px;
}

.video-sec .video-wrapper .video-wrapper-inner {
  border-radius: 20px;
  overflow: hidden;
}

.video-sec video {
  width: 100%;
  height: auto;
  transform: scale(1.01);
}

.iit-kharagpur-course {
  margin-top: 80px;
  position: relative;
  background: url(../img/iot/iot-banner.jpg);
  background-size: cover;
  padding: 45px 0;
}

.iit-kharagpur-course:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .3);
}

.iit-kharagpur-course .container {
  position: relative;
}

.iit-kharagpur-course .iit-kharagpur-course-info {
  color: #fff;
  margin-top: -10px;
}

.iit-kharagpur-course .iit-kharagpur-course-info .iit-kharagpur-course-info-box {
  margin-top: 15px;
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 5px;
  background: rgba(0, 0, 0, .3);
}

.iit-kharagpur-course .iit-kharagpur-course-info .iit-kharagpur-course-info-box .toptext {
  font-size: 14px;
}

.iit-kharagpur-course .iit-kharagpur-course-info .iit-kharagpur-course-info-box .bottext {
  font-size: 20px;
  font-weight: 600;
  color: #ffcd20;
}

.iit-kharagpur-course .borchure-form {
  background: #fff;
  padding: 20px;
  margin-left: 0px;
}

.iit-kharagpur-course .borchure-form .form-control {
  border: 1px solid #ccc;
  font-size: 14px;
  height: 45px;
}

.iit-kharagpur-course .borchure-form .nice-select {
  width: 100%;
  margin: 0;
  padding: 9px 12px;
  color: #555;
}

.iit-kharagpur-course .borchure-form h2 {
  font-size: 26px;
}

.iit-kharagpur-course .borchure-form small {
  font-size: 12px;
  line-height: 10px;
}

.iit-kharagpur-course .borchure-form small a {
  color: #543ee8;
  text-decoration: underline;
}

.iit-kharagpur-course .iit-kharagpur-logo {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 130px;
  border-radius: 10px;
  overflow: hidden;
}

.iit-kharagpur-course .course-banner-inner {
  padding: 45px 45px;
  border-radius: 8px;
  position: relative;
}

.iit-kharagpur-course .course-banner-inner .image {
  padding-right: 20px;
}

.iit-kharagpur-course .course-banner-inner .image img {
  border-radius: 15px;
}

.iit-kharagpur-course .ed-section-head .ed-section-head__title {
  font-size: 34px;
  line-height: 44px;
  color: #fff;
}

.iit-kharagpur-course .ed-section-head .ed-section-head__sm-title,
.iit-kharagpur-course .ed-section-head .ed-section-head__title span {
  color: #ffcd20;
}

.iit-kharagpur-course .ed-section-head h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.02rem;
  position: relative;
  padding-left: 30px;
}

.iit-kharagpur-course .ed-section-head h4 i {
  position: absolute;
  left: 0;
  top: 1px;
  color: #fff;
  font-size: 22px;
}

.iit-kharagpur-course .ed-section-head h5 {
  font-size: 18px;
  color: #333;
  font-weight: 400;
  letter-spacing: -0.02rem;
}

.iit-kharagpur-course .ed-section-head .get-enroll-box {
  margin-top: 30px;
}

.iit-kharagpur-course .ed-section-head .get-enroll-box .fee {
  margin-bottom: 25px;
  font-size: 31px;
  color: #ffcd20;
  font-weight: 600;
  letter-spacing: -0.03rem;
}

.upskill-section .upskill-box {
  margin-top: 24px;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.upskill-section .upskill-box .icon {
  width: 100px;
  margin: 0 auto;
}

.upskill-section .upskill-box .icon-text {
  font-size: 18px;
  margin-top: 10px;
  color: #011c1a;
  font-weight: 600;
  letter-spacing: -0.03rem;
  line-height: 24px;
}

.iot-features-section .iot-features-box {
  margin-top: 15px;
  display: flex;
  align-items: center;
}

.iot-features-section .iot-features-box span {
  background: #fff;
  padding: 10px 20px 10px 10px;
  display: flex;
  align-items: center;
  border-radius: 65px;
}

.iot-features-section .iot-features-box .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  padding: 10px;
  background: #543ee7 !important;
  background: #555 !important;
}

.iot-features-section .iot-features-box .icon-text {
  font-size: 20px;
  font-weight: 400;
  color: #011c1a;
  letter-spacing: -0.03rem;
}

.iot-features-section .image img {
  border-radius: 25px;
}

/* .instructor-bio-section {}

.instructor-bio-section .instructor-bio-box {
  display: flex;
  align-items: start;
} */

.instructor-bio-section .instructor-bio-box .instructor-img {
  width: 330px;
  background: #f0eefd;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  float: left;
  margin-right: 40px;
  margin-bottom: 15px;
}

.instructor-bio-section .instructor-bio-box .instructor-img img {
  border-radius: 5px;
}

.instructor-bio-section .instructor-bio-box .instructor-img h5 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 0;
}

.instructor-bio-section .instructor-bio-box .instructor-img p {
  font-size: 15px;
}

.moreless-button,
.moreless-button:hover,
.moreless-button:focus,
.moreless-button:active {
  color: #543ee7;
  font-weight: 600;
  text-decoration: underline;
}

strong {
  font-weight: 600;
}

.instructor-bio-section .instructor-bio-box .instructor-bio-info h5 {
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 0;
}

.moretext {
  display: none;
}

.course-sec.iit-kharagpur-course:before {
  display: none;
}

.course-sec.iit-kharagpur-course .ed-section-head .ed-section-head__sm-title {
  color: #543ee7;
}

.course-sec.iit-kharagpur-course .ed-section-head .ed-section-head__title {
  color: var(--ed-title-color);
}

.course-sec.iit-kharagpur-course .ed-faq__accordion-item .accordion-button {
  font-size: 20px;
}

.course-sec.iit-kharagpur-course .ed-faq__accordion-body ol {
  padding: 0;
}

.course-sec.iit-kharagpur-course .ed-faq__accordion-body ol li {
  position: relative;
  /*padding-left: 25px;*/
  display:block;
}

.course-sec.iit-kharagpur-course .ed-faq__accordion-body ol li:not(:last-child) {
  margin-bottom: 12px;
}

/*.course-sec.iit-kharagpur-course .ed-faq__accordion-body ol li:before {*/
/*  position: absolute;*/
/*  content: "\f348";*/
/*  color: #42ac98;*/
/*  left: 0;*/
/*  top: 0px;*/
/*  font-family: uicons-regular-straight !important;*/
/*  font-style: normal;*/
/*  font-size: 18px;*/
/*}*/

.iit-mandi-cta {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.iit-card {
  border: 1px solid #fff;
  height: 100%;
}

.iit-card:before {
  content: '';
  /* background: rgb(209 209 209 / 31%); */
  background: linear-gradient(45deg, #61ba84, #fff2c7, #cbffc0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  z-index: 0;
  border-radius: 0 0 30px 30px;
}

.iit-kharagpur-cta {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.cta-image {
  display: flex;
  background: #fff;
}

.cta-image .cta-left {
  width: 60%;
  position: relative;
}

.cta-image .cta-left img {
  object-fit: cover;
  height: 263px;
  width: 100%;
  border-radius: 0 150px 150px 0;
}

.cta-image .cta-right {
  width: 40%;
  padding: 15px;
  position: relative;
}

.cta-image .cta-right .cta-right-title {
  font-weight: 600;
  color: #333;
  letter-spacing: -0.03rem;
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  line-height: 15px;
  position: relative;
  margin-left: -44px;
}

.cta-image .cta-right .logo-right {
  width: 180px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
}

.cta-image .cta-right .logo-right.itk {
  width: 144px;
}

.cta-info {
  padding: 20px 12px;
  position: relative;
}

.cta-info .ed-section-head__cta-title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: -0.03rem;
}

.iit-mandi-cta .cta-info .ed-section-head__cta-title span {
  color: var(--ed-primary-color);
  font-weight: 600;
}

.iit-kharagpur-cta .cta-info .ed-section-head__cta-title span {
  color: #df4343;
  font-weight: 600;
}

.terms-section h3 {
  font-size: 30px;
}

.terms-section h4 {
  font-size: 24px;
}

.reg-txt {
  display: block;
  font-size: 14px;
  padding-top: 15px;
  font-weight: 500;
  color: #fff;
}

.programme-certificate-sec small {
  background: #f5f5f5;
  display: block;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
}

/*============================================================================================
	End Theme Reset
==============================================================================================*/

.ed-header__menu button.btn.register-btn.ed-btn {
  background: var(--ed-primary-color);
  font-size: 15px;
  border-radius: 20px;
  padding: 0px 15px;
  height: 34px;
}

.pay-online-button {
  position: fixed;
  bottom: 10px;
  left: 15px;
  display: none;
}

.pay-online-button .btn {
  background: #df4343;
  font-weight: 600;
  color: #fff;
}

input[type="date"] {
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
}

.series-sec .series-box {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.series-sec .series-box .series-info {
  padding: 20px 25px;
}

.series-sec .series-box .series-info h4 {
  font-size: 23px;
  color: #543EE8;
  margin-bottom: 2px;
}

.series-sec .series-box .series-info h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

.series-sec .series-box .series-info p {
  margin-bottom: 15px;
}

.series-sec .series-box.list a {
  display: flex;
  align-items: center;
}

.series-sec .series-box.list a .image {
  width: 200px;
}

.series-sec .series-box.list a .image img {
  object-fit: cover;
  height: 207px;
}

.series-sec .series-box.list a .series-info {
  width: calc(100% - 200px);
  padding-left: 20px;
}

.series-sec .series-box.list a .series-info .date span {
  background: var(--ed-tertiary-color);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 3px;
}


.series-sec-2 .ed-btn {
  background: var(--ed-tertiary-color);
  color: #263238;
}

.series-sec-2 .ed-btn i {
  background: var(--ed-secondary-color);
  color: var(--ed-white-color);
}

.series-sec-2 .ed-btn:hover {
  background: var(--ed-primary-color);
  color: var(--ed-white-color);
}

.series-sec-2 .ed-btn:hover i {
  background: var(--ed-white-color);
  color: var(--ed-primary-color);
}

.course-banner.workshop-banner {
  padding: 55px 0;
  margin: 0;
}

.course-banner.workshop-banner .image {
  margin-left: 0px;
  margin-right: 20px;
}

.course-banner.workshop-banner h4 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 0;
  margin-top: 10px;
}

.course-banner.workshop-banner .date span {
  margin: 5px 0;
  background: var(--ed-tertiary-color);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
}

.course-banner.workshop-banner .expect-list {
  margin-bottom: 20px;
}

.course-banner.workshop-banner .expect-list li {
  color: #fff;
  font-size: 18px;
  margin-top: 10px;
  position: relative;
  padding-left: 30px;
}

.course-banner.workshop-banner .expect-list li .icon {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 20px;
}

.payment-sec .payment-timer {
  position: sticky;
  top: 160px;
}

.payment-sec .payment-timer .book {
  margin: 5px 0 15px 0;
  color: #DF4343;
  font-weight: 600;
  letter-spacing: -0.01rem;
  font-size: 18px;
  background: #fceeee;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
}

.payment-sec .payment-timer .book span {
  text-decoration: line-through;
}

.payment-sec .payment-timer .ed-section-head__text {
  font-size: 18px;
  line-height: 30px;
}

.payment-sec .payment-timer .ed-section-head__text span {
  color: #543ee7;
  font-weight: 600;
  font-size: 24px;
}

.payment-sec .payment-timer .countdown-timer {
  margin-top: 30px;
}

.payment-sec .payment-timer .countdown-timer #clockdiv {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.payment-sec .payment-timer .countdown-timer .count-box {
  width: 23%;
  text-align: center;
  padding: 20px 20px;
  border-radius: 10px;
  background: #42AC98;
  color: #fff;
}

.payment-sec .payment-timer .countdown-timer .count-box span {
  font-size: 60px;
  display: block;
  font-weight: 600;
  line-height: 60px;
}

.payment-sec .payment-form {
  background: #f0eefd;
  padding: 20px;
  border-radius: 15px;
}

.payment-sec .payment-form .form-control {
  font-size: 15px;
}

.payment-sec .payment-form .nice-select {
  float: none;
  height: 47.83px;
  line-height: 35px;
  color: #555;
  padding-left: 15px;
}

.payment-sec .payment-form .price {
  font-weight: 600;
  font-size: 20px;
  margin-top: 5px;
  color: #543ee7;
}

.payment-sec .payment-form table {
  margin-top: 20px;
  font-size: 15px;
}

.payment-sec .payment-form table tr th {
  font-weight: 600;
  color: #333;
}

.payment-sec .payment-form table tr td {
  color: #555;
}

main .btn {
  font-weight: 600;
  padding: 12px 25px;
  border: 0;
}

.btn-primary {
  background: #543ee7;
  color: #fff !important;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background: #371ce3;
}

.btn-secondary {
  background: #ffcd20;
  color: #011c1a !important;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
  background: #ffc800;
  color: #011c1a;
}

a.anchor {
  display: block;
  position: relative;
  top: -145px;
  visibility: hidden;
}

.workshop-cc .workshop-links {
  margin-top: 25px;
}

.workshop-cc .workshop-links .btn-primary {
  margin-right: 10px;
}

.workshop-cc .image {
  border-radius: 15px;
  margin-right: 15px;
  overflow: hidden;
}

.journey-sec .journey-box {
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  position: relative;
}

.journey-sec .journey-box .icon-text h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.journey-sec .journey-box.one:before,
.journey-sec .journey-box.two:before,
.journey-sec .journey-box.one:after,
.journey-sec .journey-box.two:after {
  position: absolute;
  left: 0;
  display: none;
}

.journey-sec .journey-box.one:before,
.journey-sec .journey-box.two:before {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: -40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  z-index: 1;
}

.journey-sec .journey-box.one:before {
  content: "1";
  background: #42AC98;
}

.journey-sec .journey-box.two:before {
  content: "2";
  background: #DF4343;
}

.journey-sec .journey-box.one:after,
.journey-sec .journey-box.two:after {
  content: "";
  width: 100%;
  height: 1px;
  top: -20px;
  left: 40px;
}

.journey-sec .journey-box.one:after {
  background: #42AC98;
}

.journey-sec .journey-box.two:after {
  background: #DF4343;
}

.journey-sec .journey-box .icon {
  width: 64px;
  margin-bottom: 15px;
}

.programme-certificate-sec .training-box {
  background: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  margin-top: 15px;
  border-radius: 65px;
}

.programme-certificate-sec .training-box .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 15px;
}

.programme-certificate-sec .training-box .icon-text {
  padding-left: 15px;
  width: calc(100% - 60px);
}

.programme-certificate-sec .training-box .icon-text p {
  font-size: 18px;
  font-weight: 500;
}

.programme-certificate-sec .certificate-img-work {
  border-radius: 15px;
  overflow: hidden;
}

.ed-btn.closed-btn {
  padding: 16px 25px;
  background: #f74848;
  color: #fff;
  cursor: not-allowed;
}

a.not-allowed {
  cursor: not-allowed !important;
}

a.not-allowed .series-info {
  text-align: center;
}

.ed-btn.closed-btn:hover {
  background: #f74848;
}

.stick-logo {
  max-width: 200px;
  position: absolute;
  bottom: 10px;
  right: 120px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
}

.pgdm-sec .inner {
  background: var(--ed-primary-color);
  border-radius: 8px;
  overflow: hidden;
  padding: 30px 0 0 50px;
  position: relative;
}

.pgdm-sec .pgdm-img {
  position: relative;
  z-index: 2;
  text-align: center;
}

.pgdm-sec .pgdm-img:before {
  position: absolute;
  content: "";
  width: 536px;
  height: 537px;
  border-radius: 537px;
  background: linear-gradient(180deg, #fff 0%, #d7e1d8 100%);
  right: -40px;
  bottom: -148px;
  z-index: -1;
}

.pgdm-sec .pgdm-logos {
  display: flex;
  align-items: center;
}

.pgdm-sec .pgdm-logos .aima {
  width: 190px;
  margin-right: 30px;
}

.pgdm-sec .pgdm-logos .aicte {
  width: 80px;
}

.pgdm-sec .pgdm-title {
  margin-top: 20px;
}

.pgdm-sec .pgdm-title .mbagn {
  display: flex;
  align-items: center;
}

.pgdm-sec .pgdm-title h3 {
  color: #fff;
  font-size: 40px;
  line-height: 1;
  font-weight: 200;
  letter-spacing: -.03rem;
  margin-bottom: 5px;
}

.pgdm-sec .pgdm-title h3 span {
  color: #ffcd20;
  font-weight: 700;
}

.pgdm-sec .pgdm-title .go-for {
  margin-left: 15px;
  font-size: 22px;
}

.pgdm-sec .pgdm-title .go-for span {
  display: inline-block;
  padding: 6px 15px;
  background: #fff;
  border-radius: 5px;
  color: #543ee8;
  position: relative;
}

.pgdm-sec .pgdm-title h2 {
  color: #fff;
  font-size: 42px;
  line-height: 1;
  font-weight: 200;
  letter-spacing: -.03rem;
  margin: 0;
}

.pgdm-sec .pgdm-title h2 span {
  color: #ffcd20;
  font-weight: 700;
}

.pgdm-sec .pgdm-title p {
  color: #fff;
  margin: 15px 0 0 0;
  font-size: 18px;
}

.pgdm-sec .pgdm-title ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 15px -30px 15px 0;
}

.pgdm-sec .pgdm-title ul li {
  color: #fff;
  width: 49%;
  margin: 5px 0;
  font-weight: 500;
  border: 1px solid #fff;
  padding: 5px 8px;
  border-radius: 5px;
}

.pgdm-sec .pgdm-title ul li i {
  position: relative;
  top: 2px;
  color: #ffcd20;
}

.pgdm-sec .ed-btn {
  background: var(--ed-tertiary-color);
  color: #263238;
}

.pgdm-sec .ed-btn i {
  background: var(--ed-secondary-color);
  color: var(--ed-white-color);
}

.pgdm-sec .ed-btn:hover {
  background: var(--ed-white-color);
}

.iit-kharagpur-course.pgdm {
  background: url(../img/pgdm/pgdm-course-banner.jpg);
  background-size: cover;
}

.iit-kharagpur-course.pgdm:before {
  background: rgba(0, 0, 0, 0.1);
}

.iit-kharagpur-course.pgdm .ed-section-head.iitks .pgdm-logos {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.iit-kharagpur-course.pgdm .ed-section-head.iitks .pgdm-logos .aima {
  width: 170px;
  margin-right: 30px;
}

.iit-kharagpur-course.pgdm .ed-section-head.iitks .pgdm-logos .aicte {
  width: 70px;
}

.iit-kharagpur-course.pgdm .ed-section-head p {
  color: #fff;
  margin: -5px 0 10px 0;
}

.iit-kharagpur-course.pgdm .borchure-form {
  border-radius: 10px;
}

.iit-kharagpur-course.pgdm .iit-kharagpur-course-info .iit-kharagpur-course-info-box {
  background: rgba(0, 0, 0, 0.6);
}

.outcomes-sec.pgdm .outcomes-banner img {
  border-radius: 15px;
}

.upskill-section.pgdm .upskill-box .icon {
  width: 70px;
}

.course-sec.pdgm ul li {
  background: #fff;
  padding: 15px 15px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.course-sec.pdgm ul li:not(:last-child) {
  margin-bottom: 15px;
}

.course-sec.pdgm ul li .num {
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.course-sec.pdgm ul li .num-info {
  width: calc(100% - 64px);
}

.course-sec.pdgm ul li h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03rem;
  color: #333;
  margin-bottom: 5px;
}

.ed-testimonial.pgdm .ed-testimonial__main-img {
  text-align: left;
}

.ed-testimonial.pgdm .ed-testimonial__main-img {
  height: 370px;
}

.pgdm-specialization .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.pgdm-specialization .specialization-box {
  background: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  margin-top: 0;
  border-radius: 65px;
}

.pgdm-specialization .specialization-box .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 12px;
  background: #fff;
}

.pgdm-specialization .specialization-box .icon-text {
  padding-left: 10px;
  width: calc(100% - 60px);
  padding-right: 10px;
}

.pgdm-specialization .specialization-box .icon-text p {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.youtube-thumb {
  text-align: center;
}

.youtube-thumb img {
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 2px solid #fff;
}

.logos-section {
  padding-top: 20px;
}

.logos-section .inner {
  position: relative;
  margin-top: -100px;
  z-index: 3;
}

.logos-section .owl-carousel .owl-stage-outer {
  padding: 20px;
  margin: -20px;
}

.logos-section .logo-box {
  padding: 20px;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.3) 0px 0px 10px;
  border-radius: 10px;
}

.series-box {
  margin-bottom: 24px;
}

#past_workshop {
  position: relative;
}

#past_workshop .owl-next,
#past_workshop .owl-prev {
  width: 40px;
  height: 40px;
  background: rgb(85 55 225 / 41%);
  color: #fff;
  font-size: 40px;
  border-radius: 50%;
  line-height: 1;
  font-weight: 100;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s all ease-in-out;
}

#past_workshop .owl-next {
  right: -30px;
}

#past_workshop .owl-prev {
  left: -30px;
}

#past_workshop .owl-next:hover,
#past_workshop .owl-prev:hover {
  background: #5537e1;
}

#past_workshop .owl-next span,
#past_workshop .owl-prev span {
  margin-top: -2px;
  display: block;
}

.news_box {
  position: relative;
  padding: 15px;
  border-radius: 5px;
  transition: 0.5s all ease-in-out;
}

.news_box .news-img {
  width: 100%;
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
}

.news_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all ease-in-out;
}

.news_info {
  margin-top: 10px;
}

.news_info h3 {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.news_info p {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.5;
}

.news_info span {
  color: #543ee8;
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  margin-top: 6px;
  display: inline-block;
}

.news_box:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

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

.form-control {
  font-size: 14px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

.ed-auth__modal-form .form-group input.form-control[type=file] {
  padding: 5px 10px;
  line-height: 2.75;
}

.ed-auth__modal-form .form-check {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
}

.ed-auth__modal-form .form-check-input[type=checkbox] {
  width: 18px;
  height: 18px;
  border-radius: 2px !important;
  padding: 0;
  border: 1px solid #999;
  position: relative;
  top: 2px;
}

.ed-auth__modal-form .addon-sec {
  background: #f5f5f5;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 5px;
}

.ed-auth__modal-form .addon-sec .form-check-label {
  line-height: 1.3;
  display: block;
  letter-spacing: -.03rem;
}





@media(max-width: 1024px) {
  .stick-logo {
    right: 10px;
  }
}

@media(max-width: 992px) {
  .stick-logo {
    max-width: 180px;
  }

  #past_workshop .owl-next {
    right: -15px;
  }

  #past_workshop .owl-prev {
    left: -15px;
  }
}

@media(max-width: 991px) {
  .ed-auth__modal-form .form-check {
    margin: 5px 0;
  }
}

@media (max-width: 820px) {
  .stick-logo {
    right: 10%;
    bottom: 85%;
  }

  .news_box {
    padding: 6px;
  }
}

@media (max-width: 736px) {
  .news_box {
    margin-bottom: 15px;
  }

  .news_box .news-img {
    height: auto;
  }
}

@media (max-width: 667px) {
  .stick-logo {
    right: 5%;
    bottom: 80%;
  }

  #past_workshop .owl-next,
  #past_workshop .owl-prev {
    top: 100%;
  }

  #past_workshop .owl-next {
    right: 40%;
  }

  #past_workshop .owl-prev {
    left: 40%;
  }
}

@media (max-width: 568px) {
  .stick-logo {
    bottom: 75%;
    max-width: 160px
  }

  .series-info {
    text-align: center;
  }

  .series-sec .series-box .series-info h4 {
    font-size: 20px;
  }

  .series-sec .series-box .series-info h5 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .stick-logo {
    bottom: 78%;
  }
}

@media (max-width: 414px) {
  .stick-logo {
    bottom: 3%;
    right: 2%;
    transform: translateX(-50%);
    max-width: 200px;
  }

  .workshop-top-section {
    padding: 55px 0 130px !important;
  }
}

@media (max-width: 375px) {
  .stick-logo {
    bottom: 2%;
    right: -8%;
  }
}


.conditions {
  padding-top: 0;
}

.conditions small {
  font-style: italic;
  color: #ffc600;
}

.form-checklbl {
  flex-wrap: wrap;
}

.form-checklbl .fl {
  width: 100%;
  padding-left: 28px;
  margin-top: 5px;
  line-height: normal;
}

.pgdm-sec.pgdm-sec-addon {
  .inner {
    padding: 30px
  }

  .pgdm-title h2,
  .pgdm-title h3 {
    font-size: 28px;
  }

  .pgdm-title .go-for {
    font-size: 20px;
  }

  .pgdm-title .go-for span {
    padding: 4px 10px;
  }

  .pgdm-title p {
    font-size: 16px;
  }

  .pgdm-title ul {
    justify-content: start;
    column-gap: 10px;
  }

  .pgdm-title ul li {
    font-size: 14px;
    width: 47%;
  }
}

.upskill-box p.upskill-info {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
}

.training-sec {
  background: url('../img/jodhpur/students-back.jpg');
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 50px !important;
  border-radius: 8px;
  border: 1px solid rgb(255 255 255 / 26%);
  background-size: cover;
  background-position: center;
  position: relative;
}

.training-sec:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 75%);
}

.training-sec .ed-section-head,
.training-sec p {
  position: relative;
}

.training-sec .ed-section-head h3,
.training-sec p {
  color: #fff;
}

.training-sec .ed-section-head__sm-title {
  color: #141414;
  background: #ffcd20;
  padding: 2px 10px;
  border-radius: 4px;
}

.add-card-fill {
  background: #eef7f6;
  padding: 30px;
  border-radius: 8px;
}

.add-main-wrap {
  padding: 15px
}

.add-item,
.address-wrap {
  display: flex;
  align-items: start;
}

.address-wrap.first-wrap {
  margin-bottom: 30px;
  border-bottom: 1px dotted #bfbfbf;
  padding-bottom: 20px;
}

.add-card-fill .add-item:not(:last-child) {
  margin-bottom: 25px;
}

.add-item-icon {
  background: #fff;
  border-radius: 50%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 42px;
}

.add-item-icon img {
  width: 34px;
}

.add-item-info,
.add-info {
  padding-left: 15px;
}

.add-item-info h5 {
  font-size: 20px;
  margin-bottom: 0px;
}

.add-info h5 {
  font-size: 18px;
  margin-bottom: 0px;
}

.kharagpur-data .bottext {
  letter-spacing: -1px;

}

.gallery-category-item {
  position: relative;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.5s all ease-in-out;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.gallery-category-item a {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.gallery-category-item img {
  height: 270px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 0 5px 5px;
}

.gallery-category-item:hover {
  transform: translateY(-5px)
}

.gallery-category-item h3 {
  font-size: 16px;
  padding-top: 10px;
  text-align: center;
  margin-bottom: 5px;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-categories {

  .owl-nav .owl-next,
  .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px !important;
    background: #543ee8 !important;
    color: #fff !important;
    width: 40px;
    height: 50px;
    line-height: 40px;
  }

  .owl-nav .owl-next {
    right: -25px;
  }

  .owl-nav .owl-prev {
    left: -25px;
  }
}

#galleryModal.ed-auth__modal .modal-content {
  padding: 30px 30px 0;
}


#galleryModal.ed-auth__modal .ed-auth__modal-head {
  text-align: start;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
}

#galleryModal.ed-auth__modal .ed-auth__modal-title {
  font-size: 22px;
  line-height: 30px;
}

.lightgallery .lg-item {
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 5px;
}

.lightgallery .lg-item img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.lightgallery-main-wrap .gallery-category-item {
  margin-bottom: 24px;
}

.workshop-number {
  color: #ffce43;
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
}

.myModal .modal-content {
  background: transparent;
  border: none;
}

.modal-slider .item {
  position: relative;
  padding: 14px 0 0 0;
  background: transparent;
  border-radius: 5px;
  overflow: hidden;
}

.modal-img-flash {
  width: 100%;
  height: 470px;
  overflow: hidden;
}

.modal-img-flash a {
  width: 100%;
  height: 100%;
}

.modal-img-flash img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s all ease-in-out;
}

.close-item-btn {
  border-radius: 50%;
  position: absolute;
  top: 0px;
  right: 20px;
  z-index: 1;
  opacity: 1;
  background: #fff;
  border: 2px solid #562fda;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  cursor: pointer;
}

@media(max-width: 920px) {
  .close-item-btn {
    right: 0;
  }
}

.close-item-btn i {
  color: #5537e1;
  font-size: 22px;
}

.modal-slider .owl-dots {
  text-align: center;
  margin-top: 15px;
}

.modal-slider .owl-dots button.owl-dot span {
  position: relative;
  width: 10px;
  height: 10px;
  display: inline-flex;
  background: #c9c9c9;
  border-radius: 50%;
  margin-right: 5px;
}

.modal-slider .owl-dots button.owl-dot.active span {
  background: #ffcd20;
}

.modal-slider .owl-stage .cloned {
  display: none !important;
}

@media(max-width: 1024px) {
  .myModal .modal-dialog {
    max-width: 100%;
  }
}

@media(max-width: 667px) {
  .myModal .modal-img-flash img {
    object-fit: contain;
  }
}

.feedback-slider .owl-stage-outer {
  padding: 20px 30px;
}

.feedback-wrap {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 1px 29px 0px;
  border: 1px solid #ebebeb;
  background: #fff;
  padding: 30px 15px 30px 40px;
  border-radius: 10px;
  position: relative;

}

.feedback-initial {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background: rgb(85 55 224 / 66%);
  color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 40px;
  font-weight: 600;
  border: 1px solid;
}

.feedback-wrap h3 {
  font-size: 16px;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feedback-wrap p {
  font-size: 14px !important;
  line-height: 20px;
  position: relative;
  z-index: 1;
  transition: max-height 0.3s ease;
}

.feedback-toggle {
  display: inline-block;
  margin-top: 0px;
  color: #007bff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: none;
  padding: 0;
  position: absolute;
  bottom: 15px;
  right: 20px;
}

.feedback-wrap .quote-icon {
  position: absolute;
  top: -30px;
  right: 30px;
  font-size: 75px;
  color: #543ee7;
}

.feedback-slider .owl-stage .owl-item:nth-child(even) .feedback-wrap .quote-icon {
  color: #ffce43;
}

.feedback-slider .owl-stage .owl-item:nth-child(even) .feedback-initial {
  background: #ffce43;
  border-color: #f7c446;
}

.feedback-wrap:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 70%;
  background: rgb(85 55 224 / 8%);
  border-radius: 10px 0 10px 0;
}

.feedback-slider .owl-stage .owl-item:nth-child(even) .feedback-wrap:before {
  background: rgb(255 206 67 / 14%);
  ;
}

.feedback-slider .owl-dots {
  text-align: center;
  margin-top: 15px;
}

.feedback-slider .owl-dots button.owl-dot span {
  position: relative;
  width: 10px;
  height: 10px;
  display: inline-flex;
  background: #c9c9c9;
  border-radius: 50%;
  margin-right: 5px;
}

.feedback-slider .owl-dots button.owl-dot.active span {
  background: #ffcd20;
}

@media(max-width: 667px) {
  .feedback-slider .owl-stage-outer {
    padding: 20px 0px;
  }

  .feedback-wrap {
    box-shadow: none;
    border: 1px solid #ebebeb;
  }

  .feedback-initial {
    left: 30px;
  }

  .feedback-wrap p {
    padding-left: 30px;
  }
}

.event-advetisement-section {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 1100;
  transform: translateY(0);
  background: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  place-content: center;
  text-align: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 1px solid #d1d1d1;
  cursor: pointer;
  padding: 5px;
}

.event-advetisement-section img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event-advetisement-section p.alert-text {
  /*animation: blinker 1s linear infinite;*/
  background: #ff0413;
  padding: 0px 4px;
  border-radius: 3px;
  color: #fff;
  font-size: 10px !important;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 10px);
  line-height: 20px;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.event-textWrap {
  padding-left: 15px;
  padding-top: 20px;
  position: relative
}

.myModalTwo .btn-close {
  float: right;
  position: relative;
  z-index: 1;
  background: #543ee8;
  border-radius: 4px;
  color: #fff;
  font-size: 10px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  opacity: 1;
}

.event-textWrap p {
  font-size: 14px;
  line-height: 22px;
}

.event-textWrap h2 {
  font-size: 30px;
  margin-top: 0;
  color: #543ee8;
  font-weight: 700;
  margin-bottom: 5px;
}

.event-textWrap h3 {
  font-size: 18px;
  margin-top: 10px;
  color: #404040;
}

.event-textWrap ul {
  background: #ffcd20;
  padding: 15px 30px;
  border-radius: 5px;
}

.event-textWrap ul li {
  list-style-type: auto;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 4px;
  color: #232323;
}

/* .myModalTwo {
  position: relative;
} */

.myModalTwo .modal-body {
  position: relative;
}

.myModalTwo .modal-body:before {
  content: '';
  background: #543ee8;
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
}

.myModalTwo .modal-body img.event-modal-banner {
  position: relative;
  z-index: 1;
  border: 2px solid #fff;
}

.myModalTwo {
  z-index: 1102;
}

@media (min-width: 1300px) {
  .modal-xl {
    --bs-modal-width: 1340px;
  }
}

.myModalTwo img.arrow-vector {
  position: absolute;
  max-width: 200px;
  bottom: 10px;
  left: -180px;
  z-index: 1;
  transform: rotate(15deg);
}


.myModalTwo.show .modal-dialog {
  transform: none;
  z-index: 9999;
}

@media(max-width: 820px) {
  .event-textWrap h2 {
    font-size: 22px;
  }

  .myModalTwo .modal-body:before {
    background: transparent;
  }

  .myModalTwo img.arrow-vector {
    display: none
  }

  .myModalTwo .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid #fff !important;
  }

  .event-textWrap {
    padding-left: 0;
    padding-top: 0;
    margin-top: 10px;
  }

  /*.myModalTwo.show .modal-dialog {
    height: 100%;
    overflow: scroll;
  }*/

  .element-wrapper.modal-open {
    overflow: auto !important;
    height: 100% !important
  }
}

.mob-event-btn {
  position: relative;
  background: #f74848;
  z-index: 1;
  margin-top: 10px;
  animation: blinkBtn 1.5s infinite;
  animation-fill-mode: both;
}

.mob-event-btn:focus {
  outline: none;
}

@keyframes blinkBtn {
  0% {
    background: #f74848;
    border-color: #f74848
  }

  50% {
    background: #ffc600;
    border-color: #ffc600
  }

  100% {
    background: #f74848;
    border-color: #f74848;
  }
}

@media(min-width: 768px) {
  .mob-event-btn {
    display: none !important;
  }
}

.special-text {
  margin-top: 10px;
  font-style: italic;
  font-size: 15px;
  color: #3d3d3d;
  font-weight: 600;
}

.special-text span {
  color: #543ee8;
}

.watermark-text {
  font-family: "Imperial Script", cursive;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  color: #ffce43;
  text-shadow: #000000 1px 0 10px;
  font-size: 70px;
  -webkit-text-stroke: 1px rgb(255 223 0 / 34%);
  text-align: center;
  line-height: 60px;
}

@media(max-width: 820px) {
  .watermark-text {
    display: none;
  }
}

.hostel-section video,
.hostel-section img {
  border: 1px solid #ffffff;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 4px 20px 0px
}

.hostel-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width: 768px) {
  .hostel-section img {
    width: 100%;
    object-fit: cover;
  }
}

.aima-banner-addon {
  position: relative;
  text-align: center;
}

.aima-banner-addon img {
  position: relative;
}

.aima-addon .ed-btn {
  margin-top: 30px;
  background: var(--ed-tertiary-color);
  color: #263238;
}

.aima-addon .ed-btn i {
  background: var(--ed-secondary-color);
  color: var(--ed-white-color);
}

.aima-addon .ed-btn:hover {
  background: var(--ed-white-color);
}

.iit-kharagpur-course.pgdm.aima-addon {
  background: url(../img/pgdm/aima-banner.jpg);
  background-size: cover;
}

.aima-addon .iitks {
  position: relative;
}


.aima-addon .stretched-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.blink-btn {
  background-color: #ff0000 !important;
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}


@keyframes glowing {
  0% {
    background-color: #b20000;
    box-shadow: 0 0 3px #b20000;
  }

  50% {
    background-color: #ff0000;
    box-shadow: 0 0 20px #ff0000;
  }

  100% {
    background-color: #b20000;
    box-shadow: 0 0 3px #b20000;
  }
}

.aima-brochure {
  background-image: url('../images/section-bg-9.png') !important;
}


.aima-brochure .ed-section-head .ed-section-head__sm-title {
  color: #543ee7;
}


@media(max-width: 768px) {
  .aima-addon {
    padding-bottom: 0;
  }

  .aima-banner-addon img {
    margin-top: 30px;
  }
}


@media (min-width: 1300px) {
  #registerModalWithPayment .modal-xl {
    --bs-modal-width: 1200px;
  }
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.1, 1.1);
    /* Adjust scale for desired zoom level */
  }

  100% {
    transform: scale(1, 1);
  }
}

.zoom-element {
  animation: zoom-in-zoom-out 2s infinite;
  /* 2s duration, infinite loop */
}

.award-sec {
  margin-top: 20px;
}

.award-sec .award-img img {
  object-fit: cover;
  height: 125px;
  border-radius: 10px;
}

.award-sec .owl-dots {
  text-align: center;
  margin-top: 10px;
}

.award-sec .owl-dots button.owl-dot span {
  position: relative;
  width: 10px;
  height: 10px;
  display: inline-flex;
  background: #c9c9c9;
  border-radius: 50%;
  margin-right: 5px;
}

.award-sec .owl-dots button.owl-dot.active span {
  background: #ffcd20;
}


.series-box a .image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


.workshop-banner-design {
  position: relative;
  padding: 50px 0 0 0;
  background-image: url('../img/herobanner/section-bg-9.png');
  overflow: hidden;
}

.workshop-banner-data {
  text-align: center;
}

.workshop-banner-data h3 span {
  color: var(--ed-primary-color);
  font-size: 50px;
}

.patna-logos-wrap {
  position: absolute;
  top: 30%;
  transform: translate(-50%, -50%);
  right: -70px;
}

.workshop-banner-data .date {
  margin: 5px 0;
  background: var(--ed-tertiary-color);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
}

.patna-logos-wrap img {
  max-width: 200px;
}

.w-banner img {
  width: 100%;
}

.workshop-banner-data h5 {
  font-style: italic;
  font-size: 20px;
  font-weight: 600;
}

.workshop-banner-data h5 span {
  color: var(--ed-primary-color);
}

.w-advertise {
  background: url('../images/patna/6.jpg');
  background-position: center !important;
  background-size: cover !important;
  overflow: hidden;
  padding: 50px;
  border-radius: 25px;
  position: relative;
}

.w-advertise h3 {
  position: relative;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 25px;
}

.w-advertise h3 span {
  color: var(--ed-tertiary-color);
}

.w-advertise.w-advertise-sm {
  background: url('../images/patna/d-brochure.jpg');
  padding: 30px;
  height: 240px;
  place-content: center;
}

.w-advertise.w-advertise-sm h3 {
  font-size: 20px;
}

.w-advertise:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 65%);
}

.w-certificate-info {
  position: sticky;
  top: 100px;
}

.img-group {
  position: relative;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgb(83 83 91 / 20%) -7px -7px 0px 0px;
}

.img-group img {
  width: 100%;
}

.img-group h3 {
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
  background-color: var(--ed-primary-color);
  color: #fff;
  width: 100%;
  font-size: 18px;
  text-align: center;
  padding: 5px 0;
}

.img-group-lg.img-group h3 {
  background-color: var(--ed-tertiary-color);
  color: var(--ed-secondary-color);
}

.qr-image-wrap {
  text-align: center;
}

.qr-image-wrap img {
  border: 1px solid #ffffff;
  margin-bottom: 10px;
  box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
}

.qr-image-wrap h3,
.qr-image-wrap h5 {
  background: #5537e0;
  color: #fff;
  padding: 5px 0;
  border-radius: 5px;
  margin-bottom: 10px;
}

.qr-image-wrap h3 {
  font-size: 25px;
}

.qr-image-wrap h5 {
  font-size: 22px;
  font-weight: 400;
}

.qr-content{
  padding-left:15px;
}
.qr-content form {
  background: #f0eefc;
  padding: 20px;
  border-radius: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 1px solid #fff;
}

.qr-content form .form-control{
  font-size: 15px;
}


.custom-file-button input[type=file] {
  margin-left: -2px !important;
      height: 48px;
          line-height: 34px;
}
.custom-file-button input[type=file]::-webkit-file-upload-button {
  display: none;
}
.custom-file-button input[type=file]::file-selector-button {
  display: none;
}
.custom-file-button:hover label {
  background-color: #dde0e3;
  cursor: pointer;
}

@media(max-width: 480px){
  .custom-file-button label{
    font-size: 14px;
    color: var(--ed-paragraph-color);
  }
}

@media(max-width: 820px){
  .qr-content .captcha-div_contact{
    margin: 20px 0;
  }
}

@media (max-width: 415px) {
    .qr-content .refresh-captcha {
        position: absolute;
        top: 12px;
        right: -10px;
    }
    .qr-content .captcha-div_contact input{
      padding: 8px 
    }
}

.guwahati-banner .patna-logos-wrap img{
  max-width: 360px;
}

.guwahati-banner .patna-logos-wrap {
    right: -150px;
}
.top_logos{
  display:flex;
  align-items: center;
  gap:0 15px;
  margin-bottom: 15px;
}
.top_logos img{
  width: auto;
  max-height: 70px;
}