/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@font-face {
  font-family: "area-extended";
  src: url("../fonts/AreaExtended-ExtraBold.woff2") format("woff2"),
    url("../fonts/AreaExtended-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Color Palette */
  --white: #fff;
  --black: #000;
  --color-primary: #1e0157;
  --color-secondary: #009f98;
  --color-accent: #f87dfd;
  --color-warning: #e6a027;
  --color-dark: #09001b;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
  height: 100%;
  scroll-behavior: auto !important;
}
body {
  color: var(--black);
  font-size: 18px;
  font-family: "tgn-soft-round";
  font-weight: 400;
  line-height: 37px;
  background-color: var(--white);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "area-extended";
  font-weight: bold;
}
section,
.section {
  position: relative;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
a,
button {
  outline: none;
  box-shadow: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
button {
  padding: 0;
  border: none;
  background: unset;
}
ol,
ul {
  margin: 0;
  padding: 0;
}
ol li,
ul li {
  list-style: none;
}
img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
  outline: none;
  box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
  margin: 0;
  padding: 0;
}

*::-moz-selection {
  background: var(--color-primary);
  color: var(--white);
  text-shadow: none;
}
::-moz-selection {
  background: var(--color-primary);
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: var(--color-primary);
  color: var(--white);
  text-shadow: none;
}
*::-moz-placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}
*::placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}

.btn {
  font-family: "area-normal";
  font-weight: 800;
  font-size: 14px;
  border-radius: 0px;
  border: none;
  padding: 18px 30px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.btn span.text {
  position: relative;
  display: inline-block;
  top: 3px;
}
.btn span.text::after {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  content: "";
  background-color: var(--white);
  transition: all 0.3s ease-in;
}
.btn:hover span.text::after {
  width: 100%;
}

.btn span.icons {
  display: inline-flex;
  align-items: center;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: hidden;
}
.btn span.icons img {
  transition: all 0.3s ease-in;
  max-width: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn span.icons img:first-child {
  transform: translate(-200%, -50%);
}
.btn:hover span.icons img:first-child {
  transform: translate(-50%, -50%);
}
.btn:hover span.icons img:last-child {
  transform: translate(100%, -50%);
}

.btn--primary {
  background-color: var(--color-secondary);
  color: var(--white);
}
.btn--primary:hover {
  background-color: #028680;
  color: var(--white);
}

.btn.btn-tiny {
  font-size: 11px;
  padding: 13px 14px 10px;
}

.btn-main {
  background-color: #e6a027;
  border-color: #e6a027;
  color: #22004f;
}

.btn-main span.text::after {
  background-color: #22004f;
}
.btn span.icon {
  line-height: 1;
  width: 35px;
  display: flex;
  align-items: center;
}
.btn span.icon img:first-child {
  opacity: 0;
  transform: translateX(-100%);
}
.btn span img:last-child {
  transform: translateX(-100%);
  opacity: 1;
}
.btn-main:hover {
  background-color: #fcb741;
  border-color: #fcb741;
  color: #22004f;
}
.btn:hover span.icon img:first-child {
  transform: translateX(0%);
  opacity: 1;
}
.btn:hover span img:last-child {
  transform: translateX(100%);
  opacity: 0;
}
.btn span.icon img {
  transition: 0.3s;
  max-width: 35px;
}

.btn-get-started {
  background: linear-gradient(to bottom, rgb(0, 192, 182), rgba(0, 159, 152, 1));
  border: none;
  position: relative;
  transition: all 0.25s ease;
}

/* highlight edge on top */
.btn-get-started::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  pointer-events: none;
  transition: all 0.3s;
}

/* hover and active effects */
.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 5.541px 7.092px 28.8px 16.2px rgba(0, 0, 0, 0.16);
}
.btn-get-started:hover::before {
  height: 20%;
}

.btn-get-started:active {
  transform: translateY(1px);
  box-shadow: 5.541px 7.092px 28.8px 16.2px rgba(0, 0, 0, 0.16);
}

.text-primary {
  color: var(--color-primary) !important;
}
.text-warning {
  color: var(--color-warning) !important;
}

.fs-2 {
  font-size: 42px !important;
  line-height: 65px !important;
}

.section__title h2 {
  text-transform: uppercase;
  margin-bottom: 45px;
}

.section__title-devider {
  width: 224px;
  height: 8px;
  display: block;
  background: #4900a9;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(73, 0, 169, 1) 0%, rgba(176, 66, 228, 1) 50%, rgba(230, 160, 39, 1) 100%);
}

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */

.header__top-content .btn {
  text-transform: inherit;
  font-family: "area-normal";
  font-weight: 800;
}
.header__top-content .btn-icon {
  padding: 0px 20px;
}
.header__top-content .btn-icon img {
  max-width: 20px;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 12;
  padding: 22px 0px;
}
.header__wrapper {
  width: 100%;
  margin-top: -35px;
}
.header__logo {
  gap: 50px;
}
.header__logo p {
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  font-family: "area-extended";
  font-weight: bold;
}
.header__logo a img {
  max-width: 135px;
}

.header__menu nav ul {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.header__menu nav ul li a {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: "area-normal";
  font-weight: 800;
  position: relative;
  padding: 46px 0px;
  transition: all 0.3s ease-in;
}
.header__menu nav ul li a:hover span.icons span {
  padding: 0px 0px;
  line-height: 1;
  letter-spacing: 0;
  transition: all 0.3s ease;
}
.header__menu nav ul li a span.icons span {
  color: #e6a027;
  padding: 0px 1px;
  transition: all 0.3s ease;
  letter-spacing: -0.2em;
}
.header__menu nav ul li a span.icons {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.header__menu nav ul li a:hover {
  color: #e6a027;
}
.nav-indicator {
  position: absolute;
  height: 3px;
  background-color: var(--color-secondary);
  transition: all 0.4s ease-in;
  top: -22px;
  width: 100%;
  height: 8px;
}

.header__end {
  position: relative;
}
.header__end p.small {
  font-size: 15px;
  color: #d95bd5;
  font-weight: 400;
  font-weight: 600;
  position: absolute;
  top: -35px;
}
.header__end p.small span {
  color: var(--color-warning);
  font-weight: 800;
}

.header__menuBar {
  color: var(--white);
  font-size: 28px;
}
.offcanvas {
  overflow: hidden;
  background-color: var(--color-warning);
}
.offcanvas::after {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  content: "";
  border-radius: 50%;
  z-index: -1;
  background: rgba(210, 105, 0, 0.18);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.7008px);
  -webkit-backdrop-filter: blur(5.7008px);
}
.offcanvas__menu ul li a {
  color: var(--dark);
  font-size: 16px;
  font-family: "area-extended";
  font-weight: 800;
  line-height: 2.2;
  border-bottom: 1px solid #0000000f;
  display: block;
  padding: 9px 0px;
  text-align: center;
}

.offcanvas__menu ul li a:hover {
  color: #7d1780;
}

/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero--section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 254px 0px 150px;
}

.hero__content h1 {
  font-size: 32px;
  line-height: 1.8;
  color: #fff;
  font-family: "area-extended";
  font-weight: 800;
  margin-bottom: 22px;
}

.hero__content {
  max-width: 630px;
}

.hero__content p {
  color: #fff;
  font-size: 19px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 42px;
  max-width: 558px;
}

.hero__content a.btn {
  font-size: 16px;
  letter-spacing: 0.06em;
  padding: 28px 60px 22px;
  box-shadow: 5.5408px 7.0912px 28.8px 16.2px rgba(0, 0, 0, 0.16);
}
.hero__gallery {
  margin-top: -40px;
}

.hero__gallery-item img {
  width: 217px;
  height: 206px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 1.8464px 2.3632px 28.8px 16.2px rgba(0, 0, 0, 0.12);
}

.hero__gallery-item.hero__gallery-item--oblong img {
  height: 240px;
  width: 100%;
}

.hero__gallery .col-6:nth-child(4) .hero__gallery-item img {
  height: 240px;
  width: 70%;
}

.gallery-animate-top {
  transform: translateY(-40px);
}
.gallery-animate-bottom {
  transform: translateY(40px);
}

.hero__objectImg {
  width: 900px;
  max-width: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease-out;
  will-change: transform;
  pointer-events: none;
}

.hero__program__obj {
  width: 40px;
  height: 100%;
  z-index: 3;
}
/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Get Started Section CSS Start */
/* =============================== */
.getStart--section {
  background: #fff4e4;
  padding: 145px 0px;
}

.getStart--section .section__title {
  margin-bottom: 110px;
}

.getStart--section .section__title h2 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 0px;
  text-transform: initial;
}

.getStart__item {
  max-width: 348px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}

.getStart__item-icon img {
  width: 254px;
  height: 254px;
  border-radius: 50%;
  box-shadow: 1.8464px 2.3632px 12.8px 4.2px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}
.getStart__item-icon:hover img {
  transform: translateY(-5px);
  box-shadow: 1.8464px 2.3632px 20.8px 4.2px rgba(0, 0, 0, 0.12);
}

.getStart__item-icon {
  margin-bottom: 50px;
}

.getStart__item-content h3 {
  font-size: 24px;
  color: #2d0069;
  font-weight: bold;
  font-family: "area-extended";
  line-height: 32px;
  min-height: 50px;
  margin-bottom: 5px;
}

.getStart__item-content p {
  font-size: 18px;
  color: #000000;
  line-height: 30px;
}
/* =============================== */
/* :: 6.0 Get Started Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Welcome Section CSS Start */
/* =============================== */
.welcome--section {
  background: #3b0079;
  padding: 135px 0px 116px;
  text-align: center;
}

.welcome__header span.pretitle {
  text-transform: uppercase;
  color: #f9f6ec;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.15em;
  font-family: "area-extended";
  display: block;
  margin-bottom: 20px;
}

.welcome__header h2 {
  text-transform: uppercase;
  color: #f9f6ec;
  font-size: 29px;
  letter-spacing: 0.04em;
  margin-bottom: 38px;
}

span.grediyentBar {
  width: 224px;
  height: 8px;
  display: block;
  background: #4900a9;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(73, 0, 169, 1) 0%, rgba(176, 66, 228, 1) 50%, rgba(230, 160, 39, 1) 100%);
}

.welcome__header {
  margin-bottom: 50px;
}

.welcome__wrapper {
  max-width: 1290px;
  margin: 0 auto;
}

.welcome__video iframe {
  height: 630px;
}

.welcome__video {
  margin-bottom: 50px;
}
.welcome__wrapper a.btn-main {
  font-size: 20px;
  padding: 28px 53px;
}
.welcome__object {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}
/* =============================== */
/* :: 7.0 Welcome Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Testimonials Section CSS Start */
/* =============================== */

.testimonials--section {
  background-color: #fff4e4;
  padding: 200px 0px 260px;
}
.testimonials__wrapper {
  max-width: 862px;
  margin: 0 auto;
  text-align: center;
}
.testimonials__header p {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: #3e008f;
  margin-bottom: 34px;
  font-family: "area-normal";
  letter-spacing: 0.04em;
}
.testimonials__header {
  margin-bottom: 60px;
}

.testimonials__content h2 {
  font-size: 33px;
  font-weight: 800;
  font-family: "area-normal";
  color: #3e008f;
  margin-bottom: 55px;
  line-height: 61px;
}

.testimonials__content h3 {
  font-size: 24px;
  font-weight: 800;
  font-family: "area-normal";
  color: #3e008f;
}

/* =============================== */
/* :: 8.0 Testimonials Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Footer CSS Start */
/* =============================== */
.footer {
  background-image: url("../imgs/footer-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer__applay-wrapper {
  background-image: url("../imgs/applay-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 70px 120px;
  justify-content: space-between;
  position: relative;
  margin-top: -180px;
  margin-bottom: 150px;
}
.footer__applay-content {
  flex-grow: 1;
  font-size: 25px;
  color: #fff4e4;
  font-family: "area-extended";
  font-weight: 800;
}

.footer__applay-wrapper a.btn {
  font-size: 20px;
  padding: 28px 50px;
  flex: 0 0 auto;
  text-transform: capitalize;
}

.footer__top {
  padding: 135px 15px;
  max-width: 1600px;
  margin: 0 auto;
}
.footer__top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__top-wrapper h2 {
  font-size: 18px;
  font-weight: bold;
  font-family: "area-extended";
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
}

.footer__nav ul li a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  font-family: "area-normal";
  color: #ffc72f;
  text-decoration: underline;
  line-height: 1.5;
  padding-bottom: 19px;
}
.footer__nav ul li:last-child a {
  padding-bottom: 0px;
}
.footer__nav ul li a:hover {
  color: var(--color-secondary);
}
.social__text {
  font-size: 17px;
  font-family: "tgn-soft-round";

  text-transform: uppercase;
  color: var(--white);
}

.social__icon {
  display: flex;
  align-items: center;
  gap: 24px;
}
.social__icon a {
  color: var(--white);
  font-size: 30px;
}
.social__icon a:hover {
  color: var(--color-warning);
  font-size: 30px;
}
.footer__logo img {
  max-width: 230px;
}

.footer__bottom {
  padding: 22px 15px;
  background-color: #180236;
}
.footer__bottom p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #9d8fbc !important;
}
/* =============================== */
/* :: 10.0 Footer CSS End */
/* =============================== */

/* model-area */
.model-area {
  display: flex;
  align-items: stretch;
}

.model-box {
  flex: 0 0 auto;
  width: 50%;
  padding: 140px 0px 140px;
}

.model-box--left {
  background: #7d1780;
}

.model-box--right {
  background: #008e90;
}

.model-box--content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  flex-direction: column;
}

.model-box--content h2 {
  font-size: 28px;
  font-weight: bold;
  font-family: "area-extended";
  color: #efefef;
  letter-spacing: 0.4496px;
  margin-bottom: 33px;
}

.model-box--content p {
  color: #fff;
  font-size: 19px;
  line-height: 38px;
  max-width: 560px;
  margin: 0 auto;
  font-weight: normal;
  margin-bottom: 50px;
  font-family: "tgn-soft-round";
}
.model-box--left .model-box--content a.btn {
  font-size: 20px;
  padding: 28px 50px;
  text-transform: capitalize;
}

.model-box--content a.btn span.icon {
  color: #720098;
}

.model-box--right .model-box--content a.btn {
  font-size: 20px;
  padding: 28px 50px;
  text-transform: capitalize;
}
/* model-area--end */

/* ======== popup-info style start ============ */
.popup-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11111;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-wrapper.active {
  opacity: 1;
  visibility: visible;
}

.popup-contact .pupup-main {
  max-width: 428px;
  padding: 35px 40px;
  position: relative;
  transform: translateX(428px);
  transition: transform 0.5s ease;
  width: 100%;
  background: linear-gradient(13deg, rgba(223, 147, 40, 1) 0%, rgba(234, 177, 72, 1) 100%);
  box-shadow: -2.909px 5.248px 10.32px 1.68px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 60px;
}

.popup-wrapper.active .pupup-main {
  transform: translateX(0);
}
.popup-wrapper.popup-contact button {
  background: transparent;
  border: none;
  padding: 0;
  color: #2d0069;
  line-height: 1;
  position: absolute;
  right: 10px;
  top: 10px;
}

.popup-contact-tel span {
  font-family: "area-normal";
  font-weight: 800;
  color: #8c1171;
  font-size: 13px;
  display: block;
  line-height: 33px;
  letter-spacing: 0.2px;
}
.popup-contact-tel h4 {
  color: #27005c;
  font-size: 23px;
  font-weight: 800;
  font-family: "area-normal";
  line-height: 34px;
  margin-bottom: 0px;
}

.popup-contact-tel p {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  font-family: "area-normal";
  line-height: 29px;
  margin-bottom: 12px;
}
.popup-close img {
  max-width: 26px;
}
.login-btn {
  color: #faeede;
  box-shadow: 1.231px 1.576px 0px 0px rgba(0, 0, 0, 0.17);
  padding: 16px 54px 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 46px;
  font-size: 13px;
  font-family: "area-normal";
  letter-spacing: 0.04em;
  background: #9d1d56;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.login-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 70px;
}

/* hover and active effects */
.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 1.231px 1.576px 10px 0px rgba(0, 0, 0, 0.17);
}
.login-btn:hover::before {
  height: 20%;
}

/* ======== popup-info style end ============ */

/* =============================== */
/* :: 11.0 Resources-templates CSS Start */
/* =============================== */

/* pageHero */
.pageHero--section {
  min-height: 644px;
}
.pageHero--section::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("../imgs/header-resources.png");
  z-index: 2;
  opacity: 0.9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.pageHero__content {
  padding-top: 310px;
}
.pageHero__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  opacity: 0.7;
}
.pageHer__wrapper {
  position: relative;
  z-index: 4;
}
.pageHero__content h2 {
  font-size: 33px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 34px;
}

.pageHero__content span.yellowBorder {
  width: 220px;
  height: 10px;
  display: block;
  margin: 0 auto;
  background: #e6a027;
}
.pageHero-obj {
  position: absolute;
  left: 15px;
  top: 0;
  height: 100%;
  z-index: 3;
}
.pageHero-obj--2 {
  left: auto;
  right: 0px;
}
/* pageHero--end */

/* guide-section */
.guide--section {
  background: #f9f6ec;
  padding: 110px 0px 110px;
  box-shadow: 5.5408px 7.0912px 28.8px 16.2px rgba(0, 0, 0, 0.16);
}

.guide__title h2 {
  font-size: 30px;
  font-weight: 800;
  color: #3b0089;
  margin-bottom: 34px;
}
.guide__title p {
  color: #2d0069;
  font-family: "area-normal";
  font-weight: 600;
  font-size: 19px;
  line-height: 39px;
}

.guide__title {
  text-align: center;
  margin-bottom: 77px;
}

.guide__steps {
}
.guide__stepsItem {
  cursor: pointer;
  width: 10.75%;
  transition: all 0.3s ease;
}
.guide__stepsItem img {
  max-width: 100%;
}
.steps-lineBg {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  z-index: -1;
  max-width: 99%;
}
.guide__placeholder {
  height: 0;
}
.guide__wrapper.top-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: #f9f6ec;
}
.guide__wrapper.top-fixed .guide__stepsItem {
  width: 6%;
}
/* guide-section--end */

/* Steps-section */

.steps__wrapper {
  max-width: 1290px;
  margin: 0 auto;
}

.stepItem {
  display: flex;
  align-items: stretch;
}
.stepItem__icon {
  flex: 0 0 auto;
  width: 310px;
  text-align: center;
  padding: 75px 0px 75px;
}
.stepItem__icon img {
  max-width: 280px;
}
.stepItem__icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #009f98;
  padding: 16px 24px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: "area-extended";
  font-weight: bold;
  margin-bottom: 50px;
}

.stepItem__sep {
  flex: 0 0 auto;
  padding: 0px 100px;
}
.stepItem__sep span {
  width: 2px;
  display: block;
  height: 100%;
  background-image: url("../imgs/border-img.png");
  background-repeat: repeat-y;
}
.steps--section {
  padding: 100px 0px 250px;
}

.stepItem__content h3 {
  font-size: 32px;
  font-weight: bold;
  color: #3b0089;
  font-family: "area-extended";
  margin-bottom: 26px;
  line-height: 1.3; /* 41px*/
}
.stepItem__content-border {
  border-bottom: 3px solid #ffa800;
}
.stepItem__content-border .grediyentBorder {
  display: block;
  width: 250px;
  height: 10px;
  position: relative;
  bottom: -3px;
  background-image: -moz-linear-gradient(
    -180deg,
    rgb(255, 168, 0) 1%,
    rgb(219, 120, 114) 28%,
    rgb(182, 71, 228) 50%,
    rgb(128, 36, 199) 78%,
    rgb(73, 0, 169) 93%
  );
  background-image: -webkit-linear-gradient(
    -180deg,
    rgb(255, 168, 0) 1%,
    rgb(219, 120, 114) 28%,
    rgb(182, 71, 228) 50%,
    rgb(128, 36, 199) 78%,
    rgb(73, 0, 169) 93%
  );
  background-image: -ms-linear-gradient(
    -180deg,
    rgb(255, 168, 0) 1%,
    rgb(219, 120, 114) 28%,
    rgb(182, 71, 228) 50%,
    rgb(128, 36, 199) 78%,
    rgb(73, 0, 169) 93%
  );
}
.stepItem__content {
  max-width: 778px;
  padding: 75px 0px 75px;
}
.stepItem__content p {
  font-size: 20px;
  font-weight: 600;
  font-family: "area-normal";
  color: #000001;
  line-height: 47px;
}
.stepItem__content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.stepItem__content ul li {
  font-size: 20px;
  font-weight: 600;
  font-family: "area-normal";
  color: #000001;
  line-height: 42px;
  padding-left: 20px;
  position: relative;
}
.stepItem__content ul li::after {
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #009f98;
}

.stepItem__cotnent-assets {
  padding: 23px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #653e99;
  position: relative;
}
.stepItem__cotnent-assets::after {
  position: absolute;
  right: 30px;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url("../imgs/plus.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease;
}
.stepItem__cotnent-assets[aria-expanded="true"]::after {
  background-image: url("../imgs/minus.png");
}
.stepItem__cotnent-assets h4 {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.stepItem__cotnent-assets span.icon img {
  max-width: 42px;
}

.stepItem__assets-inner {
  padding: 45px 22% 70px 45px;
  background: #f2eddd;
}

.stepItem__assets-inner a {
  display: inline-block;
  font-size: 21px;
  font-weight: bold;
  color: #3b0089;
  font-family: "area-extended";
}

.stepItem__assets-inner a span {
  background-image: linear-gradient(#3b0089, #3b0089);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline;
  transition: background-size 0.5s ease;
}
.stepItem__assets-inner a:hover span {
  background-size: 0% 2px;
}
.guide__wrapper.top-fixed .steps-lineBg {
  top: 46%;
  max-width: 99%;
  height: 70px;
  width: 100%;
}
/* Steps-section--end */

/* =============================== */
/* :: 11.0 Resources-templates CSS End */
/* =============================== */
