/* GLOBAL_CSS_CHANGES_START_FROM_HERE */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea,
label {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
button,
input,
textarea,
select {
  outline: none !important;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
select.minimal {
  background-image: url(../images/selectArrow.png);
  background-position: calc(100% - 14px) calc(1em + 4px);
  background-repeat: no-repeat;
  background-size: 10px;
}
/* GLOBAL_CSS_CHANGES_END_HERE */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Chrome, Safari, Edge, Opera */

/* GLOBAL_VAR_CSS_START_FROM_HERE */
:root {
  --white: #ffffff;
  --black: #222;
  --blue: #161544;
  --yellow: #f29a3b;
  --orange: #f7931a;
  --montserrat-semiBold: "Montserrat-SemiBold";
  --onest-bold: "Onest-Bold";
  --onest-Medium: "Onest-Medium";
  --onest-Regular: "Onest-Regular";
  --onest-SemiBold: "Onest-SemiBold";
}
/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
  font-family: "Onest-Bold";
  src: url("../webfonts/Onest-Bold.ttf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "Onest-Medium";
  src: url("../webfonts/Onest-Medium.ttf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "Onest-Regular";
  src: url("../webfonts/Onest-Regular.ttf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "Onest-SemiBold";
  src: url("../webfonts/Onest-SemiBold.ttf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("../webfonts/Montserrat-SemiBold.ttf");
  font-weight: regular;
  font-style: normal;
}
/* FONT_CSS_END_HERE */

/* SCROLL-CSS */
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: var(--white);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--black);
}
/* SCROLL-CSS */

/* LOADER-CSS */
/* LOADER-CSS */

/* HEADER-CSS */
.header-mob-flex {
  display: none;
}
.header-main-wrapper {
  padding: 10px 0;
}
.header-logo-wrapper img {
  width: 173px;
  height: auto;
  display: block;
}
.header-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-menu-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-menu-nav ul li a {
  font-family: var(--onest-Regular);
  color: var(--black);
  font-size: 16px;
  position: relative;
  transition: 0.5s ease;
}
.header-menu-nav ul li a:hover {
  color: var(--yellow);
}
.header-menu-nav ul li a::before {
  content: "";
  background-color: var(--yellow);
  display: flex;
  width: 100%;
  height: 2px;
  transform: scale(0);
  transform-origin: left;
  position: absolute;
  bottom: 0px;
  left: 0px;
  transition: 0.3s ease;
}
.header-menu-nav ul li a:hover::before {
  transform: scale(1);
}
.header-menu-btn i {
  transition: 0.05s ease;
}
.header-menu-btn a:hover i {
  transform: translateX(5px);
  transition: 0.05s ease;
}
.header-menu-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 220px;
  height: 45px;
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 50px;
  cursor: pointer;
  transition: 0.25s ease;
  font-family: var(--onest-Regular);
  font-size: 16px;
}
.header-menu-btn a:hover {
  background-color: var(--yellow);
  color: #ffffff;
  border: 1px solid transparent;
}
.header-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.header-menu-btn .login_btn {
  font-size: 20px;
  font-family: var(--onest-Medium);
  color: var(--black);
  background-color: transparent;
  border: none;
  width: 150px;
}
.header-menu-btn .login_btn:hover {
  background: none;
  color: var(--black);
  border: 0;
}
.header-menu-btn .login_btn:hover i {
  transform: translateX(0px);
}
.header-menu-btn .login_btn img {
  max-width: 18px;
}
.notificatoin_btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 0;
  position: relative;
}
.notificatoin_btn span {
  position: absolute;
  top: -2px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: red;
  font-family: var(--onest-Regular);
  font-size: 10px;
  color: var(--white);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.actoin_flex {
  display: flex;
  align-items: center;
  gap: 40px;
}
.user_top_info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  cursor: pointer;
  position: relative;
  background: transparent;
  border: 0;
}
.user_top_info .user_top_img img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
  overflow: hidden;
}
.user_top_info p {
  font-family: var(--onest-SemiBold);
  font-size: 16px;
  color: var(--black);
}
.dropdown_box {
  background: var(--white);
  border-radius: 5px;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 170px;
  padding: 5px 0px;
  max-height: 0;
  opacity: 0;
  transition: all 0.25s;
}
.dropdown_box.active {
  max-height: 100px;
  opacity: 1;
}
.dropdown_box a {
  font-family: var(--onest-Regular);
  font-size: 16px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 25px;
}
/* HEADER-CSS */

/* INDEX-CSS */
.index-banner-wrapper {
  height: 55vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--orange);
}
.index_banner_vid::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #00000030;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
.index_banner_vid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  overflow: hidden;
  width: 90%;
  height: 100%;
  z-index: -1;
}
.index_banner_vid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-text {
  width: 70%;
  text-align: center;
  margin: 0 auto;
}
.banner-text h6 {
  font-family: var(--onest-SemiBold);
  font-size: 60px;
  color: var(--white);
  line-height: 1.1;
  text-transform: capitalize;
  margin: 0px 0px 20px 0px;
}
.banner-text p {
  font-family: var(--onest-Regular);
  font-size: 20px;
  color: var(--white);
  margin: 0px 0px 20px 0px;
  width: 75%;
  margin: 0 auto;
  padding: 0px 0px 30px 0px;
}
.banner-btn a {
  background-color: transparent;
  color: var(--white);
  font-family: var(--onest-Regular);
  font-size: 16px;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 45px;
  width: 220px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.5s ease;
  margin: 0 auto;
}
.banner-btn a:hover {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}
.banner-btn i {
  transition: 0.1s ease;
}
.banner-btn:hover i {
  transform: translateX(5px);
  transition: 0.1s ease;
}
.index-text {
  padding-left: 80px;
}
.index_third_wrapper {
  padding: 100px 0px;
}
.index_third_wrap_text h6 {
  font-size: 50px;
  font-family: var(--onest-Regular);
  color: #222222;
  text-transform: capitalize;
  line-height: 1;
  margin: 0px 0px 10px 0px;
}
.index_third_wrap_text p {
  font-size: 18px;
  font-family: var(--onest-Regular);
  color: #666666;
  width: 95%;
  margin: 0px 0px 20px 0px;
}
.index_third_wrap_input {
  position: relative;
  width: 80%;
}
.index_third_wrap_input input {
  width: 100%;
  height: 65px;
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 200px 0px 25px;
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: #7c7c7c;
}
.index_third_wrap_input a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 170px;
  height: 40px;
  border-radius: 30px;
  background: #4d4d4d;
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: 0.3s ease;
}
.index_third_wrap_input a:hover {
  background-color: var(--yellow);
  color: var(--white);
}
.index_third_wrap_input a i {
  transition: 0.3s ease;
}
.index_third_wrap_input a:hover i {
  transform: translateX(5px);
}
/* INDEX-CSS */

/* FOOTER-CSS */
.footer_inner {
  position: relative;
  background-color: #222222;
  padding: 100px 60px 0px 60px;
  z-index: 2;
}
.footer_bg_1,
.footer_bg_2,
.footer_bg_3 {
  position: absolute;
  z-index: -1;
}
.footer_bg_1 {
  left: 20px;
  bottom: 0;
  mix-blend-mode: luminosity;
}
.footer_bg_2 {
  bottom: 0;
}
.footer_bg_3 {
  top: 0;
  right: 0;
  mix-blend-mode: luminosity;
}
.footer_logo {
  max-width: 300px;
  margin: 0px 0px 20px 0px;
}
.footer_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer_logo_text p {
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: var(--white);
  margin: 0px 0px 25px 0px;
}
.footer_social ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer_social ul li a i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: var(--white);
  border-radius: 50px;
  color: var(--black);
  font-size: 18px;
  transition: 0.5s ease;
}
.footer_social ul li a i:hover {
  transform: scale(1.1) rotate(360deg);
  background-color: var(--black);
  color: var(--white);
}
.footer_links h6 {
  font-size: 22px;
  font-family: var(--onest-Medium);
  color: var(--white);
  margin: 0px 0px 20px 0px;
}
.footer_links_2 li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--white);
}
.footer_links ul li a {
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: var(--white);
  line-height: 2.3;
  position: relative;
  transition: 0.5s ease;
}
.footer_links ul li a:hover {
  color: var(--yellow);
}
.footer_links ul li a::before {
  content: "";
  background-color: var(--yellow);
  display: flex;
  width: 100%;
  height: 2px;
  transform: scale(0);
  transform-origin: left;
  position: absolute;
  bottom: 0px;
  left: 0px;
  transition: 0.3s ease;
}
.footer_links ul li a:hover::before {
  transform: scale(1);
}
.copyright {
  margin: 100px 0px 0px 0px;
  padding: 20px 0px;
  border-top: 0.8px solid #d3d3d3;
  text-align: center;
}
.copyright p {
  font-size: 16px;
  font-family: var(--onest-Medium);
  color: var(--white);
}
/* FOOTER-CSS */

/*ADDITIONAL CSS*/
.index-first-wrapper {
  padding: 120px 0px 100px 0px;
}
.index-first-wrap-text {
  text-align: center;
  margin: 0px 0px 50px 0px;
}
.index-first-card-row {
  max-width: 1440px;
  margin: 0 auto;
}
.index-first-wrap-text h6 {
  font-size: 60px;
  font-family: var(--onest-Regular);
  color: var(--black);
  text-transform: capitalize;
  width: 50%;
  margin: 0 auto 10px auto;
}
.index-first-wrap-text p {
  font-size: 24px;
  font-family: var(--onest-Regular);
  color: #4d4d4d;
  text-transform: capitalize;
  width: 45%;
  margin: 0 auto 20px auto;
}
.sec-btn {
  background-color: #4d4d4d;
  color: var(--white);
  font-family: var(--onest-Regular);
  font-size: 16px;
  border: 1px solid var(--white);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 55px;
  width: 200px;
  margin: 0 auto;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
}
.sec-btn:hover {
  background-color: var(--yellow);
  color: var(--white);
  border: 1px solid var(--white);
}
.sec-btn i {
  transition: 0.3s ease;
}
.sec-btn:hover i {
  transform: translateX(5px);
}
.index-first-wrap-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.index-first-wrap-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  transition: 1s ease;
}
.index-first-wrap-card-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 15px;
  background: linear-gradient(
    179deg,
    rgba(40, 40, 40, 0) 56.72%,
    #282828 115.69%
  );
  z-index: 3;
}
.index-first-wrap-card:hover .index-first-wrap-card-img img {
  transform: scale(1.1);
}
.index-first-wrap-card-text {
  position: absolute;
  left: -10px;
  bottom: 30px;
  z-index: 3;
  padding: 0px 40px;
}
.index-first-wrap-card-text h6 {
  font-size: 25px;
  font-family: var(--onest-Medium);
  color: var(--white);
  text-transform: capitalize;
  width: 90%;
  margin: 0px 0px 10px 0px;
}
.index-first-wrap-card-text p {
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: #ffffffe6;
  text-transform: capitalize;
  margin: 0px 0px 10px 0px;
}
.index-first-wrap-card-text a {
  font-size: 14px;
  font-family: var(--onest-Regular);
  color: var(--white);
  text-transform: capitalize;
  background-color: transparent;
  padding: 0 0px 0 0px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.index-first-wrap-card-text a i {
  transition: 0.5s ease;
}
.index-first-wrap-card-text a:hover i {
  transform: translateX(10px);
}
.index-first-wrapper-1 {
  padding: 0px 0px 100px 0px;
}
.index-first-text-img-box {
  max-width: 490px;
  margin: 0 auto;
}
.index-first-text-box h2 {
  font-size: 60px;
  font-family: var(--onest-Regular);
  color: var(--black);
  margin: 0px 0px 5px 0px;
}
.index-first-text-box p {
  font-size: 18px;
  font-family: var(--onest-Regular);
  color: #666666;
  margin: 0px 0px 20px 0px;
}
.index-first-text-box h3 {
  font-size: 35px;
  font-family: var(--onest-Regular);
  color: var(--black);
  margin: 0px 0px 10px 0px;
}
.index-first-text-box h4 {
  font-size: 20px;
  font-family: var(--onest-Medium);
  color: var(--black);
  margin: 0px 0px 5px 0px;
}
.index-first-text-box .index_second_wrap_btn {
  display: block;
}

.index_second_wrapper {
  background-color: rgba(77, 77, 77, 0.1);
  padding: 100px 0px;
}
.index_second_wrap_ttext {
  text-align: center;
  margin: 0px 0px 70px 0px;
}
.index_second_wrap_ttext h6 {
  font-family: var(--onest-Medium);
  font-size: 60px;
  color: var(--black);
  text-transform: capitalize;
}
.index_second_wrap_img:hover img {
  transform: scale(1.1);
}
.index_second_wrap_img img {
  transition: 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_second_wrap_img {
  overflow: hidden;
  margin: 0px 0px 20px 0px;
  border-radius: 5px;
  width: 100%;
  height: 540px;
}
.index_second_wrap_text h5 {
  font-family: var(--onest-Regular);
  font-size: 16px;
  color: var(--black);
  margin: 0px 0px 10px 0px;
}
.index_second_wrap_text h6 {
  font-family: var(--onest-Medium);
  font-size: 40px;
  color: var(--black);
  text-transform: capitalize;
}
.index_second_cr_box {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1.7px solid #6666663b;
  margin: 0px 0px 20px 0px;
  padding: 0px 0px 20px 0px;
}
.index_second_cr_box_text h5 {
  font-family: var(--onest-Regular);
  font-size: 16px;
  color: var(--black);
  margin: 0px 0px 10px 0px;
}
.index_second_cr_box_text h6 {
  font-family: var(--onest-Medium);
  font-size: 20px;
  color: var(--black);
  text-transform: capitalize;
}
.index_second_cr_box_text {
  max-width: 300px;
}
.index_second_cr_box_img {
  overflow: hidden;
  border-radius: 5px;
}
.index_second_cr_box_img img {
  transition: 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_second_cr_box_img:hover img {
  transform: scale(1.1);
}
.index_second_wrap_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 230px;
  height: 60px;
  color: var(--white);
  border: 1px solid transparent;
  background-color: #4d4d4d;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.5s ease;
  font-family: var(--onest-Regular);
  font-size: 16px;
}
.index_second_wrap_btn a i {
  transition: 0.2s ease;
}
.index_second_wrap_btn a:hover i {
  transform: translateX(5px);
}
.index_second_wrap_btn a:hover {
  background-color: var(--yellow);
  color: var(--white);
}
.index_second_wrap_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
/*ADDITIONAL CSS*/

/*LOGIN_SIGNUP CSS START*/
.login_first_wrapper {
  width: 100vw;
  padding: 30px 0px;
}
.login_form_wrap {
  padding-left: 45px;
}
.login_first_wrapper .left_img_box video {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  overflow: hidden;
}
.login_form_wrap .title {
  font-size: 60px;
  font-family: var(--onest-Regular);
  color: var(--black);
  margin: 0px 0px 5px 0px;
}
.login_form_wrap .desc {
  font-size: 18px;
  font-family: var(--onest-Regular);
  color: var(--black);
  margin: 0px 0px 40px 0px;
  text-transform: capitalize;
}
.login_form_wrap .form_group {
  position: relative;
  margin-bottom: 25px;
}
.login_form_wrap .form_group label {
  font-size: 18px;
  font-family: var(--onest-Regular);
  color: var(--black);
  margin: 0px 0px 10px 20px;
}
.login_form_wrap .form_group input {
  width: 100%;
  height: 65px;
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 25px 0px 25px;
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: #7c7c7c;
}
.form_group_actoins {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.check_box_flex {
  display: flex;
  align-items: center;
}
.check_box_flex p,
.forgot_link a {
  font-size: 18px;
  font-family: var(--onest-Regular);
  color: var(--black);
  margin-top: 2px;
}
.forgot_link a {
  text-decoration: underline;
}
.check_container {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.check_container input {
  display: none;
}
.check_container svg {
  overflow: visible;
  margin-right: 8px;
}
.path {
  fill: none;
  stroke: black;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
  stroke-dasharray: 241 9999999;
  stroke-dashoffset: 0;
}
.check_container input:checked ~ svg .path {
  stroke-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -259.2723388671875;
  stroke: black;
}
.login_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 60px;
  color: var(--white);
  border: 1px solid transparent;
  background-color: #4d4d4d;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.5s ease;
  font-family: var(--onest-Regular);
  font-size: 18px;
}
.login_btn i {
  transition: 0.2s ease;
}
.login_btn:hover i {
  transform: translateX(5px);
}
.login_btn:hover {
  background-color: var(--yellow);
  color: var(--white);
}
.pass_wrap {
  position: relative;
}
.toggle_password {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #f7931a;
  cursor: pointer;
  font-size: 26px;
}
.back_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 60px;
  color: var(--black);
  border: 1px solid transparent;
  background-color: #fff;
  font-family: var(--onest-Regular);
  font-size: 18px;
}
.back_btn:hover {
  color: var(--black);
}
.otp_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login_form_wrap .form_group .otp_flex input {
  width: 90px;
  height: 90px;
  text-align: center;
  padding: 0;
  border-radius: 14px;
  border: 1.184px solid var(--Neutrals-20, #d6ddeb);
  background: #f0f0f0;
  font-size: 25px;
  font-family: var(--onest-Regular);
  color: #7c7c7c;
}
/*LOGIN_SIGNUP CSS END*/

/*USER DASHBOARD*/
.user_dashboard_first_wrapper {
  padding-bottom: 100px;
}
.user_dashoard_row {
  display: flex;
  justify-content: space-between;
}
.user_dashboard_right_box {
  width: calc(100% - 495px);
  border-radius: 8px;
  background: #f6f6f6;
  padding: 40px;
}
.user_dashboard_img {
  width: 100%;
  height: 385px;
  position: relative;
  margin-bottom: 80px;
  background: #f7931a;
  display: flex;
  justify-content: center;
  align-items: center;
}
.user_dashboard_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  overflow: hidden;
}
.user_dashboard_img h1 {
  font-family: var(--onest-SemiBold);
  font-size: 60px;
  color: var(--white);
  max-width: 475px;
  text-align: center;
}
.master_class_wrapper .user_dashboard_img h1 {
  max-width: 665px;
}
.user_dashboard_left_box {
  border-radius: 8px;
  background: #161544;
  padding: 60px 90px;
  width: 100%;
  max-width: 465px;
  height: fit-content;
}
.user_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.user_img {
  width: 203px;
  height: 203px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.user_navs h2 {
  font-family: var(--onest-SemiBold);
  font-size: 28px;
  color: var(--white);
  text-align: center;
  padding: 25px 0px;
}
.user_nav_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.user_nav_list a {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 0px 35px;
  border-radius: 35px;
  font-family: var(--onest-Regular);
  font-size: 16px;
  color: var(--black);
  max-width: 280px;
  margin: 0 auto;
  transition: all 0.25s;
}
.user_nav_list a:hover {
  background: #f7931a;
  color: var(--white);
}
.user_nav_list a span {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 0.25s;
}
.user_nav_list a p {
  width: calc(100% - 45px);
}
.user_nav_list a:hover span {
  background: var(--white);
}
.user_dashboard_right_box .heading {
  font-family: var(--onest-Regular);
  font-size: 30px;
  color: var(--black);
  margin: 0px 0px 20px 0px;
}
.data_box_top {
  padding: 20px 15px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--white);
}
.data_box_top .left_box {
  width: 90px;
  height: 70px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fde9d1;
}
.data_box_top .right_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(100% - 90px);
}
.data_box_top .right_box .inner_left_box h5 {
  font-family: var(--onest-bold);
  font-size: 25px;
  color: var(--black);
  line-height: 1;
  padding-bottom: 15px;
}
.data_box_top .right_box .inner_left_box p {
  font-family: var(--onest-Regular);
  font-size: 16px;
  color: var(--black);
  line-height: 1;
}
.data_box_top .right_box .inner_right_box h5 {
  font-family: var(--onest-bold);
  font-size: 15px;
  color: var(--black);
  line-height: 1;
  padding-bottom: 5px;
}
.data_box_top .right_box .inner_right_box p {
  font-family: var(--onest-Regular);
  font-size: 13px;
  color: var(--black);
  line-height: 1;
}
.tracking_box {
  width: 100%;
  height: 460px;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.donut_chart_box {
  max-width: 350px;
}
.notification_box {
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.notification_item {
  display: flex;
  gap: 20px;
  padding: 25px 20px;
  background: #f7f7f7;
  border-radius: 2px;
  border-left: 6px solid #7e7e7e;
}
.notification_item .icon_box {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  border-radius: 100%;
}
.notification_item h6 {
  font-family: var(--onest-SemiBold);
  font-size: 25px;
  color: #000000;
  padding-bottom: 5px;
}
.notification_item .text_box {
  width: calc(100% - 35px);
}
.notification_item p {
  font-family: var(--onest-Regular);
  font-size: 15px;
  color: #000000;
}
.notification_item.error_notification_item {
  background: #feeaea;
  border-color: #f87171;
}
.error_notification_item .icon_box {
  background: #f87171;
}
.error_notification_item h6 {
  font-size: 18px;
  color: #bc1c21;
}
.notificatoin_item_2 {
  background: #e1f9f0;
  border-color: #34d399;
}
.notificatoin_item_2 .icon_box {
  background: #1abe82;
}
.notificatoin_item_2 h6 {
  color: #1abe82;
}
.line_chart_wrapper {
  padding: 20px;
  background: var(--white);
}
.line_chart_wrapper canvas {
  width: 100% !important;
  height: 400px !important;
}
.courses_main_box {
  background: var(--white);
  padding: 20px 25px 35px 25px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin-bottom: 45px;
}
.courses_card .img_box {
  width: 100%;
  height: 265px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}
.courses_card .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s;
}
.courses_card:hover .img_box img {
  transform: scale(1.1);
}
.courses_card .title {
  font-family: var(--onest-Medium);
  font-size: 22px;
  color: var(--black);
  line-height: 1;
}
.courses_card .desc {
  font-family: var(--onest-Regular);
  font-size: 16px;
  color: var(--black);
  margin-bottom: 10px;
}
.card_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 165px;
  height: 40px;
  color: var(--white);
  border: 1px solid transparent;
  background-color: #4d4d4d;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.5s ease;
  font-family: var(--onest-Regular);
  font-size: 16px;
}
.card_btn i {
  transition: 0.2s ease;
}
.card_btn:hover i {
  transform: translateX(5px);
}
.card_btn:hover {
  background-color: var(--yellow);
  color: var(--white);
}
.notification_top_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.notification_top_flex .heading {
  font-size: 40px;
  font-family: var(--onest-Bold);
  line-height: 1;
  margin: 0;
}
.notification_top_flex select {
  font-size: 14px;
  font-family: var(--onest-Regular);
  background-color: var(--white);
  width: 150px;
  height: 40px;
  padding: 0px 15px;
  border: 0;
  border-radius: 10px;
  color: #777;
}
/*.notification_page_item {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  padding: 30px 25px;*/
/*  border-radius: 10px;*/
/*  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
/*  transition: all 0.25s;*/
/*  margin-bottom: 20px;*/
/*  border: 1px solid transparent;*/
/*}*/
/*.notification_page_item:hover {*/
/*  background: #f7931a36;*/
/*  border-color: #fbc27d;*/
/*}*/
.notification_page_item .left_flex_box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.notification_page_item .img_box img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  object-fit: cover;
  object-position: center;
}
.notification_page_item .text_box h2 {
  font-size: 20px;
  font-family: var(--onest-Regular);
  color: #5f5e61;
  margin-bottom: 5px;
}
.notification_page_item .text_box h2 span {
  font-weight: 700;
  color: var(--black);
}
.notification_page_item .text_box .desc {
  display: flex;
  align-items: center;
  gap: 10px;
}
.notification_page_item .text_box .desc p,
.notification_page_item .text_box .desc span {
  font-size: 14px;
  font-family: var(--onest-Regular);
  color: var(--orange);
  transition: all 0.25s;
}
.notification_page_item:hover .text_box .desc p,
.notification_page_item:hover .text_box .desc span {
  color: #f7931a;
}
.mark_btn {
  background: transparent;
  border: 0;
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: var(--black);
  text-decoration: underline;
  position: absolute;
  right: 10px;
  top: 20px;
}
.mark_btn {
  background: transparent;
  border: 0;
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: var(--black);
  text-decoration: underline;
}
.masterclass_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 20px 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin-bottom: 20px;
}
.masterclass_card .img_box {
  width: 330px;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
}
.masterclass_card .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.masterclass_card .text_box {
  width: calc(100% - 365px);
}
.masterclass_card .text_box .title {
  font-size: 30px;
  font-family: var(--onest-Medium);
  color: var(--black);
  margin: 0px 0px 25px 0px;
  width: 80%;
}
.masterclass_card .text_box .sub_title {
  font-size: 25px;
  font-family: var(--onest-Medium);
  color: var(--black);
  margin: 0px 0px 10px 0px;
}
.masterclass_card .text_box .desc {
  font-size: 18px;
  font-family: var(--onest-Regular);
  color: #666;
  margin: 0px 0px 30px 0px;
}
.masterclass_card .left_flex ul li {
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: var(--black);
  margin: 5px 0px;
}
.masterclass_card .left_flex ul li span {
  font-weight: 700;
  margin-right: 5px;
}
.masterclass_card .card_btn {
  max-width: 190px;
}
.card_bottom_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.pagination_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 125px;
  height: 45px;
  border: 1px solid transparent;
  background-color: #4d4d4d;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.5s ease;
  font-family: var(--onest-Regular);
  font-size: 16px;
  color: var(--white);
}
.customize_pagination .middle_btn {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--onest-Regular);
  font-size: 16px;
  color: var(--black);
  border: 0;
  background: #e9e9e9;
  transition: all 0.25s;
}
.customize_pagination .middle_btn:hover {
  background: #f7931a;
  color: var(--white);
}
.customize_pagination {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 20px 0px;
}
.customize_pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.course_detail_wrapper .user_dashboard_img h1 {
  max-width: 725px;
}
.course_detail_wrapper .user_dashboard_right_box {
  width: 100%;
  padding: 40px 170px 80px 170px;
}
.course_detail_wrapper .user_dashboard_right_box .heading {
  font-size: 40px;
  font-family: var(--onest-Bold);
  width: 40%;
}
.affiliates_card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  border-radius: 10px;
}
.affiliates_card .img_box {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f6f6;
  margin-bottom: 20px;
}
.affiliates_card .title {
  font-family: var(--onest-Medium);
  font-size: 32px;
  color: var(--black);
  line-height: 1;
  padding-bottom: 5px;
}
.affiliates_card .desc {
    font-family: var(--onest-Regular);
    font-size: 15px;
    color: #666666;
    padding-bottom: 10px;
    height: 75px;
}
.affiliates_card .email {
  font-family: var(--onest-Regular);
  font-size: 16px;
  color: var(--black);
}
.affiliates_card .email span {
  font-weight: 600;
}
.card_inner_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.card_inner_flex a {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--black);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 5px;
}
.consultation_form input,
.consultation_form select,
.consultation_form textarea {
  width: 100%;
  height: 60px;
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 25px 0px 25px;
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: #7c7c7c;
  margin: 0px 0px 25px 0px;
}
.consultation_form textarea {
  height: 135px;
  border-radius: 15px;
  resize: none;
  padding: 20px 25px;
}
.consultation_form select.minimal {
  background-position: calc(100% - 25px) calc(1em + 10px);
  background-size: 15px;
}
.card_btn.submit_btn {
  max-width: 220px;
  height: 50px;
}
.custom-file-upload {
  position: relative;
  display: inline-block;
  font-family: "Onest-Bold", sans-serif; /* Your custom font */
  font-size: 16px;
}
.file-upload-label {
  background-color: #f7931a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  font-size: 16px;
  font-family: var(--onest-Regular);
}
.file-upload-label i {
  font-size: 18px;
}
input[type="file"] {
  display: none; /* Hide default file input */
}
.file-name {
  margin-left: 15px;
  font-size: 14px;
  color: #666;
}
.custom-file-upload .file-name.active {
  color: #333;
  font-weight: bold;
}
.consultation_form input,
.consultation_form textarea {
  width: 100%;
  height: 60px;
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 25px 0px 25px;
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: #7c7c7c;
  margin: 0px 0px 25px 0px;
}
.consultation_form textarea {
  height: 135px;
  border-radius: 15px;
  resize: none;
  padding: 20px 25px;
}
.card_btn.submit_btn {
  max-width: 220px;
  height: 50px;
}
.profile_row_wrap {
  background-color: var(--white);
  padding: 30px 20px;
  margin: 10px 0px;
  border-radius: 8px;
}
.profile_row_wrap h3 {
  font-family: var(--onest-SemiBold);
  font-size: 18px;
  color: var(--black);
  line-height: 1;
}
.profile_row_wrap p {
  font-family: var(--onest-Regular);
  font-size: 18px;
  color: var(--black);
  line-height: 1;
}
.custome_accordion_wrap {
  display: flex;
  align-items: center;
  gap: 35px;
}
.custome_accordion_wrap .icon_box {
  width: 74px;
  height: 74px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-family: var(--onest-Regular);
  color: var(--white);
  background: #f7931a;
}
.custome_accordion_wrap .text_box .top_text {
  font-size: 20px;
  font-family: var(--onest-Regular);
  color: var(--black);
  line-height: 1;
  padding-bottom: 5px;
}
.custome_accordion_wrap .text_box .middle_heading {
  font-size: 25px;
  font-family: var(--onest-Bold);
  color: var(--black);
  line-height: 1;
  padding-bottom: 10px;
}
.custome_accordion_wrap .text_box .desc {
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: var(--black);
  line-height: 1;
}
.accordion-body {
  padding: 30px;
}
.accordion-body p {
  font-size: 18px;
  font-family: var(--onest-Bold);
  color: #666;
  margin-bottom: 20px;
}
.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
}
.accordion-button {
  padding: 30px 28px;
  overflow: hidden;
}
.accordion-button:not(.collapsed) {
  color: unset;
  background-color: #f7931a36;
  box-shadow: none;
}
.accordion-button:focus {
  border-color: unset;
  outline: 0;
  box-shadow: none;
}
.accordion-button::after {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background-color: #f7931a59;
  border-radius: 100%;
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-position: 19px 19px;
  background-size: 17px;
  transition: var(--bs-accordion-btn-icon-transition);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}
/* SERVICES-PAGES-START */
/* BITCOIN-PAGE-START */
.servive_common_banner {
  height: 55vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--orange);
}
.service_banner_text {
  width: 70%;
  margin: 0 auto;
  text-align: center;
}
.service_banner_text h6 {
  font-family: var(--onest-SemiBold);
  font-size: 60px;
  color: var(--white);
  line-height: 1.1;
  text-transform: capitalize;
}
.service_banner_text p {
  font-family: var(--onest-Regular);
  font-size: 20px;
  color: var(--white);
  margin: 0px 0px 20px 0px;
  width: 75%;
  margin: 0 auto;
  padding: 0px 0px 30px 0px;
}
.bitcoin_first_wrapper {
  padding: 100px 0px;
}
.bitcoin_first_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 90%;
  margin: 0 auto;
}
.bitcoin_first_wrap_box {
  background-color: #f5f5f5;
  padding: 70px 50px;
  height: 640px;
  position: relative;
}
.bitcoin_box_img {
  width: 100px;
  margin-bottom: 10px;
}
.bitcoin_box_ntm .sec-btn {
  margin: 0;
  position: absolute;
  bottom: 40px;
  left: 50px;
}
.bitcoin_box_text {
  margin-bottom: 30px;
}
.bitcoin_box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bitcoin_box_text h6 {
  font-family: var(--onest-Regular);
  font-size: 48px;
  color: var(--black);
  text-transform: capitalize;
  margin: 0 0 10px 0;
}
.bitcoin_box_text p {
  font-size: 18px;
  font-family: var(--onest-Regular);
  color: #666;
  margin: 0 0 10px 0;
  line-height: 30px;
}
.service_common_bottom_wrapper {
  display: flex;
  align-items: center;
  position: relative;
  background: var(--orange);
  padding: 70px 0px;
}
.service_common_bottom_wrap_text {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
.service_common_bottom_wrap_text h6 {
  font-family: var(--onest-SemiBold);
  font-size: 50px;
  color: var(--white);
  line-height: 1.1;
  text-transform: capitalize;
  margin: 0px 0px 20px 0px;
}
.service_common_bottom_wrap_text p {
  font-size: 18px;
  font-family: var(--onest-Regular);
  color: var(--white);
  padding: 0px 0px 30px 0px;
}
.service_common_bottom_wrap_btn a {
  width: 230px;
  border: 0;
}
/* BITCOIN-PAGE-END */
/* DIGITAL-PAGE-START */
.digital_first_wrapper {
  padding: 100px 0px;
}
.digital_first_wrap_text_img {
  margin: 0 0 20px 0;
}
.digital_first_wrap_text h6 {
  font-size: 50px;
  font-family: var(--onest-Medium);
  color: var(--black);
  text-transform: capitalize;
  margin: 0 0 30px 0;
}
.digital_first_wrap_text h5 {
  font-size: 24px;
  font-family: var(--onest-Medium);
  color: var(--black);
  text-transform: capitalize;
  margin: 0 0 10px 0;
}
.digital_first_wrap_text p {
  font-size: 18px;
  font-family: var(--onest-Regular);
  color: #666;
  margin: 0 0 10px 0;
  line-height: 30px;
}
/* DIGITAL-PAGE-END */
/* CONTACT-PAGE-START */
.contact_first_wrapper {
  padding: 100px 0px;
}
.contact_wrap_link h6 {
  font-size: 60px;
  font-family: var(--onest-Regular);
  color: var(--black);
  text-transform: capitalize;
  margin: 0 0 50px 0;
}
.contact_wrap_link ul li a {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin: 0 0 30px 0;
}
.contact_wrap_link ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background-color: var(--orange);
  width: 60px;
  height: 60px;
  border-radius: 40px;
}
.contact_wrap_link ul li a span {
  width: 60%;
}
.contact_wrap_link ul li a span h5 {
  font-size: 22px;
  font-family: var(--onest-Bold);
  color: var(--black);
  text-transform: capitalize;
  margin: 0 0 10px 0;
}
.contact_wrap_link ul li a span p {
  font-size: 16px;
  font-family: var(--onest-Medium);
  color: var(--black);
  line-height: 1.2;
}
.contact_warp_form {
  width: 90%;
  margin: 0 auto;
  border-radius: 8px;
  background: #f6f6f6;
  padding: 40px;
}
.contact_first_wrapper .contact_warp_form {
  background: transparent;
}
.contact_first_wrapper .contact_warp_form .check_box_flex p {
  color: #707070;
}
.contact_first_wrapper .contact_warp_form .check_box_flex .path {
  stroke: #707070;
}
.contact_first_wrapper .consultation_form textarea {
  height: 165px;
}
.contact_first_wrapper .consultation_form .card_btn.submit_btn {
  max-width: 180px;
}
/* CONTACT-PAGE-END */
/* CALENDER-PAGE-START */
.calender_first_wrapper {
  padding: 100px 0px;
}
.calender_wrap_form {
  padding-left: 40px;
}
.calender_wrap_form h3 {
  font-size: 60px;
  font-family: var(--onest-Regular);
  color: var(--black);
  text-transform: capitalize;
  margin: 0 0 30px 0;
}
.input_date_wrap {
  position: relative;
}
.input_date_wrap img {
  position: absolute;
  top: 18px;
  right: 23px;
  background: #fff;
}
.input_date_wrap:focus-within img {
  display: none;
}
/* CALENDER-PAGE-END */

.gen_dropdown {
  position: relative;
}
.gen_dropdown_list {
  position: absolute;
  padding: 10px 20px;
  top: 40px;
  display: none;
  border: 1px solid #fff;
  border-radius: 10px;
  background: #ffffff;
  z-index: 999;
  width: 260px;
  left: -20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.gen_dropdown_list a {
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: var(--white);
  display: block;
  margin: 10px 0px;
  width: fit-content;
}
.gen_dropdown i {
  color: #000;
  cursor: pointer;
  font-size: 13px;
  margin: 0px 0px 0px 3px;
  transition: 0.5s all;
}
.gen_dropdown:hover .nav_item i {
  color: var(--yellow);
}
cyber-hornet_css

/* ABOUTUS-PAGE-START */
.aboutus_wrapper {
  padding: 100px 0px 0px 0px;
}
/* ABOUTUS-PAGE-END */

/* BLOGS-ARTICLES-START */
.blog_articles_warpper {
  padding: 100px 0px;
}
.blog_articles_wrap {
  background-color: #f5f5f5;
  border-radius: 10px;
}
.blog_articles_wrap_main {
  padding: 30px 50px;
}
.blog_articles_main_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 30px 0;
}
.blog_articles_box_img {
  width: 400px;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
}
.blog_articles_box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all;
}
.blog_articles_box_img:hover img {
  transform: scale(1.1);
}
.blog_articles_box_text {
  width: 70%;
  margin: 0 auto;
}
.blog_articles_box_text h3 {
  font-size: 16px;
  font-family: var(--onest-Regular);
  display: inline-block;
  color: var(--white);
  background-color: #666;
  padding: 15px 30px;
  border-radius: 30px;
  margin: 0px 0px 50px 0px;
}
.blog_articles_box_text h6 {
  font-size: 30px;
  font-family: var(--onest-Medium);
  text-transform: capitalize;
  color: var(--black);
  margin: 0 0 10px 0;
}
.blog_articles_box_text p {
  font-size: 18px;
  font-family: var(--onest-Regular);
  color: var(--blue);
}

/* BLOGS-ARTICLES-END */

/* BLOGS-DETAILS-START */
.blog_details_wrapper {
  padding: 100px 0px;
}
.blog_details_wrap {
  width: 90%;
  margin: 0 auto 50px auto;
}
.blog_details_wrap_img {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 0 10px 0;
}
.blog_details_wrap_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  transition: 0.5s all;
}
.blog_details_wrap_img:hover img {
  transform: scale(1.1);
}
.blog_details_wrap_comment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  margin: 0 0 30px 0;
}
.blog_details_wrap_comment p {
  font-size: 20px;
  font-family: var(--onest-Regular);
  color: var(--blue);
  text-transform: capitalize;
}
.blog_details_wrap_comment a {
  font-size: 20px;
  font-family: var(--onest-Medium);
  color: var(--black);
  text-transform: capitalize;
  transition: 0.5s all;
}
.blog_details_wrap_comment a span {
  font-size: 18px;
}
.blog_details_wrap_comment:hover a {
  color: var(--orange);
}
.blog_details_text_box_ttext h6 {
  font-size: 50px;
  font-family: var(--onest-SemiBold);
  text-transform: capitalize;
  color: var(--orange);
  margin: 0 0 20px 0;
}
.blog_details_text_box_text {
  margin: 0 0 20px 0;
}
.blog_details_text_box_text h6 {
  font-size: 35px;
  font-family: var(--onest-Medium);
  color: var(--black);
  text-transform: capitalize;
  margin: 0 0 10px 0;
}
.blog_details_text_box_text p {
  font-size: 18px;
  font-family: var(--onest-Regular);
  color: var(--black);
  line-height: 24px;
}
.blog_details_wrap_form {
  width: 90%;
  margin: 0 auto;
  border-radius: 10px;
  background: #f6f6f6;
  padding: 40px;
}
/* BLOGS-DETAILS-END */

/* ABOUTUS-PAGE-START */
.aboutus_wrapper {
  padding: 100px 0px 0px 0px;
}
/* ABOUTUS-PAGE-END */

.clock {
  font-family: "Arial", sans-serif;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  background: var(--white);
  color: var(--black);
  padding: 10px;
  border-radius: 10px;
  width: 240px;
  margin: 0px auto 40px auto;
  box-shadow: inset -2px -1px 2px 2px #0000002e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
#customModal {
  display: none; /* Hide the modal initially */
}

.custom_modal-content a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 225px; /* Missing 'px' */
  height: 45px;
  background-color: var(--white);
  color: var(--black);
  border-radius: 50px;
  cursor: pointer;
  transition: 0.25s ease;
  font-family: var(--onest-Regular);
  font-size: 16px;
  margin: 0 auto;
}
.custom_modal-content i {
  transition: 0.05s ease;
}
.custom_modal-content a:hover i {
  transform: translateX(5px);
  transition: 0.05s ease;
}
.custom_modal-content {
  background-color: var(--yellow);
  max-width: 400px;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom_modal-content h2 {
  color: var(--white);
  margin: 0 0 15px 0;
}

.custom_modal-content p {
  color: var(--white);
  font-family: var(--onest-Regular);
  margin: 0 0 20px 0;
}
.login_form_wrap .form_group select {
  width: 100%;
  height: 65px;
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 25px 0px 25px;
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: #7c7c7c;
}
.avatar-upload .avatar-edit {
  position: absolute;
  left: 12%;
  z-index: 1;
  bottom: -4%;
}
.avatar-upload .avatar-preview {
  width: 110px;
  height: 110px;
  position: relative;
  border-radius: 100%;
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 5px -1px 3px 0px #00000012;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  border-radius: 100%;
  background-color: var(--black);
  border: 1px solid var(--white);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.avatar-upload .avatar-edit input + label:hover::after {
  color: var(--black);
}
.avatar-upload .avatar-edit input + label::after {
  content: "\f030";
  font-family: "FontAwesome";
  color: var(--white);
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  font-size: 15px;
  transition: 0.5s all;
}
.avatar-upload {
  position: relative;
  margin: 0px 0px 30px 0px;
  overflow: hidden;
}
.index_second_cr_box_img {
  overflow: hidden;
  border-radius: 5px;
  max-width: 170px;
  height: 145px;
}
.blog_details_text_box_ttext p {
  font-size: 18px;
  font-family: var(--onest-Regular);
  color: #666666;
  margin: 0px 0px 20px 0px;
}

.blog_details_text_box_ttext p strong {
  color: var(--black);
  margin: 0px 10px 0px 0px;
  font-size: 22px;
}
.acc_vid_wrap {
  width: 100%;
  height: 100%;
}
.acc_vid_wrap video {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.courses_main_box1 {
  background: var(--white);
  padding: 20px 25px 35px 25px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin-bottom: 45px;
  overflow-y: scroll;
  max-height: 940px;
}

.user_dbox_2wrap .avatar-upload .avatar-edit {
  left: 7%;
}
.user_dbox_2wrap_input input,
.user_dbox_2wrap_input textarea {
  width: 100%;
  height: 60px;
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 25px 0px 25px;
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: #7c7c7c;
}
.user_dbox_2wrap_input textarea {
  height: 135px;
  border-radius: 15px;
  resize: none;
  padding: 20px 25px;
}
.user_dbox_1_textf {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login_form_wrap .form_group label {
  font-size: 18px;
  font-family: var(--onest-Regular);
  color: var(--black);
  margin: 0px 0px 10px 20px;
}
.login_form_wrap .form_group input {
  width: 100%;
  height: 65px;
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 25px 0px 25px;
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: #7c7c7c;
}
.login_form_wrap .form_group textarea {
  width: 100%;
  height: 135px;
  background-color: transparent;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px 25px;
  resize: none;
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: #7c7c7c;
}
.notification_page_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 25px;
  border-radius: 10px;
  background: #f7931a36;
  border-color: #fbc27d;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 5px;
  transition: all 0.25s;
  margin-bottom: 20px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.ad_tag {
  position: absolute;
  top: -5px;
  left: 10px;
}
.ad_tag span {
  font-family: var(--onest-Medium);
  background-color: #ffaa42;
  color: var(--white);
  border-radius: 0px 0px 25px 25px;
  padding: 10px 15px;
  font-size: 8px;
}
.notification_page_wrap {
  height: 580px;
  overflow-y: scroll;
}
.notification_page_wrapper {
  display: flex;
  flex-direction: column-reverse;
}

.notification_page_wrap::-webkit-scrollbar {
  width: 5px;
}

.notification_page_wrap::-webkit-scrollbar-track {
  background: var(--white);
}

.notification_page_wrap::-webkit-scrollbar-thumb {
  background-color: var(--black);
}
.notification_page_item .text_box h2 {
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: #5f5e61;
  margin-bottom: 5px;
}
.notification_page_item .text_box h2 span {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}
.blog_comments {
  margin: 0px 0px 20px 0px;
}
.blog_comments h6 {
  font-family: var(--inter-bold);
  font-size: 20px;
  color: var(--black);
  margin: 0px 0px 10px 0px;
}
.blog_comments h4 {
  font-family: var(--inter-medium);
  font-size: 14px;
  color: var(--black);
  opacity: 0.5;
  margin: 0px 0px 10px 0px;
}
.blog_comments h4 i {
  margin: 0px 5px 0px 0px;
}
.blog_comments p {
  font-family: var(--inter-regular);
  font-size: 16px;
  color: var(--black);
}
.blog_comments_wrap {
  padding: 20px;
  border: 1px solid #0000001f;
  border-radius: 20px;
  background-color: #eee;
  margin: 0px auto 30px auto;
  width: 90%;
}
.blog_comments_wrap_text h6 {
  font-size: 30px;
  font-family: var(--kanit-regular);
  color: var(--black);
  text-transform: capitalize;
  margin: 0 0 20px 0;
}
.read_notification .text_box .desc p,
.read_notification .text_box .desc span {
  color: #5f5e61;
}

.form-modal .main-form-wrap {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding: 20px 0px 10px 0px;
}
.form-group input {
  width: 100%;
  height: 65px;
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 25px 0px 25px;
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: #7c7c7c;
}
.form-group textarea {
  width: 100%;
  height: 150px;
  background-color: transparent;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 15px 0px 15px;
  font-size: 16px;
  font-family: var(--onest-Regular);
  color: #7c7c7c;
  position: relative;
  resize: none;
}
.form-group {
  margin: 0px 0px 10px 0px;
}
.modal-cont-close span {
  color: var(--white);
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 20px;
  right: -10px;
  top: -10px;
  z-index: 999999;
  cursor: pointer;
}
.modal-content {
  border-radius: 30px;
}
.dark-btn-f button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 230px;
  height: 60px;
  color: var(--white);
  border: 1px solid transparent;
  background-color: #4d4d4d;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.5s ease;
  font-family: var(--onest-Regular);
  font-size: 16px;
  margin: 0 auto;
}
.home-banner-form h2 {
  font-family: var(--onest-SemiBold);
  font-size: 35px;
  color: var(--black);
  line-height: 1.1;
  text-transform: capitalize;
  margin: 0px 0px 10px 0px;
}
a.get-btn {
  width: 140px;
}
.user_crbtn_f {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user_crbtn_f button {
  width: 140px;
}
.home-banner-form a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 230px;
  height: 60px;
  color: var(--white);
  border: 1px solid transparent;
  background-color: #4d4d4d;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.5s ease;
  font-family: var(--onest-Regular);
  font-size: 16px;
  margin: 0 auto;
}
.home-banner-form a i {
  transition: 0.2s ease;
}
.home-banner-form a:hover i {
  transform: translateX(5px);
}
.home-banner-form a:hover {
  background-color: var(--yellow);
  color: var(--white);
}
.home-banner-form h6 {
  font-family: var(--onest-Medium);
  font-size: 35px;
  color: var(--orange);
  text-transform: capitalize;
  margin: 0px 0px 10px 0px;
}

.home-banner-form h5 {
  font-family: var(--onest-Medium);
  font-size: 25px;
  color: var(--black);
  text-transform: capitalize;
  margin: 0px 0px 10px 0px;
}

.home-banner-form p {
  font-family: var(--onest-Regular);
  font-size: 16px;
  color: var(--black);
  text-transform: capitalize;
  margin: 0px 0px 15px 0px;
}
.thank_first_wrapper {
    padding: 150px 0px 130px 0px;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thank_first_wrap_text {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}
.thank_first_wrap_text h6 {
    font-size: 70px;
    font-family: var(--onest-Regular);
    color: var(--black);
    margin: 0px 0px 5px 0px;
}
.thank_first_wrap_text p {
    font-size: 18px;
    font-family: var(--onest-Regular);
    color: #666666;
    margin: 0px 0px 20px 0px;
}