* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main: #392d7d;
  --black: #231f20;
  --light_pink: #fff8f3;
  --white: #fff;
  --brown: #5a2c0b;
  --yellow: #f1b51c;
  --orange: #e86e25;
  --dark_red: #e31f26;
  --sky: #ecf4f7;
  --green: #00833e;
  --gray: #ecf4f7;
  --nse_gray: #6d6e71;
  --sky_gray: #eceaf5;
}

body {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0px;
}

a {
  text-decoration: none !important;
}

hr.line {
  width: 90%;
  margin: auto;
}

ul {
  margin: 0px;
  padding: 0px;
}

ul li {
  list-style: none;
}

section.section {
  padding: 30px 60px;
  position: relative;
}

.section_heading {
  position: relative;
  text-align: center;
  margin-bottom: 1rem;
}

/* .section_heading:after
{
    content: "";
    position: absolute;
    z-index: 0;
    top: 75%;
    transform: translateY(-50%);
    left: 0;
    width: 99%;
    border: 4px double rgba(109, 110, 113, 0.4);
    z-index: -2;
}

*/

.section_heading h1 {
  color: #392d7d;
  text-transform: capitalize;
  position: relative;
  font-size: 30px;
  z-index: 1;
  display: inline-block;
  /* background-color: #fff; */
  padding-right: 10px;
  font-weight: 800;
  padding-bottom: 15px;
}

.section_heading h1::before {
  content: "";
  position: absolute;
  width: 100px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  background-color: #f1b51c;
  border-radius: 2rem;
}

/*.section_heading .heading_design{
    display: block;
    width: 15px;
    height: 25px;
    background-color: #392d7d;
    margin: 10px auto;
    border: 4px solid #f1b51c;
    border-bottom-left-radius: 50%;
    border-top-right-radius: 50%;
    transform: rotate(65deg);
    position: relative;
}*/

/*.section_heading .heading_design::before{
    content: '';
    position: absolute;
    width: 60px;
    height: 8px;
    border-bottom: 2px solid #392d7d;
    transform: rotate(-65deg);
    left: -5px;
    top: -35px;
    border-radius: 50%;
}

.section_heading .heading_design::after{
    content: '';
    position: absolute;
    width: 60px;
    height: 8px;
    border-top: 2px solid #392d7d;
    transform: rotate(-65deg);
    left: -50px;
    top: 40px;
    border-radius: 50%;
}*/

/* .section_heading h1::first-letter{
    font-size: 60px;
    color: #e86e25;
} */

.section_heading h1 span {
  font-size: 60px;
  color: #e86e25;
}

.section_inner_container {
  padding: 30px 0px;
}

.center_items {
  /* background-color: red; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============== social_links ============== */
.social_links {
  position: fixed;
  left: -5px;
  bottom: 3%;
  width: 55px;
  height: 200px;
  background-color: #007aff;
  /* background-color: #ECEAF5; */
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
  padding: 10px 0px;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: 99;
}
.social_links ul {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90%;
}

.social_links ul li {
  color: #fff;
  display: flex;
  width: 35px;
  height: 35px;
  /* background-color: #392d7d; */
  border-radius: 50%;
  position: relative;
  transition: all 0.5s ease;
}

/* .social_links ul li:hover{
    background-color: #392d7d;
} */

.social_links ul li a {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  margin-right: 19px;
  position: absolute;
  /* top: 50%;
    left: 50%;
    transform: translate(-50% , -50%); */
  /* color: #f1b51c; */
  color: #392d7d;
  display: grid;
  display: -moz-grid;
  display: -ms-grid;
  place-items: center;
  transition: all 0.5s ease;
}

.social_links ul li a:hover {
  background-color: #392d7d;
  color: #f1b51c;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.social_links ul li h4 {
  margin-right: 19px;
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translate(-50%, -50%);
  /* color: #231f20; */
  color: #f1b51c;
  font-size: 14px;
  background-color: #392d7d;
  padding: 3px 8px;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.social_links ul li:hover h4 {
  opacity: 1;
  visibility: visible;
}

.social_links ul li h4::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #392d7d;
  top: 50%;
  left: -4px;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 2px;
  z-index: -1;
}

/* =============== header =================== */
header {
  box-shadow: 0 0 0px 0 #ddddddb3;
  width: 100%;
  background-color: #fff;
}

header.scrolled {
  box-shadow: 0 0 8px 0 #392d7d;
}
header .container {
  /* background-color: red; */
  padding: 0px !important;
}
header .navbar {
  /* background-color: green; */
  padding: 0px 25px !important;
}
header .navbar-brand img {
  width: 130px;
}

header nav {
  padding: 8px 2rem !important;
  margin: 0px !important;

  width: 100%;
  background-color: #fff;
}

header .navbar-nav {
  margin-left: auto;
}

.brochure_btn {
  margin-left: 1rem !important;
  margin-top: 3px;
}

.brochure_btn .btn {
  border: 1px solid #e86e25 !important;
  color: #e86e25 !important;
  transition: 0.5s ease-in-out;
  margin: 0px;
  background-color: #fff;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
}

.brochure_btn .btn:hover {
  background-color: #e86e25 !important;
  color: #fff !important;
}

.p_btn {
  margin-left: 1rem !important;
  margin-top: 3px;
}

.p_btn .btn {
  border: 1px solid #e86e25 !important;
  color: #fff !important;
  transition: 0.5s ease-in-out;
  margin: 0px;
  background-color: #e86e25;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
}

.p_btn .btn:hover {
  background-color: #fff !important;
  color: #e86e25 !important;
}

.navbar-light .navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ======================= banner_section ============ */
.banner_section {
  width: 100%;
  /* background-color: #392d7d; */
  background: url("../images/banner.png");
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 8rem;
  position: relative;
}

.banner_section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background-color: #392d7d; */
  background-color: rgba(57, 45, 125, 0.7);
  /* background: url('../images/banner.png') #392d7d;
    background-size: cover;
    background-position: center;
    background-blend-mode: color; */
  border-left: 3px solid #e86e25;
  border-bottom: 3px solid #e86e25;
  border-bottom-left-radius: 8rem;
}

.banner_section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 3%;
  left: 0;
  background-color: #f1b51c;
  /* border-bottom-left-radius: 5rem; */
  z-index: -1;
}

.banner_section .lineImg {
  width: 6px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}

.banner_section .lineImg img {
  width: 100%;
  height: 100%;
}
.banner_section .banner_text {
  /* background-color: red; */
  margin: 2rem 0rem;
  padding-left: 30px;
  position: relative;
  box-sizing: border-box;
}

.banner_section .banner_text p {
  /* color: #ecf4f7; */
  color: #f1b51c;
  font-style: italic;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  /* opacity: 0.8; */
}

.banner_section .banner_text h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 900;
}

.banner_section .bannerBtns {
  margin-left: 30px;
}

/* ========btn ======= */
/* .banner_section  */

.btn {
  background-color: #e86e25;
  color: #fff;
  margin-top: 1rem;
  /* margin-left: 30px; */
  padding: 0px 25px;
  height: 35px;
  padding-right: 5px;
  display: inline-flex;
  display: -ms-inline-flexbox;
  align-items: center;
  position: relative;
  transition: all 0.5s ease;
}

/* .banner_section .btn::after{
    content: "\f30b";
    font-family: "Font Awesome 6 Free";
} */

.btn i {
  transform: translateX(-30px);
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  /* display: none; */
}

.btn:hover {
  padding-right: 25px;
}

.btn:hover i {
  transform: translateX(10px);
  /* display: inline-block; */
  opacity: 1;
  visibility: visible;
}

/* .banner_section .banner_text img{
    position: absolute;
    height: 7px;
    width: 200px;
    transform: rotate(90deg);
    left: 0;
    top: 0;
} */

/* ============== courseDesc_section ================ */
.courseDesc_section .courseDesc_steps {
  /* background-color: #231f20; */
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  align-items: center;
}

.courseDesc_steps .courseDesc_box {
  width: 23%;
  padding: 30px 20px;
  /* margin: auto; */
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: rgba(57, 45, 125, 0.1);
  align-self: normal;
  text-align: center;
  border-radius: 6px;
  transition: all 0.5s ease;
}

.courseDesc_box .courseDesc_icon {
  width: 50px;
  height: 50px;
  margin: 10px auto;
  border: 1px solid #392d7d;
  display: grid;
  display: -ms-grid;
  display: -moz-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(57, 45, 125, 0.3);
  transition: all 0.5s ease;
}

.courseDesc_box .courseDesc_icon i {
  color: #392d7d;
  transition: all 0.5s ease;
}

.courseDesc_box .courseDesc_icon img {
  width: 100%;
  height: 100%;
}

.courseDesc_steps .courseDesc_box:hover {
  transform: translateY(-10px);
}

.courseDesc_steps .courseDesc_box:hover .courseDesc_icon {
  width: 45px;
  height: 45px;
  background-color: #f1b51c;
  border: 1px solid #f1b51c;
}

.courseDesc_box:hover .courseDesc_icon i {
  color: #fff;
}

.courseDesc_box h6 {
  color: #392d7d;
  letter-spacing: 0.6px;
  font-weight: 800;
  font-size: 14px;
}

/* ====== coursePrice_card ======= */
.coursePrice_card {
  box-shadow: 0px 0px 10px rgba(57, 45, 125, 0.2);
  padding: 20px 10px;
  border-radius: 4px;
  margin-top: -90%;
  /* background-color: rgba(255, 255, 255, 0.1); */
  background-color: #fff;
}

.remaining_time {
  text-align: center;
}

.remaining_time h3 {
  font-size: 16px;
  /* color: #392d7d; */
  /* color: #e86e25; */
  color: #f1b51c;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.remaining_time p {
  color: #392d7d;
  padding-top: 20px;
  font-size: 18px;
  font-weight: 800;
}

.remaining_time .dateTime_container {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
}

.dateTime_container .dt_box {
  /* background-color: green; */
  /* width: 100px; */
  /* padding: 20px; */
  width: 80px;
  height: 60px;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  /* flex-direction: column; */
  justify-content: center;
  align-self: normal;
  text-align: center;
  color: #fff;
  font-size: 8px;
  text-transform: uppercase;
  /* font-family: Arial, Helvetica, sans-serif; */
  font-weight: 800;
  letter-spacing: 3px;
  margin: 0px 3px;
  border-radius: 5px;
  /* margin-top: 8rem; */
}

/* ==================== box color =============== */

.dateTime_container .dt_box:nth-child(1) {
  background-color: #dc1e25;
}

.dateTime_container .dt_box:nth-child(2) {
  background-color: #eceaf5;
}

.dateTime_container .dt_box:nth-child(3) {
  background-color: #e86e25;
}

.dateTime_container .dt_box:nth-child(4) {
  background-color: #e0aa5c;
}

.dateTime_container .dt_box span {
  position: relative;
  /* color: #eda12d; */
  /* color: #6d6e71; */
  color: #392d7d;
  /* padding: 2px 30px; */
  /* border-radius: ; */
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 900;
  /* width: 60px;
    height: 60px;
    display: grid;
    display: -ms-grid;
    place-items: center; */
  margin-bottom: 10px;
  z-index: 1;
}
.dateTime_container .dt_box:nth-child(2) {
  color: #6d6e71;
}

.courseFee {
  margin-top: 1.5rem;
}

.courseFee h1 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.courseFee h5 {
  font-size: 28px;
  font-weight: 800;
  color: #e86e25;
}

.courseFee h5 strike {
  color: #6d6e71;
  margin-right: 8px;
  font-size: 18px;
}

.courseFee .btn {
  margin-left: 0px;
  margin: 1rem 0;
  margin-top: 2rem;
}

/* ======= form======= */
.card.formCard {
  margin-top: 1rem;
  border: none;
}
.card.formCard .card-body {
  padding: 20px 20px;
}

.card.formCard .form-control,
.card.formCard .form-select {
  margin-bottom: 15px;
  border: 1px solid #ccc;
  color: #e86e25;
  border-radius: 2rem;
  padding-left: 20px;
  font-size: 14px;
  transition: all 0.5s ease;
}

.card.formCard .form-control:focus,
.card.formCard .form-select:focus {
  box-shadow: 0px 0px 6px #e86e25;
  border: 1px solid rgba(232, 110, 37, 0.1);
}

.card.formCard .form-control::placeholder,
.card.formCard .form-select::placeholder {
  color: #ccc;
  opacity: 0.6;
}

.card.formCard form .btn {
  display: block;
  background-color: #392d7d;
  color: #fff;
  width: 200px;
  border-bottom: 2px solid #f1b51c;
  margin: 10px auto;
  border-radius: 2rem;
  line-height: 30px;
  transition: all 0.5s ease;
}
.card.formCard form .btn:hover {
  color: #f1b51c;
  opacity: 0.8;
}

/* =============== aboutCourse ============= */

.aboutCourse_list {
  padding: 20px 0px;
}

.aboutCourse_list ul {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.aboutCourse_list ul li {
  width: 49%;
  background-color: rgba(35, 31, 32, 0.1);
  margin: 8px 0px;
  padding: 15px 20px;
  padding-left: 30px;
  text-transform: capitalize;
  align-self: normal;
  color: #392d7d;
  border-radius: 4px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.aboutCourse_list ul li .box_1 {
  display: inline-block;
  width: 15px;
  height: 120%;
  margin-right: 8px;
  position: absolute;
  top: -5px;
  left: -2px;
  bottom: -5px;
  background-color: #e86e25;
}

.aboutCourse_list ul li .box_1::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: #f1b51c;
  top: -5px;
  left: 8px;
  z-index: -2;
  transform: rotate(45deg);
}

.aboutCourse_list ul li .box_circle {
  display: inline-block;
  width: 25px;
  height: 100%;
  margin-right: 8px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e86e25;
}

.aboutCourse_list ul li .box_circle span {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #f1b51c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 3px solid #fff;
}

.aboutCourse_list ul li .box_circle span::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  /* background-color: red; */
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
}

/* .aboutCourse_list ul li span::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    background-color: #f1b51c;
    bottom: -5px;
    left: 8px;
    z-index: -1;
    transform: rotate(-45deg);
} */

/* ======================= learningCourse_section ================= */
.learningCourse_section .learningCourse_table {
  width: 100%;
  margin: 0px auto;
}

/* ================= not useing ============= */

.learningCourse_table table {
  /* background-color: red; */
}

.learningCourse_table table thead th {
  /* background-color: #00833e; */
  padding: 10px;
  color: #231f20;
  font-size: 18px;
  font-weight: 800;
}

.learningCourse_table table tbody tr {
  background-color: rgba(232, 110, 37, 0.1);
  padding: 10px !important;
}

.learningCourse_table table tbody tr:nth-child(odd) {
  background: rgba(109, 110, 113, 0.1);
  /* border-radius: 2rem; */
}

.learningCourse_table table tbody tr td {
  margin-bottom: 10px !important;
  position: relative;
}

.learningCourse_table table tbody tr td:first-child {
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  padding-left: 45px;
}

.learningCourse_table table tbody tr td:last-child {
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

/* =========================================== */

.learningCourse_row {
  /* background-color: red; */
}

.table_heading {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  margin-bottom: 1rem;
}

.courseContent_column1 {
  flex: 0 0 60%;
  -ms-flex: 0 0 60%;
  width: 60%;
  /* background-color: green; */
  padding: 10px;
  align-self: normal;
}

.courseContent_column2 {
  flex: 0 0 40%;
  -ms-flex: 0 0 40%;
  width: 40%;
  /* background: yellow; */
  padding: 10px;
  align-self: normal;
}

.courseContent_column1 h3,
.courseContent_column2 h3 {
  font-size: 24px;
  color: #231f20;
  font-weight: 800;
  color: #e86e25;
}

.courseContent_column1 h3 {
  text-align: left;
}

.learning_courseBody {
  position: relative;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  padding: 0px 10px;
  /* background-color: cyan; */
  /* background-color: rgba(241, 181, 28, 0.3); */
  background-color: rgba(204, 204, 204, 0.1);
  border-radius: 2rem;
  margin-bottom: 15px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.learning_courseBody:hover {
  background-color: #f1b51c;
  transform: scale(1.1);
}

.learning_courseBody:hover .learningCourse_txt p {
  color: #eceaf5;
}

/* .learningCourse_hours h6{
    color: #231f20;
} */

.learning_courseBody:nth-child(odd) {
  /* background-color: rgba(232, 110, 37, 0.3); */
}

.learning_courseBody:nth-child(odd):hover {
  /* background-color: #e86e25; */
}

.learningCourse_txt {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  /* position: relative; */
  /* background-color: green; */
  padding-left: 30px;
}

.learningCourse_txt span {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  background-color: #231f20;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  /* border-top-right-radius: 50%;
    border-bottom-right-radius: 50%; */
}

.learningCourse_txt p {
  font-size: 18px;
  color: #392d7d;
  font-weight: 500;
}

.learningCourse_hours h6 {
  font-size: 16px;
  color: #231f20;
  font-weight: 700;
  margin-bottom: 0px;
}

/* ======================= courseDetails_section ===================== */
.courseDetails_section {
}

.courseDetails_container .accordion {
  border: none !important;
  /* overflow: hidden; */
  padding: 5px;
}

.courseDetails_container .accordion .accordion-item {
  /* border: none; */
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  box-shadow: none !important;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #e86e25;
}

.accordion-button span {
  display: inline-block;
  width: 30px;
  height: 25px;
  /* background-color: #f1b51c; */
  font-size: 10px;
  text-align: center;
  line-height: 25px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-right: 12px;
  color: #fff;
  /* border-top-left-radius: 1rem;
    border-bottom-right-radius: 1rem; */
  position: relative;
  /* transform: rotate(50deg) */
  z-index: 1;
}

.accordion-button span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background-color: #f1b51c;
  transform: rotate(50deg);
  z-index: -1;
}

.accordion-button h6 {
  font-size: 12px;
  margin-left: 8px;
  margin-top: 5px;
  font-weight: 800;
  color: #9b9592;
}

.accordion-button::after {
  background-image: none !important;
  content: "\002B"; /*2212*/
  background-color: rgba(57, 45, 125, 0.1);
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
/* 
.accordion-button.collapsed{
    background-color: #392d7d;
} */

.accordion-button:not(.collapsed) {
  background-color: #392d7d;
  color: #fff;
  /* border: none; */
}

.accordion-button:not(.collapsed)::after {
  content: "\2212";
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* .accordion-body{
    padding-top: 0px;
    padding-left: 0px;
} */

/* .accordion-body.rightSideImg{
    padding-left: 1rem;
    padding-right: 0rem;
} */

.accordion-body {
  display: flex;
  display: -ms-flexbox;
  /* flex-wrap: wrap; */
}

.courseDetails_text {
  /* width: 100%; */
  position: relative;
}

.courseDetailsImg_box {
  position: relative;
}

.courseDetailsImg_box .courseSpan_box {
  width: 80px;
  height: 74px;
  background-color: #392d7d;
  position: absolute;
  top: 0;
  left: 0;
}

.rightSideImg .courseDetailsImg_box .courseSpan_box {
  left: calc(100% - 80px);
}

.courseDetailsImg_box img {
  /* float: left; */
  width: 180px;
  height: 180px;
  border-radius: 50%;
  /* shape-outside: circle(); */
  margin: 1.5rem 0px;
  margin-top: 0rem;
  margin-right: 1rem;
  /* border: 10px solid #392d7d; */
  border-top: 10px solid #392d7d;
  border-left: 10px solid #dc1e25;
  border-bottom: 10px solid #e86e25;
  border-right: 10px solid #f1b51c;
  position: relative;
  background-color: #392d7d;
  object-fit: cover;
  z-index: 1;
}

.rightSideImg .courseDetailsImg_box img {
  /* float: right; */
  margin-right: 0rem;
  margin-left: 5px;
}

/* .courseDetails_text img::after{
    content: '';
    position: absolute;
    width: 10px;
    height: 100px;
    background-color: red;
    z-index: 2;
} */

.courseDetails_text p {
  color: #392d7d;
  font-size: 16px;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  padding: 20px;
  /* padding-top: 0rem; */
  padding-left: 0rem;
  position: relative;
  font-weight: 500;
}
.courseDetails_text p:first-of-type {
  padding-bottom: 0px;
  padding-top: 20px !important;
}

.courseDetails_text p:last-of-type {
  /* color: red; */
  padding-top: 0px;
}

/* ul.courseDetails_list{
    margin-left: 2rem;
} */
ul.courseDetails_list h6 {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #e86e25;
}
ul.courseDetails_list h6 img {
}

ul.courseDetails_list li {
  margin-left: 3.5rem;
  padding: 4px 0px;
  color: #392d7d;
  font-weight: 500;
  letter-spacing: 0.6px;
}

ul.courseDetails_list li strong {
  font-weight: 500;
}

ul.courseDetails_subList li {
  margin-left: 1.5rem;
  /* color: #5a2c0b; */
  color: #392d7d;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.6px;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
}

ul.courseDetails_list li i {
  font-size: 12px;
  color: #f1b51c;
  box-shadow: 0px 0px 6px rgba(185, 135, 135, 0.6);
  border-radius: 50%;
}

ul.courseDetails_subList li i {
  color: #e86e25;
  background-color: #e86e25;
  font-size: 8px;
  margin-right: 8px;
  box-shadow: 0px 0px 6px rgba(185, 135, 135, 0.6);
  border-radius: 50%;
}

/* ======================= courseSteps_section ================== */
.courseSteps_section {
}

.courseSteps_container {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  /* justify-content: space-around; */
  justify-content: center;
  flex-wrap: wrap;
}
.step_box {
  position: relative;
  width: 310px;
  height: 310px;
  /* width: 15%; */
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  margin: 30px;
}

.step_box span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #392d7d;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  transition: all 0.5s ease;
  animation: animate 6s linear infinite;
}
.step_box:hover span:nth-child(1) {
  border: none;
  /* background-color: rgba(0, 0, 255, 0.8); */
  /* background-color: #392d7d; */
  background-color: rgba(57, 45, 125, 0.8);
}

.step_box span:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #392d7d;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  transition: all 0.5s ease;
  animation: animate 4s linear infinite;
}
.step_box:hover span:nth-child(2) {
  border: none;
  /* background-color: rgba(0, 0, 255, 0.8); */
  background-color: rgba(57, 45, 125, 0.8);
}

.step_box span:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #392d7d;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  transition: all 0.5s ease;
  animation: animate2 10s linear infinite;
}
.step_box:hover span:nth-child(3) {
  border: none;
  /* background-color: rgba(0, 0, 255, 0.8); */
  /* background-color: #392d7d; */
  background-color: rgba(57, 45, 125, 0.8);
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate2 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.steps_text {
  position: relative;
  padding: 20px 30px;
  color: #392d7d;
  text-align: center;
  transition: 0.5s;
  z-index: 1000;
}

.step_box:hover .steps_text {
  color: #fff;
}

.steps_text h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 5px 0px;
}

.step_box:nth-child(1) .steps_text h2 {
  color: #e31f26;
}
.step_box:nth-child(2) .steps_text h2 {
  color: #00833e;
}
.step_box:nth-child(3) .steps_text h2 {
  color: #e86e25;
}
.step_box:nth-child(4) .steps_text h2 {
  color: #5a2c0b;
}
.step_box:nth-child(5) .steps_text h2 {
  color: #6d6e71;
}
.step_box:nth-child(6) .steps_text h2 {
  color: #392d7d;
}

.step_box:hover .steps_text h2 {
  color: #fff;
}

.step_box:hover .steps_text a {
  border: 2px solid #fff;
  color: #fff;
}
.steps_text a {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  border: 2px solid #392d7d;
  padding: 6px 18px;
  color: #392d7d;
  border-radius: 73% 27% 44% 56% / 49% 44% 56% 51%;
  transition: all 0.5s ease;
}

.steps_text a:hover {
  background-color: #fff8f3;
  color: #392d7d;
}

/* =============== courseActivateSteps =================== */
.courseActivateSteps_section .activateCourse_box {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.activateCourse_box .activateBox {
  -ms-flex: 0 0 16%;
  flex: 0 0 16%;
  max-width: 16%;
  text-align: center;
  border: 1px solid #e86e25;
  /* margin: 10px 0px; */
  margin: 10px auto;
  align-self: normal;
  border-radius: 8px;
  box-shadow: 0 2px 20px 0 rgba(110, 130, 208, 0.18);
  position: relative;
  transition: all 1s ease;
}

.activateCourse_box .activateBox:hover {
  background-color: #fef9e7;
  transform: scale(1.05);
}

/* .activateCourse_box .activateBox:nth-child(1){
    background-color: #FEF9E7;
} */

/*
.activateCourse_box .activateBox:nth-child(1){
    border: 1px solid #e86e25;
    border-radius: 8px;
    border-top-right-radius: 0px;
}

.activateCourse_box .activateBox:nth-child(1)::before{
    content: '';
    position: absolute;
    width: 35%;
    height: 5px;
    top: -1px;
    right: -1px;
    background-color: #fff;
    border-right: 1px solid #e86e25;
}

.activateCourse_box .activateBox:nth-child(2){
    border: 1px solid #e86e25;
    border-bottom: none !important;
    border-left: none !important;
}

.activateCourse_box .activateBox:nth-child(3){
    border-bottom: 1px solid #e86e25;
    border-right: 1px solid #e86e25;
}

.activateCourse_box .activateBox:nth-child(4){
    border-top: 1px solid #e86e25;
    border-right: 1px solid #e86e25;
}

.activateCourse_box .activateBox:nth-child(5){
    border-bottom: 1px solid #e86e25;
    border-right: 1px solid #e86e25;
}

.activateCourse_box .activateBox:nth-child(6){
    border-top: 1px solid #e86e25;
    border-right: 1px solid #e86e25;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom: 1px solid #e86e25;
}

.activateCourse_box .activateBox:nth-child(6)::before{
    content: '';
    position: absolute;
    width: 50%;
    height: 5px;
    bottom: -1px;
    left: -0.5px;
    background-color: #fff;
    border-left: 1px solid #e86e25;
}*/

.activateCourse_box .activateBox .step_img {
  /* background: red; */
  display: inline-block;
  position: relative;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  left: 50%;
  transform: translateX(-50%);
}

.activateCourse_box .activateBox .step_img img {
  /* width: 100%;
    height: 100%; */
  width: 60px;
}

.activateCourse_box .activateBox .step_text {
  padding: 10px 5px;
}

.activateCourse_box .activateBox .step_text h5 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 15px;
}

.activateCourse_box .activateBox:nth-child(1) .step_text h5 {
  color: #e31f26;
}

.activateCourse_box .activateBox:nth-child(2) .step_text h5 {
  color: #00833e;
}

.activateCourse_box .activateBox:nth-child(3) .step_text h5 {
  color: #e86e25;
}

.activateCourse_box .activateBox:nth-child(4) .step_text h5 {
  color: #5a2c0b;
}

.activateCourse_box .activateBox:nth-child(5) .step_text h5 {
  color: #6d6e71;
}

.activateCourse_box .activateBox:nth-child(6) .step_text h5 {
  color: #392d7d;
}

.activateCourse_box .activateBox .step_text p {
  font-size: 15px;
  font-weight: 600;
  /* text-align: left; */
}

.activateCourse_box .activateBox .step_text p a {
  color: #e86e25;
  text-decoration: underline !important;
}

/* ======================testimonial_section=============== */
section.testimonial_section {
  float: left;
  position: relative;
  /* padding: 30px 0; */
  background: #fcfcfd;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
.section-separator {
  float: left;
  width: 100%;
  position: relative;
  margin: 20px 0;
}
.section-separator:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 3px;
  width: 50px;
  border-radius: 3px;
  z-index: 2;
  background-color: #007aff;
  margin-left: -25px;
}

.swiper-container {
  width: 100%;
  height: 100%;
  text-align: center;
}
.listing-carousel-button {
  position: absolute;
  top: 50%;
  width: 80px;
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
  z-index: 100;
  cursor: pointer;
  background: #007aff;
  box-shadow: 0 9px 26px rgba(58, 87, 135, 0.45);
  transition: all 200ms linear;
  outline: none;
}
.listing-carousel-button.listing-carousel-button-next {
  right: -20px;
  padding-right: 20px;
  border-radius: 60px 0 0 60px;
  /* position: relative; */
}
.listing-carousel-button.listing-carousel-button-prev {
  left: -20px;
  padding-left: 20px;
  border-radius: 0 60px 60px 0;
  /* position: relative; */
}

.listing-carousel-button.listing-carousel-button-next i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.listing-carousel-button.listing-carousel-button-prev i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.listing-carousel-button.listing-carousel-button-next:hover {
  right: -10px;
  background: rgba(6, 27, 65, 0.4);
}
.listing-carousel-button.listing-carousel-button-prev:hover {
  left: -10px;
  background: rgba(6, 27, 65, 0.4);
}
.testi-item {
  transition: all 0.3s ease-in-out;
  transform: scale(0.9);
  opacity: 0.9;
}
.testimonials-text {
  padding: 75px 50px 75px;
  overflow: hidden;
  background: #f5f6fa;
  border: 1ps solid #f1f1f1;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.testimonials-text-after {
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  color: #ccc;
  opacity: 0.3;
  font-size: 35px;
  transition: all 400ms linear;
  bottom: 25px;
  right: 30px;
}
.testimonials-text-before {
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  color: #ccc;
  opacity: 0.3;
  font-size: 35px;
  transition: all 400ms linear;
  top: 25px;
  left: 30px;
}
.testimonials-text .listing-rating {
  float: none;
  display: inline-block;
  margin-bottom: 12px;
}
.listing-rating i {
  color: #007aff;
}
.testimonials-avatar h3 {
  font-weight: 600;
  color: #7d93b2;
  font-size: 18px;
}
.testimonials-avatar h4 {
  font-weight: 400;
  font-size: 12px;
  padding-top: 6px;
  color: #007aff;
}
.testimonials-carousel .swiper-slide {
  padding: 30px 0;
}
.testi-avatar {
  position: absolute;
  left: 50%;
  top: -30px;
  width: 90px;
  height: 90px;
  margin-left: -45px;
  z-index: 20;
}
.testi-avatar img {
  width: 90px;
  height: 90px;
  float: left;
  border-radius: 100%;
  border: 6px solid #fff;
  box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}
.swiper-slide-active .testimonials-text {
  background: #fff;
  box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}
.testimonials-text p {
  color: #878c9f;
  font-size: 14px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  line-height: 24px;
  padding-bottom: 10px;
  font-weight: 500;
}
.text-link {
  position: absolute;
  bottom: 0;
  padding: 15px 0;
  border-radius: 10px 10px 0 0;
  background: #f9f9f9;
  border: 1px solid #eee;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.03);
  left: 50%;
  width: 200px;
  margin-left: -100px;
}
.swiper-slide-active .testi-item {
  opacity: 1;
  transform: scale(1);
}
.tc-pagination {
  float: left;
  margin-top: 10px;
  width: 100% !important;
}
.tc-pagination_wrap {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
}
.tc-pagination2 {
  float: none;
  display: inline-block;
  padding: 14px 0;
  background: #fff;
  border-radius: 30px;
  min-width: 250px;
  border-bottom: 0;
  background: red;
}
.tc-pagination .swiper-pagination-bullet,
.tc-pagination2.swiper-pagination-bullet {
  opacity: 1;
  background: #384f95;
  margin: 0 2px;
  width: 10px;
  height: 10px;
  transition: all 300ms ease-in-out;
  text-align: center;
}

.swiper-pagination-bullets-dynamic {
  text-align: center;
}

/* ======================= certificate_section ================== */
.certificate_section .cerificate_img {
  width: 100%;
  height: 400px;
}
.cerificate_img img {
  width: 100%;
  height: 100%;
}

.certificate_text {
  width: 100%;
  height: 100%;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}

.certificate_text .acadamy_logo {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
}

.certificate_text .acadamy_logo img {
  width: 200px;
}

.certificate_text .acadamy_logo span {
  display: inline-block;
  /* width: 20px; */
  width: 4px;
  height: 30px;
  background-color: #ccc;
  /* background-color: #392d7d;
    border: 3px solid #f1b51c; */
  border-radius: 2rem;
  margin: auto 8px;
  /* border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem; */
}

.certificate_text .acadamy_text {
  padding: 10px 20px;
}

.certificate_text .acadamy_text p {
  color: #392d7d;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 500;
  /* font-style: italic; */
}

.certificate_text .acadamy_text p b {
  color: #e86e25;
}

/* ======================= contact_section ================= */
/* .contact_section .contactUs_inner{
} */

.contact_section .contactUs_inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_section .contactUs_inner .contact_box {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid #6d6e71;
  /* margin: 10px auto; */
  margin: 10px 0px;
  align-self: normal;
}

.contactUs_inner .contact_box i {
  color: #6d6e71;
  font-size: 20px;
  margin-right: 8px;
  font-weight: 800;
  opacity: 0.5;
}

.contactUs_inner .contact_box p {
  font-size: 18px;
  color: #392d7d;
  font-weight: 800;
}

.contactUs_inner .contact_box p span {
  color: #e86e25;
  margin-left: 5px;
}

.contactUs_inner .contact_box a {
  font-size: 18px;
  font-weight: 800;
}

.contactUs_inner .contact_box a span {
  color: #e86e25;
  margin-left: 5px;
}
/* ======================= scrollTop ================ */

.scrolltop {
  position: fixed;
  width: 35px;
  height: 35px;
  background-color: #f1b51c;
  color: #fff;
  right: 1rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 5px;
  border: 2px solid #392d7d;
  opacity: 0;
  visibility: hidden;
  animation: scrollTop 5s ease-in-out infinite;
}

.scrolltop.show {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.scrolltop:hover {
  background-color: #f1b51c;
  border: 2px solid #392d7d;
  animation-play-state: paused;
}

@keyframes scrollTop {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ==============joinUsModal=============== */
#joinUsModal form input,
#joinUsModal form select {
  margin-bottom: 15px;
  outline: none;
  box-shadow: none;
}

#joinUsModal form input:focus,
#joinUsModal form select:focus {
  border: 1px solid #e86e25;
}

#joinUsModal .modal-content {
  border: 4px solid #f1b51c;
  border-radius: 15px;
  box-shadow: 0px 0px 20px rgba(109, 110, 113, 0.4);
  /* border-top: 4px solid #f1b51c;
    border-right: 4px solid #e86e25;
    border-bottom: 4px solid #f1b51c;
    border-left: 4px solid #e86e25; */
}

#joinUsModal .modal-content .modal-header button {
  position: absolute;
  width: 40px;
  height: 40px;
  /* left: 50%; */
  /* top: -20px; */

  right: 1rem;
  top: 1rem;

  /* top: 0;
    right: 0; */

  /* border: 5px solid #fff; */
  border: 4px solid #f1b51c;

  /* border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem; */

  /* border-bottom-left-radius: 50%; */

  border-radius: 50%;
  background-color: #e86e25;
  color: #fff;
  font-weight: 800;
  transition: all 0.5s ease;
}

#joinUsModal .modal-content .modal-header button:hover {
  opacity: 0.8;
}

#joinUsModal .modal-content .modal-header {
  flex-direction: column;
  padding-top: 2rem;
  text-align: center;
}

#joinUsModal .modal-content .modal-header h1 {
  color: #392d7d;
  font-size: 30px;
  font-weight: 700;
}

#joinUsModal .modal-content form .btn {
  background-color: #392d7d;
  color: #fff;
  width: 50%;
  /* border-radius: 2rem; */
  margin: 1rem auto;
  margin-left: 50%;
  transform: translateX(-50%);
}

#joinUsModal .brochure_link {
  text-align: center;
  color: #e86e25;
  text-decoration: none;
  font-size: 16px;
}

/* ==================enquiry_form================ */
.enquiry_form.nav-link {
  margin: 0px !important;
  z-index: 9999;
}

.enquiry_form {
  background-color: #392d7d;
  color: #fff;
  padding: 5px 25px 6px 25px;
  position: fixed;
  right: -50px !important;
  right: 0;
  top: 50%;
  font-size: 14px;
  transform: rotate(-90deg);
  border-radius: 5px;
  /* border: 4px solid #f1b51c; */
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: all 0.5s ease-in-out;
}

.enquiry_form:hover {
  color: #f1b51c;
  opacity: 0.8;
}

.enquiry_form.show {
  opacity: 1;
  visibility: visible;
}

.enquiry_form::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  left: 2px;
  background-color: #f1b51c;
  border-radius: 2rem;
}

.enquiry_form::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  right: 2px;
  background-color: #f1b51c;
  border-radius: 2rem;
}

/* ====================footer====================== */

footer {
  width: 100%;
  /* height: 10px; */
  /* background-color: #392d7d; */
  margin-top: 0rem;
}

footer .copyrit {
  color: #6d6e71;
  padding: 1rem 3rem;
}

footer .footer_img {
  width: 100%;
  /* height: 10px; */
}

footer .footer_img img {
  width: 100%;
  /* height: 100%; */
  height: 6px;
}

/* ======================= media query ================== */
@media only screen and (max-width: 980px) {
  section.section {
    padding: 20px 10px;
  }
  header .container-fluid {
    padding: 0px 0px;
  }
  header .navbar {
    /* background-color: green; */
    padding: 0px 0px !important;
  }
  .coursePrice_card {
    margin-top: 2rem;
  }
  .step_box {
    width: 300px;
    height: 300px;
    margin: 30px 20px;
  }
  .certificate_text {
    margin-top: 2rem;
  }

  .card.formCard form .btn {
    line-height: 30px;
  }

  .activateCourse_box .activateBox {
    flex: 0 0 31%;
    -ms-flex: 0 0 31%;
    max-width: 31%;
    margin-bottom: 20px;
  }
  /* .accordation-body{
        background: red;
    } */
  .accordion-body {
    flex-wrap: wrap;
  }
  .accordion-body.rightSideImg {
    flex-direction: column-reverse;
  }
  .courseDesc_section .courseDesc_steps {
    justify-content: center;
  }
  .courseDesc_steps .courseDesc_box {
    width: 30%;
  }
}

@media only screen and (max-width: 680px) {
  header nav {
    padding: 8px 0px !important;
  }
  header .container-fluid {
    padding: 0px 0px 0px 5px;
  }
  .banner_section .banner_text h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .courseDesc_steps .courseDesc_box {
    /* width: 47%; */
    width: 100%;
    margin: 10px auto;
    margin-top: 0px;
  }
  .aboutCourse_list ul li {
    width: 100%;
  }
  ul.courseDetails_list {
    margin-left: 0rem;
  }
  .certificate_section .cerificate_img {
    height: auto;
  }
  .courseDetails_text p {
    padding-left: 10px;
  }
  .certificate_text .acadamy_logo img {
    width: 120px;
  }
  .contact_section .contactUs_inner {
    flex-wrap: wrap;
  }
  .contact_section .contactUs_inner:first-of-type {
    /* background-color: red; */
    margin-bottom: 2rem;
  }
  .contact_section .contactUs_inner .contact_box {
    width: 100%;
    margin: 0px;
    flex-wrap: wrap;
  }
  .activateCourse_box .activateBox {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .courseDetails_section .accordion-body {
    padding: 1rem 0.5rem;
  }

  .courseDetails_section .courseDetails_list h6 {
    margin-left: 0.8rem;
  }

  ul.courseDetails_list li {
    margin-left: 2rem;
  }
}

/* Modal Form */
/* Modal Form */
/*download brochure form*/
.modal-logo {
  max-width: 100px;
}

.get_in_touch_innerForm_input {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.get_in_touch_innerForm_input .form-control {
  border-radius: 0px;
  border: none;
  background-color: #f2f2f3;
  font-size: 1.1rem;
  color: #777;
  padding: 0.5rem 1.2rem;
  border-radius: 0.3rem;
}

.get_in_touch_innerForm_input span {
  display: flex;
  gap: 1.2rem;
}

.get_in_touch_innerForm_input button {
  padding: 0.8rem 1.6rem;
  color: #fff;
  background-color: #392d7d;
  border: none;
  border-radius: 0.4rem;
  font-size: 1.1rem;
  font-weight: 500;
}
