/*============================
    GLOBAL CSS START
============================*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
}

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

a {
  display: inline-block;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--colorBlack);
}

p,
span {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  color: var(--paraColor);
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: var(--bodyFont);
}

img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

input,
textarea {
  width: 100%;
  padding: 12px 20px;
  outline: none;
  resize: none;
  border: 1px solid var(--borderColor);
  border-radius: 0;
  font-weight: 400;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

input::placeholder,
textarea::placeholder {
  color: #787882;
}

button {
  border: none;
}

:root {
  --colorPrimary: #356df1;
  --colorOrange: #f5d04a;
  --colorGreen: #43d477;
  --colorBlack: #1e1e2f;
  --colorWhite: #ffffff;
  --paraColor: #787882;
  --colorLightBg: #efeff8;
  --ratingColor: #ffa121;
  --borderColor: rgba(30, 30, 47, 0.1);
  --bodyFont: "Roboto", sans-serif;
}

.common_btn,
.common_btn_2 {
  color: var(--colorWhite);
  background: var(--colorPrimary);
  font-size: 15px;
  font-weight: 500;
  padding: 11px 35px;
  transition: all 0.3s ease;
  position: relative;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  z-index: 1;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
}

.common_btn i,
.common_btn_2 i {
  margin-left: 5px;
}

.common_btn:after,
.common_btn_2:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: var(--colorBlack);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.common_btn:hover,
.common_btn_2:hover {
  color: var(--colorWhite);
}

.common_btn:hover:after,
.common_btn_2:hover:after {
  left: -1px;
  width: 101%;
}

.common_btn_2 {
  background: var(--colorWhite);
  color: var(--colorBlack);
  border: 1px solid var(--borderColor);
}

.common_btn_2:after {
  background: var(--colorPrimary);
}

.wsus__section_heading {
  text-align: center;
}

.wsus__section_heading h5 {
  display: inline-block;
  color: var(--colorPrimary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--colorLightBg);
  padding: 6px 15px 4px 15px;
  margin-bottom: 20px;
}

.wsus__section_heading h2,
.wsus__section_heading h2 span {
  font-size: 44px;
  font-weight: 600;
  text-align: center;
  color: var(--colorBlack);
}

.wsus__section_heading h2 span {
  border: 1px solid #f5d04a;
  padding: 0px 5px 5px 5px;
}

.heading_left {
  text-align: left;
}

.heading_left h2 {
  text-align: left;
}

.slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 8px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  font-size: 0;
  background: rgba(3, 6, 17, 0.2);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.slick-dots li.slick-active button {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
}

.nextArrow,
.prevArrow {
  width: 45px;
  height: 45px;
  padding: 0;
  line-height: 44px !important;
  text-align: center;
  border: 1px solid var(--borderColor);
  cursor: pointer;
  background: var(--colorWhite);
  border-radius: 50%;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  top: 0;
  right: 12px;
  z-index: 1;
}

.prevArrow {
  right: auto;
  left: 12px;
}

.nextArrow,
.nextArrow:hover,
.prevArrow:hover {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: var(--colorWhite);
}

.title {
  display: block;
  color: var(--colorBlack);
  font-size: 20px;
  font-weight: 600;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.title:hover {
  color: var(--colorPrimary);
}

.read_btn {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.read_btn i {
  margin-left: 5px;
}

.read_btn:hover {
  color: var(--colorPrimary);
}

.play_btn {
  width: 45px;
  height: 45px;
  line-height: 43px;
  text-align: center;
  background: var(--colorWhite);
  border-radius: 50%;
  color: var(--colorBlack);
  font-size: 13px;
  margin-right: 10px;
  position: relative;
  z-index: 1;
  box-shadow: 3px 3px 0px 0px #ae2618;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.play_btn img {
  width: 18px !important;
  height: 18px !important;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.play_btn:hover {
  box-shadow: -3px -3px 0px 0px #ae2618;
}

.play_btn:hover img {
  transform: rotate(124deg);
  -webkit-transform: rotate(124deg);
  -moz-transform: rotate(124deg);
  -ms-transform: rotate(124deg);
  -o-transform: rotate(124deg);
}

.home_3 .wsus__section_heading h5 {
  color: var(--paraColor);
  font-weight: 600;
  position: relative;
  padding: 0px 0px 0px 30px;
  background: none;
  text-transform: capitalize;
}

.home_3 .wsus__section_heading h5::after {
  position: absolute;
  content: "";
  background: url(../images/book_icon_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  top: -5px;
  left: -4px;
}

.home_4 .nextArrow,
.home_4 .nextArrow:hover,
.home_4 .prevArrow:hover {
  background: var(--colorOrange);
  border-color: var(--colorOrange);
  color: var(--colorBlack);
}

/* breadcrumb start */
.wsus__breadcrumb {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
  overflow: hidden;
}

.wsus__breadcrumb::after {
  position: absolute;
  content: "";
  background: url(../images/breadcrumb_shapes.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 180px;
  height: 100px;
  top: 121px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  animation: banner_animi_2 linear 3s infinite alternate;
  -webkit-animation: banner_animi_2 linear 3s infinite alternate;
  z-index: 3;
}

.wsus__breadcrumb::before {
  position: absolute;
  content: "";
  background: url(../images/breadcrumb_shapes_3.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 85px;
  height: 100px;
  bottom: 0;
  right: 110px;
  animation: banner_animi_2 linear 3s infinite alternate;
  -webkit-animation: banner_animi_2 linear 3s infinite alternate;
  z-index: 3;
}

.wsus__breadcrumb_overlay::after {
  position: absolute;
  content: "";
  background: url(../images/breadcrumb_shapes_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 135px;
  height: 80px;
  bottom: 0;
  left: 55px;
  z-index: 3;
}

.wsus__breadcrumb_overlay {
  padding: 285px 0px 170px 0px;
  background: rgba(4, 14, 39, 0.86);
  position: relative;
}

.wsus__breadcrumb_text {
  position: relative;
  z-index: 2;
}

.wsus__breadcrumb_text h1 {
  color: var(--colorWhite);
  font-size: 54px;
  font-weight: 600;
  margin-bottom: 20px;
}

.wsus__breadcrumb_text ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 30px;
  padding-left: 25px;
  position: relative;
}

.wsus__breadcrumb_text ul::after {
  position: absolute;
  content: "\f015";
  font-family: "font awesome 5 free";
  font-size: 16px;
  font-weight: 600;
  color: var(--colorWhite);
  top: -1px;
  left: 0;
}

.wsus__breadcrumb_text ul li,
.wsus__breadcrumb_text ul li a {
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}

.wsus__breadcrumb_text ul li a::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: var(--colorWhite);
  top: 9px;
  right: -18px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* breadcrumb end */

/* pagination start */
.wsus__pagination ul {
  gap: 10px;
}

.wsus__pagination ul li a {
  color: var(--colorBlack);
  font-size: 16px;
  font-weight: 500;
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0 !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  border: none;
}

.wsus__pagination ul li a:hover,
.wsus__pagination ul li a.active {
  background: var(--colorOrange);
  color: var(--colorBlack);
  box-shadow: none;
}

/* pagination end */

/*============================
    GLOBAL CSS END
============================*/

/*============================
    HOME PAGE 01 START
============================*/
/* header start */
header {
  background: var(--colorBlack);
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

header .wsus__header_left li {
  padding-right: 25px;
  margin-right: 25px;
  position: relative;
}

header .wsus__header_left li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  top: 10px;
  right: 0;
}

header .wsus__header_left li:last-child {
  margin: 0;
  padding: 0;
}

header .wsus__header_left li:last-child::after {
  display: none;
}

header .wsus__header_left li a {
  color: #ffffff60;
  font-size: 14px;
  font-weight: 500;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

header .wsus__header_left li a i {
  margin-right: 5px;
  color: var(--colorWhite);
}

header .wsus__header_left li a:hover {
  color: var(--colorWhite);
}

header .wsus__header_center p {
  color: #ffffff60;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

header .wsus__header_center p span {
  color: var(--colorWhite);
  background: var(--colorPrimary);
  font-size: 14px;
  font-weight: 500;
  padding: 2px 9px;
  border-radius: 30px;
  margin-right: 10px;
  line-height: initial;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

header .wsus__header_center p a {
  color: var(--colorWhite);
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

header .wsus__header_center p a:hover {
  color: var(--colorOrange);
}

header .wsus__header_right {
  justify-content: end;
}

header .wsus__header_right li {
  position: relative;
  padding-right: 20px;
}

header .wsus__header_right li:first-child {
  padding-right: 20px;
}

header .wsus__header_right li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  top: 10px;
  right: 0;
}

header .wsus__header_right li:last-child:after {
  display: none;
}

header .wsus__header_right li .nice-select {
  background-color: transparent;
  border: none;
}

header .wsus__header_right li .nice-select .current {
  color: var(--colorWhite);
  font-size: 14px;
  font-weight: 600;
}

header .wsus__header_right li .nice-select:after {
  border-bottom: 2px solid var(--colorWhite);
  border-right: 2px solid var(--colorWhite);
  right: 3px;
  margin-top: -6px;
}

header .wsus__header_right li .nice-select .list {
  margin-top: 0;
  width: auto;
}

/* header end */

/* menu start */
.main_menu {
  height: 80px;
  padding: 0px 30px;
  width: 100%;
  background: var(--colorWhite);
  position: fixed;
  top: 40px;
  left: 0;
  z-index: 9;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu .navbar-brand {
  padding: 0;
  margin: 0;
  max-width: 150px;
  margin-right: 50px;
}

.main_menu_2 .navbar-brand {
  margin-right: 20px;
  border-right: 1px solid rgba(30, 30, 47, 0.1);
  padding-right: 15px;
}

.main_menu .navbar-nav {
  gap: 30px;
  line-height: 80px;
}

.main_menu .navbar-nav .nav-item {
  position: relative;
}

.main_menu .navbar-nav .nav-item .nav-link {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  padding: 0;
  margin: 0;
  text-transform: capitalize;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu .navbar-nav .nav-item:hover .nav-link,
.main_menu .navbar-nav .nav-item .nav-link.active {
  color: var(--colorPrimary);
}

.main_menu .droap_menu {
  position: absolute;
  top: 80%;
  left: 0;
  width: 250px;
  background: var(--colorWhite);
  line-height: initial;
  padding: 12px 25px;
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.25s;
  -webkit-transition: all linear 0.25s;
  -moz-transition: all linear 0.25s;
  -ms-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  max-height: 450px;
  overflow: hidden;
  overflow-y: auto;
  z-index: 9;
}

.main_menu .droap_menu::-webkit-scrollbar {
  background: var(--colorWhite);
  width: 3px;
  height: 30px;
}

.main_menu .droap_menu::-webkit-scrollbar-thumb {
  background: var(--paraColor);
}

.main_menu .droap_menu li a {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  text-transform: capitalize;
  display: block;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  padding: 12px 0px;
  position: relative;
  border-bottom: 1px solid var(--colorWhite);
}

.main_menu .droap_menu li a::after {
  position: absolute;
  content: "";
  width: 0px;
  height: 50%;
  background: var(--colorPrimary);
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.main_menu .droap_menu li a:hover,
.main_menu .droap_menu li a.active {
  color: var(--colorPrimary);
}

.main_menu .droap_menu li a:hover::after,
.main_menu .droap_menu li a.active::after {
  opacity: 1;
  width: 4px;
}

.main_menu .navbar-nav .nav-item:hover .droap_menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.main_menu .right_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 35px;
}

.main_menu .right_menu form {
  border: 1px solid var(--borderColor);
  align-items: center;
}

.menu_category {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all linear 0.3s;
  border-right: 1px solid var(--borderColor);
  padding: 11px 22px 11px 20px;
  margin-right: 10px;
  position: relative;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.menu_category:hover {
  color: var(--colorPrimary);
}

.menu_category i:first-child {
  color: var(--colorPrimary);
}

.main_menu .right_menu form .search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin-right: 5px;
}

.main_menu .right_menu form .search input {
  border: none;
  padding: 6px 40px 6px 10px;
  width: 350px;
}

.main_menu .right_menu form .search button {
  position: absolute;
  top: 50%;
  right: 0;
  width: 35px;
  text-align: center;
  height: 35px;
  background: var(--colorPrimary);
  color: var(--colorWhite);
  transition: all linear 0.3s;
  transform: translateY(-50%);
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.main_menu .right_menu form .search button:hover {
  background: var(--colorBlack);
}

.main_menu .right_menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0px;
}

.main_menu .right_menu ul li .menu_signin {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  margin-right: 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu .right_menu ul li .menu_signin:hover {
  color: var(--colorPrimary);
}

.main_menu .right_menu ul li .menu_signin span {
  display: inline-block;
  margin-right: 5px;
  width: 17px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu .right_menu ul li .menu_signin:hover span {
  filter: brightness(0) saturate(100%) invert(33%) sepia(66%) saturate(2594%) hue-rotate(213deg) brightness(98%) contrast(92%);
}

.menu_category ul {
  width: 250px;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 23px;
  background: var(--colorWhite);
  box-shadow: 0px 20px 40px 0px rgba(30, 30, 47, 0.1);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  padding: 0 !important;
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid var(--borderColor);
  z-index: 9;
}

.menu_category ul::-webkit-scrollbar {
  background: var(--colorWhite);
  width: 3px;
  height: 30px;
}

.menu_category ul::-webkit-scrollbar-thumb {
  background: var(--paraColor);
}

.menu_category ul li {
  width: 100%;
}

.menu_category ul li a {
  position: relative;
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(23, 23, 24, 0.1);
  display: block;
  padding: 12px 20px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.menu_category ul li:last-child a {
  border: none;
}

.menu_category ul li {
  position: relative;
}

.menu_category ul li a span {
  display: inline-block;
  width: 23px;
  height: auto;
  margin-right: 8px;
}

.menu_category ul li a::after {
  position: absolute;
  content: "\f054";
  font-family: "Font awesome 5 free";
  font-weight: 600;
  color: var(--colorBlack);
  font-size: 12px;
  top: 50%;
  right: 20px;
  opacity: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.menu_category ul li:hover>a {
  color: var(--colorBlack);
}

.menu_category ul li:hover a::after {
  opacity: 1;
}

.menu_category:hover>ul {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}

.category_sub_menu {
  top: 10px !important;
  left: 100% !important;
  margin: 0 !important;
  opacity: 0;
  visibility: hidden;
  border: none !important;
}

.category_sub_menu li a {
  padding: 12.5px 20px !important;
}

.category_sub_menu li a::after {
  display: none !important;
}

.menu_category ul li:hover .category_sub_menu {
  top: 0 !important;
  opacity: 1;
  visibility: visible;
}

.main_menu.menu_fix {
  top: 0;
  box-shadow: 0px 20px 40px 0px rgb(90 90 106 / 10%);
  z-index: 999;
}

@keyframes menu_animate {
  from {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
  }
}

/* mobile menu start */
.navbar-toggler {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--colorPrimary);
  color: var(--colorWhite);
  padding: 0;
  box-shadow: none !important;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border: none;
}

.navbar-toggler.show {
  background: red;
  color: var(--colorWhite);
}

.navbar-toggler .close_icon_close {
  display: none;
}

.navbar-toggler.show .close_icon_close {
  display: inline-block;
}

.navbar-toggler.show .menu_icon_bar {
  display: none;
}

/* mobile menu end */

.mobile_menu_area {
  display: none;
}

/* menu end */

/* banner start */
.wsus__banner {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  margin: 120px 30px 0px 30px;
  padding-left: 125px;
  padding-right: 80px;
  height: 700px;
  position: relative;
}

.wsus__banner .row {
  height: 100%;
}

.wsus__banner_text {
  position: relative;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.wsus__banner_text h1 {
  font-size: 70px;
  font-weight: 600;
  line-height: 80px;
}

.wsus__banner_text p {
  color: var(--colorBlack);
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;
  max-width: 70%;
  margin: 20px 0px 45px 0px;
}

.wsus__banner_text::after {
  position: absolute;
  content: "";
  background: url(../images/banner_shapes_1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 70px;
  height: 52px;
  top: -70px;
  left: -30px;
  animation: banner_animi_1 linear 3s infinite alternate;
  -webkit-animation: banner_animi_1 linear 3s infinite alternate;
}

@keyframes banner_animi_1 {
  from {
    transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    -o-transform: scale(1) rotate(0deg);
  }

  to {
    transform: scale(1.3) rotate(45deg);
    -webkit-transform: scale(1.3) rotate(45deg);
    -moz-transform: scale(1.3) rotate(45deg);
    -ms-transform: scale(1.3) rotate(45deg);
    -o-transform: scale(1.3) rotate(45deg);
  }
}

.wsus__banner::after {
  position: absolute;
  content: "";
  background: url(../images/banner_shapes_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 85px;
  height: 100px;
  bottom: 0px;
  right: 110px;
  animation: banner_animi_2 linear 3s infinite alternate;
  -webkit-animation: banner_animi_2 linear 3s infinite alternate;
}

@keyframes banner_animi_2 {
  from {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }

  to {
    transform: translateX(-40px);
    -webkit-transform: translateX(-40px);
    -moz-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    -o-transform: translateX(-40px);
  }
}

.wsus__banner::before {
  position: absolute;
  content: "";
  background: url(../images/banner_shapes_3.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 180px;
  height: 100px;
  bottom: -100px;
  right: 350px;
  animation: banner_animi_3 linear 1s infinite alternate;
  -webkit-animation: banner_animi_3 linear 1s infinite alternate;
}

@keyframes banner_animi_3 {
  0% {
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(0%) hue-rotate(235deg) brightness(107%) contrast(107%);
  }

  10% {
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(0%) hue-rotate(235deg) brightness(107%) contrast(107%);
  }
}

.wsus__banner_image {
  position: relative;
}

.wsus__banner_image .text {
  position: absolute;
  bottom: -15px;
  left: 40px;
  background: var(--colorWhite);
  box-shadow: 0px 20px 40px 0px rgba(30, 30, 47, 0.08);
  padding: 15px 20px 15px 70px;
  animation: banner_image_animi 1s ease infinite alternate;
  -webkit-animation: banner_image_animi 1s ease infinite alternate;
}

@keyframes banner_image_animi {
  from {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
  }
}

.wsus__banner_image .text h4 {
  font-size: 15px;
  font-weight: 500;
}

.wsus__banner_image .text p {
  color: var(--colorBlack);
  font-size: 13px;
  font-weight: 500;
  opacity: 0.6;
  margin-top: 5px;
}

.wsus__banner_image .text::after {
  position: absolute;
  content: "";
  background: url(../images/banner_img_icon.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 37px;
  height: 30px;
  top: 20px;
  left: 20px;
  box-shadow: 0px 14px 14px 0px rgba(30, 30, 47, 0.2);
}

/* banner end */

/* about us start */
.wsus__about_img {
  padding-left: 70px;
  position: relative;
}

.wsus__about_img::after {
  position: absolute;
  content: "";
  background: url(../images/about_shapes.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 70px;
  height: 78px;
  bottom: 100px;
  left: 0;
  animation: banner_image_animi 1s ease infinite alternate;
}

.wsus__about_text p {
  margin-bottom: 20px;
}

.wsus__about_text ul li {
  position: relative;
  color: var(--colorBlack);
  font-size: 16px;
  font-weight: 500;
  line-height: 38px;
  padding-left: 32px;
}

.wsus__about_text ul li::after {
  position: absolute;
  content: "";
  background: url(../images/check_icon_green.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 22px;
  height: 22px;
  top: 9px;
  left: 0;
}

/* about us end */

/* brand start */
.wsus__brand_slider_area {
  overflow: hidden;
}

.wsus__brand_slider_area h6 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 45px;
}

.wsus__brand_slider_area ul {
  justify-content: space-between;
  gap: 120px;
}

.wsus__brand_slider_area ul li {
  width: 80px;
  height: 80px;
  overflow: hidden;
  text-align: center;
}

.wsus__brand_slider_area ul li a {
  display: inline-block;
  transition: all linear 0.3s;
  opacity: 1;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__brand_slider_area ul li a:hover {
  opacity: 1;
}

/* brand end */

/* category start */
.wsus__category {
  margin: 0px 30px;
  padding: 0px 130px;
  background: var(--colorLightBg);
}

.wsus__category_item {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: block;
  margin-top: 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.category_slider .wsus__category_item,
.category_slider .wsus__category_item_2 {
  margin: 25px 12px 0 12px;
}

.wsus__category_item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(30, 30, 47, 0) 0%, #1e1e2f 100%);
  top: 0;
  left: 0;
  z-index: 1;
}

.wsus__category_text {
  position: absolute;
  width: 100%;
  bottom: 30px;
  left: 30px;
  align-items: center;
  z-index: 2;
}

.wsus__category_text .icon {
  width: 70px;
  height: 70px;
  background: var(--colorOrange);
  border-radius: 50%;
  overflow: hidden;
  padding: 15px;
  margin-right: 15px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__category_text .text {
  max-width: 80%;
}

.wsus__category_text .text h5 {
  color: var(--colorWhite);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.wsus__category_text .text p {
  color: var(--colorWhite);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__category_text .text p i {
  margin-left: 5px;
}

.wsus__category_item:hover .text p {
  opacity: 1;
  color: var(--colorOrange);
}

.wsus__category_item:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

/* category end */

/* call to action start */
.wsus__call_to_action {
  padding: 0px 160px;
  position: relative;
  z-index: 1;
  margin-top: -135px;
}

.wsus__call_to_action_bg {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  overflow: hidden;
}

.wsus__call_to_action_text {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.wsus__call_to_action_text .img {
  width: 240px;
  height: 270px;
  margin-right: 120px;
}

.wsus__call_to_action_text h3 {
  color: var(--colorWhite);
  font-size: 44px;
  font-weight: 600;
  line-height: 54px;
  max-width: 50%;
}

.wsus__call_to_action_text a {
  background: var(--colorWhite);
  color: var(--colorBlack);
}

/* call to action end */

/* courses start */
.wsus__filter_area ul {
  border-bottom: 1px solid var(--borderColor);
  padding-bottom: 20px;
  gap: 35px;
}

.wsus__filter_area ul li button {
  color: var(--paraColor);
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  margin: 0;
  position: relative;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__filter_area ul li button::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  background: var(--colorPrimary);
  bottom: -21px;
  left: 0;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__filter_area ul li button:hover,
.wsus__filter_area ul li button.active {
  background: transparent !important;
  color: var(--colorBlack) !important;
}

.wsus__filter_area ul li button.active::after {
  opacity: 1;
}

.wsus__single_courses {
  background: var(--colorWhite);
  margin-top: 25px;
  border: 1px solid var(--borderColor);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  position: relative;
  padding: 10px;
  overflow: hidden;
}

.wsus__single_courses_img {
  height: 210px;
  overflow: hidden;
  display: block;
  position: relative;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_courses_img img {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_courses_img .main_category,
.wsus__single_courses_img .sub_category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: var(--colorBlack);
  background: var(--colorWhite);
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 3px 10px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  z-index: 1;
}

.wsus__single_courses_img .main_category {
  bottom: 50px;
}

.wsus__single_courses_img .main_category:hover,
.wsus__single_courses_img .sub_category:hover {
  background: var(--colorOrange);
}

.wsus__single_courses_img ul {
  position: absolute;
  top: 10px;
  right: -10px;
  z-index: 9;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_courses_img ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--colorWhite);
  margin-bottom: 5px;
  text-align: center;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_courses_img ul li a img {
  width: 16px !important;
  height: 16px !important;
  margin: 0 auto;
  transform: scale(1) !important;
  -webkit-transform: scale(1) !important;
  -moz-transform: scale(1) !important;
  -ms-transform: scale(1) !important;
  -o-transform: scale(1) !important;
}

.wsus__single_courses_img ul li a:hover {
  background: var(--colorOrange);
}

.wsus__single_courses:hover .wsus__single_courses_img ul {
  opacity: 1;
  right: 10px;
}

.wsus__single_courses_text {
  position: relative;
  padding: 20px 20px 50px 20px;
}

.wsus__single_courses_text .wishlist {
  width: 40px;
  height: 40px;
  background: var(--colorBlack);
  border-radius: 50%;
  position: absolute;
  top: -20px;
  right: 20px;
  overflow: hidden;
  padding: 11px 10px 11px 10px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  z-index: 2;
  display: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__single_courses_text .wishlist:hover {
  background: var(--colorPrimary);
}

.wsus__single_courses_text .rating {
  display: inline-block;
  border: 1px solid var(--borderColor);
  color: var(--ratingColor);
  padding: 3px 10px;
  margin-bottom: 15px;
}

.wsus__single_courses_text .rating span {
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
}

.wsus__single_courses_text ul {
  display: inline-flex;
  flex-wrap: wrap;
  background: #efeff8;
  margin-top: 15px;
  margin-bottom: 18px;
}

.wsus__single_courses_text ul li {
  position: relative;
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 400;
  padding: 5px 14px 5px 38px;
}

.wsus__single_courses_text ul li:first-child {
  border-right: 1px solid rgba(30, 30, 47, 0.14);
}

.wsus__single_courses_text ul li::after {
  position: absolute;
  content: "";
  background: url(../images/book_icon.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 7px;
  left: 14px;
}

.wsus__single_courses_text ul li:last-child:after {
  background: url(../images/user_icon_gray.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
}

.wsus__single_courses_text .category,
.wsus__single_courses_text .category a {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
}

.wsus__single_courses_text .category a {
  border: none;
  color: var(--paraColor);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  border-bottom: 1px solid var(--borderColor);
}

.wsus__single_courses_text .category a:hover {
  color: var(--colorPrimary);
  border-color: var(--colorPrimary);
}

.wsus__single_courses_text .author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}

.wsus__single_courses_text .author .img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__single_courses_text .author p {
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 500;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_courses_text .author:hover p {
  color: var(--colorPrimary);
}

.wsus__single_courses_footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px 5px 30px;
  position: relative;
}

.wsus__single_courses_footer::after {
  position: absolute;
  content: "";
  width: 110%;
  height: 1px;
  background: rgba(30, 30, 47, 0.06);
  top: 0;
  left: -20px;
}

.wsus__single_courses_footer p {
  color: var(--colorPrimary);
  font-size: 18px;
  font-weight: 700;
}

.wsus__single_courses_footer p del {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 500;
  margin-right: 5px;
}

.wsus__single_courses_img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 50px solid var(--colorWhite);
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_courses:hover .wsus__single_courses_img:after {
  border: 0px solid var(--colorWhite);
  opacity: 0.6;
}

.wsus__single_courses:hover .wsus__single_courses_img img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

/* courses end */

/* hotline start */
.wsus__hotline {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 60px 0px;
  margin-left: 160px;
  margin-right: 160px;
}

.wsus__hotline_text {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.wsus__hotline_text .call {
  text-align: right;
}

.wsus__hotline_text .mail {
  text-align: left;
}

.wsus__hotline_text .call p,
.wsus__hotline_text .mail p {
  color: var(--colorWhite);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}

.wsus__hotline_text .call p span,
.wsus__hotline_text .mail p span {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px;
}

.wsus__hotline_text .call a,
.wsus__hotline_text .mail a {
  color: var(--colorWhite);
  font-size: 26px;
  font-weight: 500;
  opacity: 0.8;
  display: block;
  margin-top: 13px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__hotline_text .call a:hover,
.wsus__hotline_text .mail a:hover {
  color: var(--colorOrange);
  opacity: 1;
}

.wsus__hotline_text .or {
  color: var(--colorBlack);
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: var(--colorWhite);
  border-radius: 50%;
  text-transform: uppercase;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__hotline_text .call p span {
  margin-left: 15px;
}

.wsus__hotline_text .mail p span {
  margin-right: 15px;
}

/* hotline end */

/* become instructor start */
.wsus__become_instructor {
  position: relative;
}

.wsus__become_instructor::after {
  position: absolute;
  content: "";
  background: url(../images/about_3_shapes_1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 60px;
  height: 60px;
  top: 45px;
  left: 155px;
}

.wsus__become_instructor::before {
  position: absolute;
  content: "";
  background: url(../images/about_3_shapes_4.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  bottom: -30px;
  left: 240px;
}

.wsus__become_instructor .wsus__section_heading h5 {
  color: var(--paraColor);
  font-weight: 600;
  position: relative;
  padding: 0px 0px 0px 30px;
  background: none;
  text-transform: capitalize;
}

.wsus__become_instructor .wsus__section_heading h5::after {
  position: absolute;
  content: "";
  background: url(../images/book_icon_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  top: -5px;
  left: -4px;
}

.wsus__become_instructor_text p {
  width: 80%;
  margin-bottom: 45px;
}

.wsus__become_instructor_img {
  position: relative;
  height: 490px;
}

.wsus__become_instructor_img::after {
  position: absolute;
  content: "";
  background: url(../images/about_3_shapes_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
  top: 50px;
  right: -110px;
  animation: banner_animi_1 linear 3s infinite alternate;
  -webkit-animation: banner_animi_1 linear 3s infinite alternate;
}

/* become instructor end */

/* instructor start */
.wsus__instructor {
  position: relative;
  z-index: 1;
  margin-left: 30px;
  margin-right: 30px;
}

.wsus__instructor::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 590px;
  background: var(--colorLightBg);
  top: 0;
  left: 0;
  z-index: -1;
}

.wsus__single_instructor {
  position: relative;
  padding-bottom: 70px;
  margin-top: 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_instructor_img {
  height: 530px;
  position: relative;
  overflow: hidden;
}

.wsus__single_instructor_img img {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__instructor_social_icon {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 40px;
}

.wsus__instructor_social_icon span {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background: var(--colorWhite);
  color: var(--colorBlack);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__instructor_social_icon ul {
  transform: scaleY(0.5);
  transform-origin: top;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0.5);
  -moz-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  -o-transform: scaleY(0.5);
}

.wsus__instructor_social_icon ul li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--colorOrange);
  color: var(--colorBlack);
  border-radius: 50%;
  margin-top: 6px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__instructor_social_icon ul li a:hover {
  transform: rotate(45deg);
  background: var(--colorWhite);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.wsus__instructor_social_icon:hover span {
  background: var(--colorOrange);
  box-shadow: none;
}

.wsus__instructor_social_icon:hover .icon {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.wsus__single_instructor_text {
  text-align: center;
  position: absolute;
  width: 90%;
  bottom: 0;
  background: var(--colorWhite);
  left: 5%;
  padding: 25px 25px 25px 25px;
  box-shadow: 0px 30px 30px 0px rgba(30, 30, 47, 0.1);
}

.wsus__single_instructor_text .rating {
  color: var(--ratingColor);
  display: block;
  text-align: center;
  margin-bottom: 5px;
}

.wsus__single_instructor_text p {
  text-align: center;
  font-weight: 500;
  margin-bottom: 13px;
}

.wsus__single_instructor_text ul {
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.wsus__single_instructor_text ul li {
  width: 45px;
  height: 45px;
  overflow: hidden;
}

.wsus__single_instructor .common_btn_2 {
  width: 100%;
}

.wsus__single_instructor:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.wsus__single_instructor:hover .wsus__single_instructor_img img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.instructor_slider .wsus__single_instructor {
  margin: 25px 12px 55px 12px;
}

.wsus__instructor .slick-dots {
  margin-top: -5px;
}

/* instructor end */

/* counter start */
.wsus__counter_bg {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 45px 0;
}

.wsus__single_counter {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0px 65px;
}

.wsus__single_counter h2 {
  display: block;
  width: 100%;
}

.wsus__single_counter h2,
.wsus__single_counter h2 span {
  color: var(--colorWhite);
  font-size: 44px;
  font-weight: 600;
}

.wsus__single_counter p {
  color: var(--colorWhite);
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.7;
}

/* counter end */

/* faq start */
.wsus__faq_img {
  position: relative;
}

.wsus__faq_img::after {
  position: absolute;
  content: "";
  background: url(../images/faq_shapes_3.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 45px;
  height: 45px;
  top: 60px;
  left: -200px;
}

.wsus__faq_img::before {
  position: absolute;
  content: "";
  background: url(../images/faq_shapes_4.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  bottom: 250px;
  left: -70px;
  animation: banner_animi_2 linear 2s infinite alternate;
  -webkit-animation: banner_animi_2 linear 2s infinite alternate;
}

.wsus__faq_text {
  position: relative;
}

.accordion-item {
  margin-top: 12px;
  border: 1px solid rgba(30, 30, 47, 0.1) !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.accordion-item button {
  color: var(--colorBlack);
  font-size: 18px;
  font-weight: 500;
  transition: all linear 0.3s;
  border-radius: 0 !important;
  background: var(--colorWhite);
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  box-shadow: none;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.accordion-item .accordion-button:not(.collapsed) {
  color: var(--colorWhite);
  background-color: var(--colorPrimary);
  box-shadow: none;
}

.accordion-button::after {
  background: var(--colorWhite);
  background-image: url(../images/arrow_down.webp);
  width: 32px;
  height: 32px;
  text-align: center;
  border: 1px solid rgba(30, 30, 47, 0.12);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../images/arrow_up.webp);
  border-color: var(--colorWhite);
}

.accordion-button:focus {
  box-shadow: none;
}

.wsus__faq_text::after {
  position: absolute;
  content: "";
  background: url(../images/faq_shapes_1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 45px;
  height: 45px;
  top: 60px;
  right: -30px;
}

.wsus__faq_text::before {
  position: absolute;
  content: "";
  background: url(../images/faq_shapes_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 55px;
  height: 55px;
  bottom: 0;
  right: -110px;
  animation: banner_animi_2 linear 3s infinite alternate;
  -webkit-animation: banner_animi_2 linear 3s infinite alternate;
}

.accordion-item .accordion-body {
  padding: 30px 20px;
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}

/* faq end */

/* testimonial start */
.wsus__testimonial {
  position: relative;
  background: var(--colorLightBg);
  padding: 0px 25px;
}

.wsus__single_testimonial {
  background: var(--colorWhite);
  padding: 50px 40px;
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  margin: 10px 12px 10px 12px;
  position: relative;
}

.wsus__single_testimonial .rating {
  color: var(--ratingColor);
}

.wsus__single_testimonial .description {
  line-height: 26px;
  margin-top: 10px;
  margin-bottom: 25px;
}

.wsus__single_testimonial h3 {
  font-size: 20px;
  font-weight: 600;
}

.wsus__single_testimonial h3 span {
  display: block;
  font-weight: 500;
  margin-top: 5px;
}

.wsus__single_testimonial .testimonial_logo {
  width: 100px;
}

.wsus__testimonial_footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 35px;
}

.wsus__testimonial_footer .img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__testimonial .total_review {
  display: inline-block;
  background: #e0e0f0;
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 30px;
}

.wsus__testimonial .total_review a {
  color: var(--colorPrimary);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__testimonial .total_review a:hover {
  color: var(--colorBlack);
}

.wsus__single_testimonial::after {
  position: absolute;
  content: "";
  background: url(../images/testimonial_shapes.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 60px;
  bottom: 50px;
  right: 50px;
}

/* testimonial end */

/* blog start */
.wsus__single_blog {
  margin-top: 25px;
}

.wsus__single_blog_img {
  position: relative;
  overflow: hidden;
  height: 245px;
}

.wsus__single_blog_img img {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_blog_img .category {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--colorWhite);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--colorPrimary);
  padding: 2px 10px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  z-index: 2;
}

.wsus__single_blog_img .category:hover {
  background: var(--colorOrange);
  color: var(--colorBlack);
}

.wsus__single_blog_text .date {
  color: var(--paraColor);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
  margin-top: 25px;
  margin-bottom: 10px;
}

.wsus__single_blog_text .date::after {
  position: absolute;
  content: "";
  background: url(../images/calendar_blue.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
  top: 2px;
  left: 0;
}

.wsus__single_blog_text .title {
  margin-bottom: 20px;
}

.wsus__single_blog_text .read_btn i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--borderColor);
  font-size: 14px;
  background: var(--colorWhite);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__single_blog_text .read_btn:hover i {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: var(--colorWhite);
}

.blog_slider .wsus__single_blog {
  margin: 0px 12px;
}

.wsus__blog .nextArrow,
.wsus__blog .prevArrow {
  top: -110px;
}

.wsus__blog .prevArrow {
  left: auto;
  right: 67px;
}

.wsus__single_blog_img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 50px solid var(--colorWhite);
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_blog:hover .wsus__single_blog_img:after {
  border: 0px solid var(--colorWhite);
  opacity: 0.6;
}

.wsus__single_blog:hover .wsus__single_blog_img img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

/* blog end */

/* subscriprion start */
.wsus__subscription {
  background: #282870;
  padding: 60px 0px;
}

.wsus__subscription_text {
  position: relative;
  width: 70%;
}

.wsus__subscription_text::after {
  position: absolute;
  content: "";
  background: url(../images/subscription_shapes.webp);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  width: 100px;
  height: 100px;
  bottom: -60px;
  right: -240px;
  animation: about_2_animi_2 linear 7s infinite;
  -webkit-animation: about_2_animi_2 linear 7s infinite;
}

.wsus__subscription_text h2 {
  color: var(--colorWhite);
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}

.wsus__subscription_form {
  position: relative;
  overflow: hidden;
  padding-left: 150px;
}

.wsus__subscription_form input {
  padding: 10.3px 20px;
}

.wsus__subscription_form button {
  position: absolute;
  top: 0;
  right: -1px;
  height: 100%;
}

/* subscriprion end */

/* footer start */
footer {
  background: #030611;
}

.wsus__footer_top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wsus__footer_top_logo {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 0px 45px 0px;
}

.wsus__footer_top_logo a {
  display: inline-block;
  width: 145px;
  margin-bottom: 15px;
}

.wsus__footer_top_logo p {
  color: var(--colorWhite);
  line-height: 26px;
  opacity: 0.6;
}

.wsus__footer_subscribe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-left: 45px;
}

.wsus__footer_subscribe h3 {
  color: var(--colorWhite);
  font-size: 24px;
  font-weight: 600;
  max-width: 350px;
}

.wsus__footer_subscribe form {
  width: 370px;
  position: relative;
}

.wsus__footer_subscribe form input {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__footer_subscribe form button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0px 24px;
  height: 100%;
}

.wsus__footer_subscribe form button:after {
  opacity: 0.2;
}

.wsus__footer_info {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 0px 70px 0px;
}

.wsus__footer_info .call_mail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.wsus__footer_info .call_mail .icon {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
}

.wsus__footer_info .call_mail .icon img {
  width: 20px !important;
  height: 20px !important;
}

.wsus__footer_info .call_mail .text {
  width: 80%;
}

.wsus__footer_info .call_mail .text h3 {
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 500;
}

.wsus__footer_info .call_mail .text a,
.wsus__footer_info .call_mail .text p {
  color: var(--colorWhite);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
  margin-top: 5px;
  display: block;
}

.wsus__footer_info h2 {
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 35px;
}

.wsus__footer_info ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.wsus__footer_info ul li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--colorWhite);
  transition: all linear 0.3s;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__footer_info ul li a:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.wsus__footer_link h2 {
  color: var(--colorWhite);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.wsus__footer_link ul li a {
  display: block;
  color: var(--colorWhite);
  font-weight: 400;
  opacity: 0.6;
  margin-top: 15px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__footer_link ul li a:hover {
  opacity: 1;
  color: var(--colorWhite);
}

.wsus__footer_copyright_area {
  background: #2b2b40;
  padding: 23px 0px;
}

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

.wsus__footer_copyright_text p {
  color: var(--colorWhite);
  font-size: 14px;
  opacity: 0.6;
}

.wsus__footer_copyright_text ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.wsus__footer_copyright_text ul li {
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
}

.wsus__footer_copyright_text ul li a {
  color: var(--colorWhite);
  font-size: 14px;
  font-weight: 400;
  opacity: 0.6;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__footer_copyright_text ul li a:hover {
  opacity: 1;
}

.wsus__footer_copyright_text ul li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  top: 5px;
  right: 0;
  background: var(--colorWhite);
  opacity: 0.6;
}

.wsus__footer_copyright_text ul li:last-child {
  margin: 0;
  padding: 0;
}

.wsus__footer_copyright_text ul li:last-child::after {
  display: none;
}

.wsus__logo_area p {
  font-size: 16px;
  color: var(--colorWhite);
  opacity: 0.6;
}

.wsus__logo_area h2 {
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 40px;
}

.wsus__logo_area ul {
  gap: 10px;
}

.wsus__logo_area ul li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--colorWhite);
  background: rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0px 4px 3px rgba(30, 30, 47, 0.12));
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__logo_area ul li a:hover {
  background: var(--colorPrimary);
  box-shadow: 0px 4px 11px 0px rgba(53, 109, 241, 0.3);
}

/* footer end */
/*============================
    HOME PAGE 01 END
============================*/

/*============================
    HOME PAGE 02 START
============================*/
/* header start */
.header_2 {
  padding: 0px 155px;
}

/* header end */

/* menu 2 start */
.main_menu_2 {
  padding: 0px 155px;
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12) !important;
}

.main_menu_2 .right_menu {
  gap: 20px;
}

.main_menu_2 .right_menu ul li .menu_signin {
  width: 45px;
  height: 45px;
  border: 1px solid var(--borderColor);
  position: relative;
  margin-right: 20px;
}

.main_menu_2 .right_menu ul li .menu_signin span {
  margin: 0 auto;
  width: 20px;
}

.main_menu_2 .right_menu ul li .menu_signin b {
  position: absolute;
  top: -9px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: var(--colorOrange);
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 50%;
  color: var(--colorBlack);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.main_menu_2 .common_btn {
  background: var(--colorOrange);
  color: var(--colorBlack);
  padding: 11px 29px;
}

.main_menu_2 .common_btn:hover {
  color: var(--colorWhite);
}

/* menu 2 end */

/* banner 2 start */
.wsus__banner_2 {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 80px 160px 0px 160px;
  height: 100vh;
  position: relative;
}

.wsus__banner_2 div {
  height: 100%;
}

.wsus__banner_text_2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  position: relative;
  padding-bottom: 70px;
}

.wsus__banner_text_2 h5 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.wsus__banner_text_2 h5 span {
  color: var(--colorWhite);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--colorPrimary);
  padding: 5px 10px;
  position: relative;
  margin-right: 10px;
  padding-left: 20px;
  display: inline-block;
}

.wsus__banner_text_2 h5 span::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: var(--colorWhite);
  top: 10px;
  left: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__banner_text_2 h1 {
  color: var(--colorWhite);
  font-size: 70px;
  font-weight: 600;
  line-height: 80px;
  margin-top: 25px;
  margin-bottom: 20px;
}

.wsus__banner_text_2 p {
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  opacity: 0.7;
  max-width: 80%;
  margin-bottom: 45px;
}

.wsus__banner_2_btn_area {
  height: auto !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.wsus__banner_2_btn_area .common_btn {
  background: var(--colorBlack);
  margin-right: 25px;
}

.wsus__banner_2_btn_area .common_btn::after {
  background: var(--colorPrimary);
}

.wsus__banner_2 .play_btn_area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.wsus__banner_2 .play_btn_area h4 {
  color: var(--colorWhite);
  font-size: 15px;
  font-weight: 500;
  max-width: 140px;
}

.wsus__banner_image_2 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.wsus__banner_image_2 .img {
  width: 510px;
  height: 720px !important;
  position: relative;
}

.wsus__banner_image_2 .text {
  height: auto;
  position: absolute;
  bottom: 280px;
  left: -130px;
  background: var(--colorWhite);
  padding: 20px 40px 20px 20px;
  animation: banner_image_animi 1s ease infinite alternate;
  -webkit-animation: banner_image_animi 1s ease infinite alternate;
}

.wsus__banner_image_2 .text h4 {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.wsus__banner_image_2 .text h4 span {
  color: var(--colorPrimary);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.wsus__banner_image_2 .text img {
  max-width: 200px;
  max-height: 40px;
}

.wsus__banner_2::after {
  position: absolute;
  content: "";
  background: url(../images/banner_2_shapes_1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  top: 230px;
  left: 50px;
  animation: banner_animi_3 linear 1s infinite alternate;
  -webkit-animation: banner_animi_3 linear 1s infinite alternate;
}

.wsus__banner_text_2::after {
  position: absolute;
  content: "";
  background: url(../images/banner_2_shapes_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 100px;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  animation: banner_2_animi_1 linear 1s infinite alternate;
  -webkit-animation: banner_2_animi_1 linear 1s infinite alternate;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

@keyframes banner_2_animi_1 {
  from {
    margin-right: 0px;
  }

  to {
    margin-right: 10px;
  }
}

.wsus__banner_image_2 .img::before {
  position: absolute;
  content: "";
  background: url(../images/banner_2_shapes_3.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 70px;
  height: 70px;
  bottom: 350px;
  right: 0;
}

.wsus__banner_image_2 .img::after {
  position: absolute;
  content: "";
  background: url(../images/banner_2_shapes_4.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 35px;
  height: 35px;
  bottom: 368px;
  right: 17px;
}

/* banner 2 end */

/* headline slider start */
.wsus__headline_slider {
  position: relative;
  margin-top: -69px;
  z-index: 1;
}

.wsus__headline_slider::after {
  position: absolute;
  content: "";
  width: 110%;
  height: 100%;
  background: var(--colorOrange);
  top: 0;
  left: -5%;
  transform: rotate(-1deg);
  z-index: -1;
  -webkit-transform: rotate(-1deg);
  -moz-transform: rotate(-1deg);
  -ms-transform: rotate(-1deg);
  -o-transform: rotate(-1deg);
}

.wsus__headline_slider .marquee_animi {
  background: var(--colorBlack);
  padding: 15px 0px 55px 0px;
}

.wsus__headline_slider .marquee_animi ul {
  gap: 120px;
}

.wsus__headline_slider .marquee_animi ul li {
  color: var(--colorWhite);
  font-size: 26px;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
}

.wsus__headline_slider .marquee_animi ul li::after {
  position: absolute;
  content: "";
  background: url(../images/headline_animi_shapes.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  top: 5px;
  left: -75px;
}

/* headline slider end */

/* category 2 start */
.wsus__category_item_2 {
  background: var(--colorLightBg);
  text-align: center;
  margin-top: 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__category_item_2_img {
  display: block;
  height: 200px;
  overflow: hidden;
}

.wsus__category_item_2_text {
  padding: 30px;
}

.wsus__category_item_2_text span {
  display: block;
  width: 70px;
  height: 70px;
  background: var(--colorOrange);
  border-radius: 50%;
  overflow: hidden;
  padding: 16px;
  margin: 0 auto;
  margin-top: -65px;
  position: relative;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__category_item_2_text .title {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.wsus__category_item_2_text p {
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
}

.wsus__category_item_2:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.wsus__category_2 .slick-dots {
  margin-top: 60px;
}

/* category 2 end */

/* courses 2 start */
.wsus__courses_2 {
  background: var(--colorLightBg);
}

.wsus__courses_2 .wsus__section_heading h5,
.wsus__event .wsus__section_heading h5 {
  background: rgba(53, 109, 241, 0.1);
}

.wsus__single_courses_2 {
  padding: 0;
  border: none;
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
}

.wsus__single_courses_2 .wsus__single_courses_img {
  height: 200px;
  position: relative;
}

.wsus__course_product_page .wsus__single_courses_img::after {
  display: none;
}

.wsus__course_product_page .wsus__single_courses_img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #356df1ab;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__course_product_page .wsus__single_courses_img ul {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

.wsus__course_product_page .wsus__single_courses_img ul a {
  background: var(--colorLightBg) !important;
  margin: 0;
  box-shadow: 0px 4px 3px 0px rgba(30, 30, 47, 0.12),
    0px 2px 10px 0px rgba(30, 30, 47, 0.1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__course_product_page .wsus__single_courses_2:hover .wsus__single_courses_img::before {
  opacity: 1;
}

.wsus__course_product_page .wsus__single_courses_2 .wsus__single_courses_img ul li a img {
  filter: none !important;
  -webkit-filter: none !important;
}

.wsus__single_courses_2 .rating {
  padding: 0;
  border: none;
  margin-bottom: 10px;
}

.wsus__single_courses_2 .rating span {
  color: var(--colorPrimary);
}

.wsus__single_courses_2 .wsus__single_courses_text {
  padding: 20px 25px 30px 25px;
}

.wsus__single_courses_2 .wsus__single_courses_text ul li:last-child:after {
  background: url(../images/clock_icon_gray.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
}

.wsus__related_courses .wsus__single_courses_2 .wsus__single_courses_img ul li a img {
  margin: 13px auto;
}

.wsus__single_courses_2 .author {
  gap: 12px;
  margin-top: 15px;
}

.wsus__single_courses_2 .author .img {
  margin-right: 0px;
}

.wsus__single_courses_2 .author .text p {
  margin-bottom: 5px;
}

.wsus__single_courses_2 .text .author_list {
  background: none;
  margin: 0;
}

.wsus__single_courses_2 .text .author_list li {
  font-size: 12px;
  color: var(--paraColor);
  padding: 0;
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid rgba(30, 30, 47, 0.14);
  line-height: 13px;
}

.wsus__single_courses_2 .text .author_list li::after {
  display: none;
}

.wsus__single_courses_2 .text .author_list li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.wsus__single_courses_2 .wsus__single_courses_footer {
  padding: 15px 0px 15px 0px;
  margin: 0px 25px 0px 25px;
  border-top: 1px solid rgba(30, 30, 47, 0.1);
}

.wsus__single_courses_2 .wsus__single_courses_footer::after {
  display: none;
}

.wsus__single_courses_2 .wsus__single_courses_footer a {
  background: var(--colorOrange);
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 15px;
  text-transform: capitalize;
  transition: all linear 0.3s;
}

.wsus__single_courses_2 .wsus__single_courses_footer a:hover {
  color: var(--colorWhite);
  background: var(--colorPrimary);
}

.wsus__single_courses_2 .wsus__single_courses_img ul li a {
  background: var(--colorBlack);
}

.wsus__single_courses_2 .wsus__single_courses_img ul li .wishlist_active {
  background: var(--colorPrimary);
}

.wsus__single_courses_2 .wsus__single_courses_img ul li a img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(100%) saturate(14%) hue-rotate(213deg) brightness(104%) contrast(104%);
}

.wsus__single_courses_2 .wsus__single_courses_img ul li a:hover {
  background: var(--colorPrimary);
}

.wsus__course_product_page .wsus__single_courses_text {
  padding: 20px 25px 5px 25px;
}

.wsus__course_product_page .wsus__single_courses_img ul li a:hover,
.wsus__course_product_page .wsus__single_courses_img ul li .wishlist_active {
  background: var(--colorOrange) !important;
}

/* courses 2 end */

/* features start */
.wsus__features_item {
  background: var(--colorWhite);
  padding: 35px 30px 40px 30px;
  margin-top: 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__features_item .icon {
  width: 60px;
  height: 60px;
}

.wsus__features_item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 45px;
  margin-bottom: 15px;
}

.wsus__features_item p {
  line-height: 22px;
  margin-bottom: 80px;
  color: var(--colorBlack);
}

.wsus__features_item.orange {
  background: #fdf3ce;
  border: 1px solid rgba(218, 171, 0, 0.1);
}

.wsus__features_item.cyan {
  border: 1px solid rgba(0, 174, 229, 0.1);
  background: #d8f6ff;
}

.wsus__features_item.pink {
  border: 1px solid rgba(229, 0, 135, 0.1);
  background: #ffe5f4;
}

.wsus__features_item.blue {
  border: 1px solid rgba(128, 47, 222, 0.1);
  background: #e8e2f7;
}

.wsus__features_item:hover {
  background: var(--colorOrange);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

/* features end */

/* about 2 start */
.wsus__about_2 {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.wsus__about_2_img {
  position: relative;
  z-index: 1;
}

.wsus__about_2_img::after {
  position: absolute;
  content: "";
  background: url(../images/about_2_shapes.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 95px;
  height: 115px;
  top: 110px;
  right: -20px;
  z-index: -1;
  animation: about_2_animi_1 linear 1s infinite alternate;
  -webkit-animation: about_2_animi_1 linear 1s infinite alternate;
}

@keyframes about_2_animi_1 {
  from {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }
}

.wsus__about_2_img .video {
  position: absolute;
  top: 100px;
  left: -85px;
  width: 220px;
  height: 160px;
}

.wsus__about_2_img .video a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  line-height: 51px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.wsus__about_2_text {
  position: relative;
}

.wsus__about_2_text::after {
  position: absolute;
  content: "";
  background: url(../images/about_2_shapes_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  top: 250px;
  right: -120px;
  animation: about_2_animi_2 linear 7s infinite;
  -webkit-animation: about_2_animi_2 linear 7s infinite;
}

@keyframes about_2_animi_2 {
  from {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

.wsus__about_2_text::before {
  position: absolute;
  content: "";
  background: url(../images/about_2_shapes_3.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  bottom: -25px;
  right: auto;
  left: -90px;
  animation: banner_image_animi 1s ease infinite alternate;
  -webkit-animation: banner_image_animi 1s ease infinite alternate;
}

.wsus__about_2_text ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 45px;
}

.wsus__about_2_text ul li {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  line-height: 38px;
  padding-left: 30px;
  position: relative;
  width: 50%;
}

.wsus__about_2_text ul li::after {
  position: absolute;
  content: "\f00c";
  font-family: "font awesome 5 free";
  font-weight: 600;
  font-size: 10px;
  color: var(--colorBlack);
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: var(--colorOrange);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  top: 8px;
  left: 0;
}

/* about 2 end */

/* related course start */
.wsus__related_courses {
  background: var(--colorLightBg);
}

.related_course_slider .wsus__single_courses {
  margin: 0px 12px 0px 12px;
}

.wsus__related_courses .wsus__section_heading h5 {
  background: rgba(53, 109, 241, 0.1);
}

.wsus__related_courses .slick-dots {
  margin-top: 30px;
  margin-bottom: 3px;
}

/* related course end */

/* event start */
.wsus__event {
  background: var(--colorLightBg);
}

.wsus__event .container {
  position: relative;
}

.wsus__single_event {
  background: var(--colorWhite);
  box-shadow: 0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_event_img {
  width: 235px;
  overflow: hidden;
  height: 230px;
  position: relative;
}

.wsus__single_event_img img {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_event_img span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--colorOrange);
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 500;
  padding: 4px 10px 2px 32px;
}

.wsus__single_event_img span::after {
  position: absolute;
  content: "";
  background: url(../images/calendar_black.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
  top: 6px;
  left: 10px;
}

.wsus__single_event_text {
  max-width: 63%;
  padding: 25px;
}

.wsus__single_event_text ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.wsus__single_event_text ul li {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 400;
}

.wsus__single_event_text ul li i {
  color: var(--colorPrimary);
  font-size: 16px;
  margin-right: 5px;
}

.wsus__single_event_text .title {
  margin-bottom: 40px;
}

.wsus__event .common_btn {
  position: absolute;
  top: 45px;
  right: 12px;
}

.wsus__single_event_img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 50px solid var(--colorWhite);
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_event:hover .wsus__single_event_img:after {
  border: 0px solid var(--colorWhite);
  opacity: 0.4;
}

.wsus__single_event:hover .wsus__single_event_img img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

/* event end */

/* instructor 2 start */
.wsus__single_instructor_2 {
  background: #e5e5f6;
  text-align: center;
  margin-top: 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.instructor_2_slider .wsus__single_instructor_2 {
  margin: 25px 12px 0px 12px;
}

.wsus__single_instructor_2_img {
  position: relative;
  height: 365px;
  overflow: hidden;
  background: url(../images/instructor_bg.jpg);
}

.wsus__single_instructor_2_img img {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__instructor_2_social_icon {
  position: absolute;
  bottom: 5px;
  right: 20px;
  height: 40px;
}

.wsus__instructor_2_social_icon span {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--colorOrange);
  color: var(--colorBlack);
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__instructor_2_social_icon .icon {
  transform: scaleY(0.5);
  transform-origin: bottom;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 40px;
  -webkit-transform: scaleY(0.5);
  -moz-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  -o-transform: scaleY(0.5);
}

.wsus__instructor_2_social_icon .icon li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--colorOrange);
  color: var(--colorBlack);
  margin-bottom: 6px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__instructor_2_social_icon:hover .icon {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.wsus__instructor_2_social_icon .icon li a:hover {
  background: var(--colorWhite);
}

.wsus__single_instructor_2_text {
  padding: 25px;
}

.wsus__single_instructor_2_text .title {
  text-align: center;
}

.wsus__single_instructor_2_text .designation {
  font-weight: 500;
  margin-top: 2px;
  margin-bottom: 10px;
  text-align: center;
}

.wsus__single_instructor_2_text .rating {
  color: var(--ratingColor);
  text-align: center;
}

.wsus__single_instructor_2_text .rating span {
  font-size: 15px;
  font-weight: 500;
  margin-left: 5px;
}

.wsus__instructor_2 .slick-dots {
  margin-top: 60px;
}

.wsus__single_instructor_2:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.wsus__single_instructor_2:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

/* instructor 2 end */

/* testimonial 2 start */
.wsus__testimonial_2_heading {
  padding-left: 45px;
}

.wsus__testimonial_2 .wsus__section_heading h5 {
  background: rgba(53, 109, 241, 0.1);
}

.wsus__single_testimonial_2 {
  padding: 35px;
  margin: 10px 12px 10px 1px;
  box-shadow: none;
}

.wsus__single_testimonial_2 .testi_text {
  background: #f0f5f9;
  padding: 35px;
  position: relative;
}

.wsus__single_testimonial_2 .wsus__testimonial_footer {
  margin-top: 20px;
}

.wsus__single_testimonial_2 .rating_score {
  font-size: 16px;
  display: inline-block;
  position: absolute;
  bottom: 40px;
  right: 40px;
}

.wsus__single_testimonial_2::after {
  background: url(../images/testimonial_shapes_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 65px;
  height: 40px;
  bottom: auto;
  top: 36px;
  right: 70px;
}

.wsus__single_testimonial_2 .testimonial_logo {
  width: 110px;
  height: 52px;
}

.wsus__testimonial_2 .nextArrow,
.wsus__testimonial_2 .prevArrow {
  top: -95px;
}

.wsus__testimonial_2 .prevArrow {
  right: 67px;
  left: auto;
}

.wsus__testimonial_2 h3 {
  font-size: 16px;
}

.wsus__testimonial_2 h3 span {
  font-size: 12px;
}

.wsus__testimonial_2 .description {
  margin-bottom: 40px;
}

.wsus__testimonial_2_img {
  height: 530px;
  background: #B1A2C3;
}

/* testimonial 2 end */

/* blog 2 start */
.wsus__blog_2 .container {
  position: relative;
}

.wsus__single_blog_2 {
  background: var(--colorLightBg);
  margin-top: 25px;
}

.wsus__single_blog_2_img {
  height: 315px;
  overflow: hidden;
  position: relative;
}

.wsus__single_blog_2_img img {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_blog_2_img .category {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--colorWhite);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--colorPrimary);
  padding: 2px 10px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  z-index: 2;
}

.wsus__single_blog_2_img .category:hover {
  background: var(--colorOrange);
  color: var(--colorBlack);
}

.wsus__single_blog_2_text {
  padding: 25px 30px 30px 30px;
}

.wsus__single_blog_2_text ul {
  margin-bottom: 17px;
}

.wsus__single_blog_2_text ul li {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 500;
  border-right: 1px solid rgba(30, 30, 47, 0.14);
  padding-right: 15px;
  margin-right: 15px;
  line-height: 15px;
}

.wsus__single_blog_2_text ul li span {
  display: inline-block;
  width: 17px;
  margin-right: 5px;
  position: relative;
  top: -2px;
}

.wsus__single_blog_2_text ul li:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

/* .wsus__single_blog_2_text a.title{} */
.wsus__single_blog_2_text p {
  color: rgba(30, 30, 47, 0.7);
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  border-top: 1px solid rgba(30, 30, 47, 0.1);
  padding-top: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.wsus__blog_2 .common_btn {
  position: absolute;
  top: 45px;
  right: 12px;
}

.wsus__single_blog_2_img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 50px solid var(--colorWhite);
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_blog_2:hover .wsus__single_blog_2_img:after {
  border: 0px solid var(--colorWhite);
  opacity: 0.6;
}

.wsus__single_blog_2:hover .wsus__single_blog_2_img img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

/* blog 2 end */
.footer_2 {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.footer_2 .wsus__footer_link {
  padding-top: 45px;
  padding-left: 45px;
}

.footer_2 .wsus__footer_instagram {
  padding-top: 45px;
}

/*============================
    HOME PAGE 02 END
============================*/

/*============================
    HOME PAGE 03 START
============================*/
.home_3 .common_btn {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.home_3 .common_btn:after,
.home_3 .common_btn_2:after {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.header_3 {
  padding: 0px 160px;
}

/* menu  3 start */
.main_menu_3 {
  top: 40px;
  padding: 0px 160px;
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  animation: none !important;
}

.main_menu_3 .navbar-brand {
  margin-right: 20px;
}

.main_menu_3 .menu_category {
  border-radius: 6px;
  background: rgba(30, 30, 47, 0.1);
  padding: 12px 20px;
  border: none;
  margin: 0;
  align-items: initial;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.main_menu_3 .menu_category .icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.main_menu_3 .menu_category:hover .icon {
  filter: brightness(0) saturate(100%) invert(38%) sepia(33%) saturate(7247%) hue-rotate(214deg) brightness(100%) contrast(90%);
}

.main_menu_3 .menu_category ul {
  border-top: 0;
}

.main_menu_3 .right_menu {
  gap: 20px;
}

.main_menu_3 .right_menu .menu_search_btn {
  display: inline-block;
  width: 18px;
  cursor: pointer;
}

.main_menu_3 .right_menu ul li .menu_signin,
.main_menu_4 .right_menu ul li .menu_signin {
  position: relative;
  border-right: 1px solid rgba(30, 30, 47, 0.2);
  padding-right: 30px;
  margin-right: 30px;
}

.main_menu_3 .right_menu ul li .menu_signin span,
.main_menu_4 .right_menu ul li .menu_signin span {
  margin-right: 0;
  width: auto;
}

.main_menu_3 .right_menu ul li .menu_signin b,
.main_menu_4 .right_menu ul li .menu_signin b {
  position: absolute;
  top: -8px;
  right: 17px;
  width: 22px;
  height: 22px;
  background: var(--colorPrimary);
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 50%;
  color: var(--colorWhite);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.main_menu_4 .right_menu ul li .admin,
.main_menu_3 .right_menu ul li .admin {
  color: var(--colorBlack);
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  margin-right: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu_4 .right_menu ul li .admin span,
.main_menu_3 .right_menu ul li .admin span {
  display: inline-block;
  width: 17px;
  position: relative;
  top: -1px;
  margin-right: 5px;
}

.main_menu_4 .right_menu ul li .admin:hover,
.main_menu_3 .right_menu ul li .admin:hover {
  color: var(--colorPrimary);
}

.main_menu_4 .right_menu ul li .admin:hover span,
.main_menu_3 .right_menu .menu_search_btn:hover,
.main_menu_3 .right_menu ul li .admin:hover span {
  filter: brightness(0) saturate(100%) invert(38%) sepia(33%) saturate(7247%) hue-rotate(214deg) brightness(100%) contrast(90%);
}

.wsus__menu_3_search_area {
  width: 100%;
  height: 100%;
  background: #ffffffeb;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.85);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  -o-transform: scale(0.85);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__menu_3_search_area form {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 30px;
  width: 650px;
  position: relative;
  background: var(--colorWhite);
}

.wsus__menu_3_search_area form input {
  border: 1px solid var(--borderColor);
  padding: 15px 35px;
}

.wsus__menu_3_search_area form button {
  position: absolute;
  top: 35px;
  right: 35px;
}

.wsus__menu_3_search_area form span {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--paraColor);
  font-size: 20px;
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__menu_3_search_area form span:hover {
  color: red;
}

.wsus__menu_3_search_area.show_search {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

/* menu  3 end */

/* banner 3 star */
.wsus__banner_3 {
  padding: 120px 160px 0px 161px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  height: 100vh;
  position: relative;
}

.wsus__banner_3 div {
  height: 100%;
}

.wsus__banner_3_text {
  padding-top: 120px;
  padding-bottom: 170px;
}

.wsus__banner_3_text h5 {
  color: var(--paraColor);
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding-left: 30px;
}

.wsus__banner_3_text h5::after {
  position: absolute;
  content: "";
  background: url(../images/book_icon_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  top: -4px;
  left: -4px;
}

.wsus__banner_3_text h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 90px;
  padding-right: 50px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.wsus__banner_3_text .description {
  font-size: 16px;
  line-height: 26px;
  max-width: 80%;
}

.wsus__banner_3_text .rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
  height: auto;
}

.wsus__banner_3_text .rating p {
  color: var(--colorPrimary);
}

.wsus__banner_3_text .rating span {
  opacity: 0.5;
  color: var(--colorBlack);
  text-transform: uppercase;
}

.wsus__banner_3_text_bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  height: auto !important;
}

.wsus__banner_3_text_bottom .img {
  width: 110px;
}

.wsus__banner_3_text_bottom h4 {
  font-size: 14px;
  font-weight: 600;
}

.wsus__banner_3_text_bottom h4 span {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}

.wsus__banner_3_img {
  position: relative;
  margin-top: 75px;
}

.wsus__banner_3_img .img {
  height: 526px;
  position: relative;
}

.wsus__banner_3_img .text {
  height: auto;
  position: absolute;
  bottom: 60px;
  left: -155px;
  background: var(--colorWhite);
  padding: 15px 20px 15px 70px;
  border-radius: 6px;
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  animation: banner_image_animi 1s ease infinite alternate;
  -webkit-animation: banner_image_animi 1s ease infinite alternate;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__banner_3_img .text h4 {
  font-size: 15px;
  font-weight: 500;
}

.wsus__banner_3_img .text p {
  color: var(--colorBlack);
  font-size: 13px;
  font-weight: 500;
  opacity: 0.6;
  margin-top: 5px;
}

.wsus__banner_3_img .text::after {
  position: absolute;
  content: "";
  background: url(../images/banner_img_icon.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 37px;
  height: 30px;
  top: 20px;
  left: 20px;
  box-shadow: 0px 14px 14px 0px rgba(30, 30, 47, 0.2);
}

.wsus__banner_features {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1224px;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 15px 0px 15px;
}

.wsus__banner_features li {
  width: 32.4%;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.wsus__banner_features li .icon {
  width: 80px;
  height: 80px;
  padding: 15px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__banner_features li .text {
  width: 73%;
  height: auto;
}

.wsus__banner_features li .text h4 {
  font-size: 18px;
  font-weight: 600;
}

.wsus__banner_features li .text p {
  line-height: 22px;
  margin-top: 5px;
}

.wsus__banner_features li.green {
  background: #d5f8ef;
}

.wsus__banner_features li.green .icon {
  background: #14b789;
}

.wsus__banner_features li.pink {
  background: #ffe5f4;
}

.wsus__banner_features li.pink .icon {
  background: #e50087;
}

.wsus__banner_features li.sky {
  background: #d8f6ff;
}

.wsus__banner_features li.sky .icon {
  background: #00aee5;
}

.wsus__banner_3_img .circle_box {
  position: absolute;
  top: 200px;
  right: -35px;
  width: 150px;
  height: 150px;
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  border-radius: 50%;
  padding: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__banner_3_img .circle_box svg {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  animation: circle_animi linear 25s infinite;
  -webkit-animation: circle_animi linear 25s infinite;
}

@keyframes circle_animi {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

.wsus__banner_3_img .circle_box::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background: url(../images/banner_3_img_shapes.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

/* banner 3 end */

/* features 3 start */
.wsus__features_3 .wsus__features_item {
  border-radius: 10px;
  border: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.wsus__features_item_3 {
  margin-top: 25px;
  padding: 35px 30px 40px 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__features_item_3 .icon {
  width: 70px;
  height: 70px;
  padding: 15px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__features_item_3 .icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(333deg) brightness(106%) contrast(101%);
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(333deg) brightness(106%) contrast(101%);
}

.wsus__features_item_3 a {
  display: block;
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 15px;
  max-width: 80%;
}

.wsus__features_item_3 p {
  margin-bottom: 55px;
}

.wsus__features_item_3 span {
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  background: var(--colorWhite);
  box-shadow: 0px 1px 3px 0px rgba(30, 30, 47, 0.2);
  padding: 5px 14px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__features_item_3.orange {
  border: 1px solid rgba(218, 171, 0, 0.1);
  background: #fdf3ce;
}

.wsus__features_item_3.orange .icon {
  background: #daab00;
}

.wsus__features_item_3.blue {
  border: 1px solid rgba(0, 174, 229, 0.1);
  background: #d8f6ff;
}

.wsus__features_item_3.blue .icon {
  background: #00aee5;
}

.wsus__features_item_3.red {
  border: 1px solid rgba(229, 0, 135, 0.1);
  background: #ffe5f4;
}

.wsus__features_item_3.red .icon {
  background: #e50087;
}

.wsus__features_item_3.pink {
  border: 1px solid rgba(128, 47, 222, 0.1);
  background: #e8e2f7;
}

.wsus__features_item_3.pink .icon {
  background: #802fde;
}

.wsus__features_item_3:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

/* features 3 end */

/* about us 3 start */
.wsus__about_3 {
  position: relative;
}

.wsus__about_3::before {
  position: absolute;
  content: "";
  background: url(../images/about_3_shapes_1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 60px;
  height: 60px;
  top: 0;
  left: 115px;
}

.wsus__about_3::after {
  position: absolute;
  content: "";
  background: url(../images/about_3_shapes_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
  top: 35px;
  right: 220px;
  animation: banner_animi_1 linear 3s infinite alternate;
  -webkit-animation: banner_animi_1 linear 3s infinite alternate;
}

.wsus__about_3_img {
  position: relative;
  text-align: center;
}

.wsus__about_3_img .about_3_large {
  width: 480px !important;
  height: auto !important;
}

.wsus__about_3_img .text {
  height: auto;
  position: absolute;
  bottom: 110px;
  left: 0;
  background: var(--colorWhite);
  padding: 20px 40px 20px 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  animation: banner_image_animi 1s ease infinite alternate;
  -webkit-animation: banner_image_animi 1s ease infinite alternate;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.wsus__about_3_img .text h4 {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.wsus__about_3_img .text h4 span {
  color: var(--colorPrimary);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.wsus__about_3_img .text img {
  max-width: 200px;
  max-height: 40px;
}

.wsus__about_3_img .circle_box {
  position: absolute;
  top: 55px;
  right: 55px;
  width: 150px;
  height: 150px;
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  border-radius: 50%;
  padding: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__about_3_img .circle_box svg {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  animation: circle_animi linear 25s infinite;
  -webkit-animation: circle_animi linear 25s infinite;
}

.wsus__about_3_img .circle_box::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background: url(../images/banner_3_img_shapes.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.wsus__about_3_img::before {
  position: absolute;
  content: "";
  background: url(../images/about_3_shapes_4.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  bottom: 235px;
  left: -25px;
}

.wsus__about_3_img::after {
  position: absolute;
  content: "";
  background: url(../images/about_3_shapes_3.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
  bottom: 35px;
  right: 10px;
  animation: banner_image_animi 1.5s ease infinite alternate;
  -webkit-animation: banner_image_animi 1.5s ease infinite alternate;
}

.wsus__about_3_text {
  position: relative;
}

.wsus__about_3_text p {
  line-height: 26px;
}

.wsus__about_3_text ul {
  margin-top: 25px;
  margin-bottom: 50px;
}

.wsus__about_3_text ul li {
  position: relative;
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 400;
  padding-left: 30px;
  margin-top: 13px;
}

.wsus__about_3_text ul li::after {
  position: absolute;
  content: "";
  background: url(../images/check_icon_green_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 1px;
  left: 0;
}

.wsus__about_3_text .about_video {
  width: 220px;
  height: 220px;
  position: absolute;
  bottom: -70px;
  right: 0;
}

.wsus__about_3_text .about_video span {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff0000;
  border-radius: 6px;
  color: var(--colorWhite);
  font-size: 14px;
  font-weight: 700;
  padding: 3px 15px 3px 22px;
  text-transform: capitalize;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__about_3_text .about_video span::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: var(--colorWhite);
  top: 11px;
  left: 11px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__about_3_text .about_video a {
  width: 60px;
  height: 60px;
  line-height: 60px;
  position: absolute;
  box-shadow: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

/* about us 3 end */

/* courses 3 start */
.wsus__courses_3 .wsus__section_heading h5 {
  background: none;
}

.wsus__filter_area {
  text-align: center;
}

.wsus__courses_3 .wsus__filter_area ul {
  border: 1px solid var(--borderColor);
  border-radius: 50px;
  padding: 0;
  gap: 10px;
  display: inline-flex;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.wsus__courses_3 .wsus__filter_area ul li button::after {
  display: none;
}

.wsus__courses_3 .wsus__filter_area ul li button {
  color: var(--colorBlack);
  font-size: 15px;
  padding: 6px 24px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.wsus__courses_3 .wsus__filter_area ul li button:hover,
.wsus__courses_3 .wsus__filter_area ul li button.active {
  background: var(--colorPrimary) !important;
  color: var(--colorWhite) !important;
}

.wsus__courses_3 {
  background: var(--colorLightBg);
}

.wsus__single_courses_3 {
  border-radius: 10px;
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 25px;
  margin-top: 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.wsus__single_courses_3_img {
  position: relative;
  height: 215px;
  overflow: hidden;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__single_courses_3_img img {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_courses_3_img ul {
  position: absolute;
  top: 10px;
  left: -10px;
  z-index: 9;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_courses_3_img ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--colorWhite);
  margin-bottom: 5px;
  text-align: center;
  border-radius: 6px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__single_courses_3_img ul li a:hover {
  background: var(--colorOrange);
}

.wsus__single_courses_3_img ul li a img {
  width: 16px !important;
  height: 16px !important;
  margin: 0 auto;
  transform: scale(1) !important;
  -webkit-transform: scale(1) !important;
  -moz-transform: scale(1) !important;
  -ms-transform: scale(1) !important;
  -o-transform: scale(1) !important;
}

.wsus__single_courses_3:hover .wsus__single_courses_3_img ul {
  opacity: 1;
  left: 10px;
}

.wsus__single_courses_3_img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 50px solid var(--colorWhite);
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_courses_3_img .time {
  position: absolute;
  top: 20px;
  right: 0;
  color: var(--colorWhite);
  font-size: 14px;
  font-weight: 500;
  background: var(--colorPrimary);
  border-radius: 6px 0px 0px 6px;
  padding: 4px 16px;
  -webkit-border-radius: 6px 0px 0px 6px;
  -moz-border-radius: 6px 0px 0px 6px;
  -ms-border-radius: 6px 0px 0px 6px;
  -o-border-radius: 6px 0px 0px 6px;
  text-transform: capitalize;
}

.wsus__single_courses_text_3 .rating_area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 17px;
  margin-bottom: 10px;
}

.wsus__single_courses_text_3 .rating_area a {
  color: var(--colorWhite);
  background: var(--colorPrimary);
  font-size: 14px;
  font-weight: 500;
  padding: 3px 15px;
  border-radius: 6px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__single_courses_text_3 .rating_area a:hover {
  background: var(--colorBlack);
  color: var(--colorWhite);
}

.wsus__single_courses_text_3 .rating_area p {
  color: var(--ratingColor);
}

.wsus__single_courses_text_3 .rating_area p span {
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 400;
  margin-left: 5px;
}

.wsus__single_courses_text_3 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 18px;
}

.wsus__single_courses_text_3 ul li {
  position: relative;
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 400;
  padding-left: 22px;
}

.wsus__single_courses_text_3 ul li::after {
  position: absolute;
  content: "";
  background: url(../images/book_icon.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 2px;
  left: 0;
}

.wsus__single_courses_text_3 ul li:last-child:after {
  background: url(../images/user_icon_gray.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
}

.wsus__single_courses_text_3 .author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.wsus__single_courses_text_3 .author .img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__single_courses_text_3 .author h4 {
  font-size: 14px;
  font-weight: 500;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

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

.wsus__single_courses_3_footer a {
  border: 1px solid rgba(30, 30, 47, 0.14);
  background: var(--colorWhite);
  color: var(--colorBlack);
  padding: 6px 15px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__single_courses_3_footer p {
  color: var(--colorBlack);
  font-size: 18px;
  font-weight: 700;
}

.wsus__single_courses_3_footer p del {
  color: var(--paraColor);
  margin-right: 10px;
}

.wsus__single_courses_3:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.wsus__single_courses_3:hover .wsus__single_courses_3_img img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.wsus__single_courses_3:hover .wsus__single_courses_3_img:after {
  border: 0px solid var(--colorWhite);
  opacity: 0.6;
}

.wsus__single_courses_3 .author:hover h4 {
  color: var(--colorPrimary);
}

/* courses 3 end */

/* offer start */
.wsus__offer {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.wsus__offer_img {
  height: 345px;
  margin-top: 25px;
}

.wsus__offer_text {
  padding-left: 55px;
}

.wsus__offer_text h2 {
  color: var(--colorWhite);
  font-size: 40px;
  font-weight: 600;
}

.wsus__offer_text form {
  border-radius: 10px;
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  overflow: hidden;
  position: relative;
  margin-top: 30px;
  max-width: 90%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.wsus__offer_text form input {
  padding: 17px 20px;
}

.wsus__offer_text form button {
  position: absolute;
  top: 8px;
  right: 8px;
}

/* offer end */

/* team start */
.wsus__team_heading_area_btn {
  text-align: right;
}

.wsus__team_bg {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.wsus__team_large_slider {
  position: relative;
  bottom: -8px;
}

.wsus__team_slider_img {
  padding-left: 15px;
  height: 470px;
}

.wsus__team_slider_text {
  padding-left: 120px;
  padding-bottom: 10px;
}

.wsus__team_slider_text .rating {
  display: inline-block;
  border-radius: 6px;
  border: 1px solid rgba(30, 30, 47, 0.1);
  padding: 2px 6px;
  color: var(--ratingColor);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__team_slider_text .rating span {
  font-weight: 500;
  margin-left: 5px;
}

.wsus__team_slider_text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.wsus__team_slider_text .list {
  margin-bottom: 20px;
}

.wsus__team_slider_text .list li {
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 400;
  opacity: 0.6;
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
}

.wsus__single_counter h2,
.wsus__single_counter h2 span,
.wsus__single_counter p {
  text-align: center;
}

.wsus__team_slider_text .list li:last-child {
  margin: 0;
  padding: 0;
}

.wsus__team_slider_text .list li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background: rgba(30, 30, 47, 0.14);
  top: 0;
  right: 0;
}

.wsus__team_slider_text .list li:last-child:after {
  display: none;
}

.wsus__team_slider_text .badge {
  gap: 10px;
  margin: 25px 0px 40px 0px;
  padding: 0;
}

.wsus__team_slider_text .badge li {
  width: 30px;
  height: 30px;
  overflow: hidden;
}

.wsus__team_slider_text .common_btn {
  background: var(--colorBlack);
}

.wsus__team_slider_text .common_btn:after {
  background: var(--colorPrimary);
}

.wsus__team_small_img_area {
  width: 130px;
  height: 100%;
  border-radius: 20px;
  background: #dcdced;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  padding: 55px 30px 60px 40px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.wsus__team_small_img {
  border: 2px solid var(--colorWhite);
  width: 70px;
  height: 85px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.wsus__team .nextArrow {
  top: -77px;
  right: 27px;
}

.wsus__team .prevArrow {
  top: auto;
  bottom: -72px;
  left: 22px;
}

.slick-slide.slick-current .wsus__team_small_img {
  border-color: var(--colorPrimary);
}

/* team end */

/* video start */
.wsus__video {
  height: 910px;
  position: relative;
}

.wsus__video .play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  line-height: 160px;
  box-shadow: none;
  background: rgba(30, 30, 47, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.wsus__video .play_btn::after {
  position: absolute;
  content: "";
  background: url(../images/play_btn_text.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 130px;
  height: 130px;
  top: 14px;
  left: 14px;
  animation: about_2_animi_2 linear 15s infinite;
  -webkit-animation: about_2_animi_2 linear 15s infinite;
}

.wsus__video .text {
  position: absolute;
  left: 160px;
  bottom: -45px;
  background: rgba(30, 30, 47, 0.6);
  backdrop-filter: blur(7px);
  max-width: 530px;
}

.wsus__video .text p {
  padding: 35px 35px 45px 35px;
  color: var(--colorWhite);
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}

.wsus__video .text a {
  color: var(--colorBlack);
  background: var(--colorOrange);
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 11px 25px;
}

/* video end */

/* testimonial 2 start */
.wsus__testimonial_3 {
  background: var(--colorLightBg);
  padding: 0px 25px;
}

.wsus__testimonial_3_video {
  margin-top: 25px;
  height: 585px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.wsus__testimonial_3_video .overlay {
  background: linear-gradient(180deg, rgba(30, 30, 47, 0) 0%, #1e1e2f 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: 30px;
}

.wsus__testimonial_3_video .overlay .rating {
  color: var(--colorOrange);
}

.wsus__testimonial_3_video .overlay h2 {
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}

.wsus__testimonial_3_video .overlay h4 {
  color: var(--colorWhite);
  opacity: 0.6;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.wsus__testimonial_3_video .overlay a {
  position: absolute;
  bottom: 30px;
  right: 30px;
  box-shadow: none;
  width: 50px;
  height: 50px;
  line-height: 58px;
  margin-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wsus__testimonial_text {
  margin-top: 25px;
  position: relative;
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wsus__testimonial_text .top .rating {
  color: var(--ratingColor);
  margin-bottom: 15px;
}

.wsus__testimonial_text .top .description {
  color: rgba(30, 30, 47, 0.7);
  line-height: 26px;
}

.wsus__testimonial_text .bottom .photo img {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  margin-right: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__testimonial_text .bottom .photo h2 {
  font-size: 16px;
}

.wsus__testimonial_text .bottom .photo h2 span {
  display: block;
  color: var(--colorBlack);
  opacity: 0.6;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 5px;
}

.wsus__testimonial_text .bottom {
  margin-top: 35px;
}

.wsus__testimonial_text .bottom p {
  color: var(--colorBlack);
  opacity: 0.6;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 3px;
}

.wsus__testimonial_3 .footer_btn {
  border-radius: 6px;
  background: #e0e0f0;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 35px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__testimonial_3 .footer_btn a {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  text-decoration-line: underline;
}

.testimonial_3_slider .wsus__testimonial_3_video,
.testimonial_3_slider .wsus__testimonial_text {
  margin: 0px 12px;
}

/* testimonial 2 end */

/* blog 3 start */
.wsus__blog_3_heading_area_btn {
  text-align: right;
}

.wsus__single_blog_3 {
  padding: 25px 25px 40px 25px;
  border-radius: 10px;
  border: 1px solid rgba(30, 30, 47, 0.14);
  margin-top: 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.wsus__single_blog_3_img {
  position: relative;
  height: 270px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.wsus__single_blog_3_img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 50px solid var(--colorWhite);
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_blog_3_img img {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_blog_3_img a {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--colorPrimary);
  color: var(--colorWhite);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 2px 8px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__single_blog_3_text ul {
  gap: 25px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.wsus__single_blog_3_text ul li {
  color: var(--paraColor);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.wsus__single_blog_3_text ul li span {
  display: inline-block;
  margin-right: 2px;
  width: 17px;
}

.wsus__single_blog_3_text .title {
  font-size: 22px;
}

.wsus__single_blog_3_text .photo_area {
  gap: 10px;
  align-items: center;
  margin-top: 25px;
}

.wsus__single_blog_3_text .photo_area .img {
  width: 45px;
  height: 45px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__single_blog_3_text .photo_area h4 {
  color: var(--colorBlack);
  font-size: 16px;
  font-weight: 600;
}

.wsus__single_blog_3_text .photo_area h4 span {
  display: block;
  color: var(--colorBlack);
  opacity: 0.6;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 3px;
}

.wsus__single_blog_3:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.wsus__single_blog_3:hover .wsus__single_blog_3_img img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.wsus__single_blog_3:hover .wsus__single_blog_3_img:after {
  border: 0px solid var(--colorWhite);
  opacity: 0.6;
}

/* blog 3 end */

/* footer 3 start */
.wsus__footer_3_logo_area .logo {
  display: inline-block;
  width: 145px;
  margin-bottom: 15px;
}

.wsus__footer_3_logo_area p {
  color: var(--colorWhite);
  line-height: 26px;
  opacity: 0.6;
}

.wsus__footer_3_logo_area h2 {
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 500;
  margin-top: 25px;
  margin-bottom: 10px;
}

.wsus__footer_3_logo_area ul {
  gap: 10px;
}

.wsus__footer_3_logo_area ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--colorWhite);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__footer_3_logo_area ul li a:hover {
  color: var(--colorWhite);
  background: var(--colorPrimary);
  box-shadow: 0px 4px 11px 0px rgba(53, 109, 241, 0.3);
}

.footer_3 .wsus__footer_link {
  padding: 0px;
}

.wsus__footer_3_subscribe h3 {
  color: var(--colorWhite);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.wsus__footer_3_subscribe form {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.wsus__footer_3_subscribe form input {
  padding: 11px 20px;
}

.wsus__footer_3_subscribe form button {
  position: absolute;
  top: 0;
  right: -1px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0px 23px;
  height: 100%;
}

.wsus__footer_3_subscribe form button:after {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.wsus__footer_3_subscribe ul {
  margin-top: 40px;
}

.wsus__footer_3_subscribe ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.wsus__footer_3_subscribe ul li .icon {
  width: 45px;
  height: 45px;
  line-height: 14px;
  text-align: center;
  border-radius: 6px;
  padding: 14px;
  margin-right: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--paraColor);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__footer_3_subscribe ul li .text {
  width: 85%;
}

.wsus__footer_3_subscribe ul li .text h4 {
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 500;
}

.wsus__footer_3_subscribe ul li .text a,
.wsus__footer_3_subscribe ul li .text p {
  display: block;
  color: var(--colorWhite);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
  margin-top: 5px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.footer_3 .wsus__footer_copyright_area {
  background: rgba(255, 255, 255, 0.06);
}

/* footer 3 end */

/*============================
    HOME PAGE 03 END
============================*/

/*============================
    HOME PAGE 04 START
============================*/
/* menu start */
.home_4 .common_btn {
  color: var(--colorBlack);
  background: var(--colorOrange);
}

.home_4 .common_btn:hover {
  color: var(--colorWhite);
}

.main_menu_4 {
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
}

.main_menu_4 .navbar-brand {
  margin-right: 20px;
}

.main_menu_4 .menu_category {
  border-right: 0;
  border-left: 1px solid var(--borderColor);
  padding: 11px 60px 11px 20px;
  margin: 0;
  padding-right: 0;
}

.main_menu_4 .menu_category ul {
  border-top: none;
}

.main_menu_4 .right_menu ul li .menu_signin {
  padding-right: 33px;
  margin-right: 20px;
}

.main_menu_4 .right_menu ul li .menu_signin b {
  right: 23px;
}

/* menu end */

/* banner 4 start */
.wsus__banner_4 {
  margin: 0;
  padding: 0;
  height: auto;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  overflow: hidden;
}

.wsus__banner_4_text {
  padding-top: 87px;
}

.wsus__banner_4_text h1,
.wsus__banner_4_text h1 span {
  color: var(--colorBlack);
  font-size: 80px;
  font-weight: 600;
  position: relative;
}

.wsus__banner_4_text h1 span {
  border: 1px solid var(--colorOrange);
  background: var(--colorWhite);
  padding: 0px 10px;
  line-height: 80px;
  display: inline-block;
}

.wsus__banner_4_text h1::after {
  position: absolute;
  content: "";
  background: url(../images/banner_shapes_1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 70px;
  height: 52px;
  top: -40px;
  left: -40px;
  animation: banner_animi_1 linear 3s infinite alternate;
  -webkit-animation: banner_animi_1 linear 3s infinite alternate;
}

.wsus__banner_4_text p {
  color: rgba(30, 30, 47, 0.7);
  font-size: 16px;
  line-height: 26px;
  max-width: 90%;
  margin-top: 20px;
  margin-bottom: 40px;
}

.wsus__banner_4_text form {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  position: relative;
  max-width: 550px;
}

.wsus__banner_4_text form input {
  padding: 15.5px 20px;
}

.wsus__banner_4_text form button {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 55px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--colorOrange);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__banner_4_text form button:hover {
  background: var(--colorBlack);
  color: var(--colorWhite);
}

.wsus__banner_image_4 {
  padding-left: 46px;
}

.wsus__banner_image_4 .img {
  height: 600px;
  margin-top: 180px;
  position: relative;
  right: -140px;
}

.wsus__banner_image_4 .text {
  bottom: 230px;
}

/* banner 4 end */

/* category 4 start */
.wsus__category_4,
.wsus__category_4 .container {
  position: relative;
}

.wsus__single_category_4 {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 10px;
  border: 1px solid rgba(30, 30, 47, 0.1);
  background: rgba(217, 217, 217, 0);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_category_4 .icon {
  width: 80px;
  height: 70px;
  background: #e2f3cd;
  padding: 12px 17px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_category_4 .text h4 {
  font-size: 18px;
  font-weight: 600;
}

.wsus__single_category_4 .text p {
  font-size: 14px;
  font-weight: 500;
  color: var(--colorBlack);
  opacity: 0.6;
  margin-top: 5px;
}

.wsus__single_category_4:hover {
  background: var(--colorOrange);
  border-color: var(--colorOrange);
  box-shadow: 0px 10px 30px 0px rgba(30, 30, 47, 0.2);
}

.wsus__single_category_4:hover .icon {
  background: var(--colorWhite);
}

.wsus__category_4 .container::after {
  position: absolute;
  content: "";
  background: url(../images/category_4_shapes.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
  top: 55px;
  left: -40px;
  animation: banner_image_animi 1s ease infinite alternate;
  -webkit-animation: banner_image_animi 1s ease infinite alternate;
}

.wsus__category_4::before {
  position: absolute;
  content: "";
  background: url(../images/category_4_shapes_1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 260px;
  top: 155px;
  left: 0;
}

.wsus__category_4::after {
  position: absolute;
  content: "";
  background: url(../images/category_4_shapes_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 45px;
  height: 265px;
  top: 20px;
  right: 0;
}

/* category 4 end */

/* top courses start */
.wsus__top_courses {
  position: relative;
}

.home_4 .wsus__single_courses {
  border: none;
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
}

.home_4 .wsus__single_courses_text .wishlist {
  display: block;
}

.home_4 .wsus__global_courses .wsus__single_courses_text .wishlist {
  padding: 8px 10px 12px 10px;
}

.wsus__top_courses .wsus__single_courses_img ul li a img {
  transform: translate(0) !important;
  margin-top: 12px;
  -webkit-transform: translate(0) !important;
  -moz-transform: translate(0) !important;
  -ms-transform: translate(0) !important;
  -o-transform: translate(0) !important;
}

.top_courses_slider .wsus__single_courses {
  margin: 10px 12px;
}

.home_4 .wsus__single_courses_text ul {
  background: #e2f3cd;
}

.home_4 .wsus__single_courses_footer::after {
  height: 5px;
  top: -6px;
}

.top_courses_slider .nextArrow,
.top_courses_slider .prevArrow {
  right: 12px;
  top: -95px;
}

.top_courses_slider .prevArrow {
  left: auto;
  right: 67px;
}

.wsus__top_courses::before {
  position: absolute;
  content: "";
  background: url(../images/top_courses_shapes_1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 70px;
  height: 70px;
  top: 30px;
  left: 130px;
}

.wsus__top_courses::after {
  position: absolute;
  content: "";
  background: url(../images/faq_shapes_1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  bottom: 300px;
  right: 130px;
}

/* top courses end */

/* call to action 4 start */
.wsus__call_to_action_4 {
  position: relative;
}

.wsus__call_to_action_4 ul li {
  width: 33.33%;
  background: #ded371;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.wsus__call_to_action_4 ul li:nth-child(2) {
  background: #84d9c6;
}

.wsus__call_to_action_4 ul li:nth-child(3) {
  background: #b4c875;
}

.wsus__call_to_action_4 ul li .img {
  width: 240px;
  height: 300px;
}

.wsus__call_to_action_4 ul li .text {
  padding: 45px;
  width: 62%;
}

.wsus__call_to_action_4 ul li .text h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 25px;
}

.wsus__call_to_action_4 ul li .text a {
  border-color: var(--colorWhite);
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
}

.wsus__call_to_action_4 ul li .text a:hover {
  border-color: var(--colorPrimary);
  background: var(--colorWhite);
}

.wsus__call_to_action_4::before {
  position: absolute;
  content: "";
  background: url(../images/category_4_shapes_1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 260px;
  top: -22px;
  left: 0;
  z-index: -1;
}

.wsus__call_to_action_4::after {
  position: absolute;
  content: "";
  background: url(../images/category_4_shapes_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 180px;
  top: -50px;
  right: 0;
  z-index: -1;
}

/* call to action 4 end */

/* global courses start */
.wsus__global_courses .wsus__filter_area ul {
  border-bottom: 0;
  padding-bottom: 0;
  gap: 6px;
}

.wsus__global_courses .wsus__filter_area ul li button {
  color: var(--colorBlack);
  font-size: 15px;
  border: 1px solid var(--borderColor);
  font-weight: 500;
  border-radius: 0 !important;
  padding: 5px 15px;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.wsus__global_courses .wsus__filter_area ul li button:hover,
.wsus__global_courses .wsus__filter_area ul li button.active {
  background: var(--colorOrange) !important;
  border-color: var(--colorOrange) !important;
}

.wsus__global_courses .wsus__filter_area ul li button::after {
  display: none;
}

/* global courses end */

/* quality courses start */
.wsus__quality_courses {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 0px 160px;
  position: relative;
  overflow: hidden;
}

.wsus__quality_courses .wsus__section_heading h5 {
  color: var(--colorWhite);
  background: #445611;
}

.wsus__quality_courses .wsus__section_heading h2 span {
  background: var(--colorWhite);
}

.wsus__quality_courses_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 100%;
}

.wsus__quality_courses_text p {
  max-width: 75%;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.wsus__quality_courses_text a {
  border-color: var(--colorWhite);
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
}

.wsus__quality_courses_text a:hover {
  border-color: var(--colorPrimary);
}

.wsus__quality_courses_img {
  height: 735px;
  margin-top: 25px;
  position: relative;
  left: -150px;
}

.wsus__quality_courses_slider_area {
  max-width: 420px;
  position: absolute;
  top: 50%;
  right: 160px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.wsus__quality_courses_slider_area .wsus__single_courses {
  margin: 0px 12px;
}

.quality_course_slider .slick-dots {
  margin-top: 5px;
}

.home_4 .slick-dots li button {
  border: none;
  background: rgba(30, 30, 47, 0.16);
}

.home_4 .slick-dots li.slick-active button {
  width: 40px;
  background: var(--colorBlack);
}

/* quality courses end */

/* instructor 4 start */
.wsus__instructor_4 .wsus__single_instructor_img {
  height: 520px;
}

.wsus__instructor_4 .wsus__single_instructor {
  padding-bottom: 0;
  margin: 25px 12px 0px 12px;
}

.wsus__instructor_4 .wsus__single_instructor .rating {
  color: var(--ratingColor);
}

.wsus__instructor_4 .wsus__single_instructor_text {
  bottom: 20px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__instructor_4 .wsus__single_instructor_text a,
.wsus__instructor_4 .wsus__single_instructor_text p {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__instructor_4 .wsus__single_instructor:hover .wsus__single_instructor_text {
  background: var(--colorBlack);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__instructor_4 .wsus__single_instructor:hover .wsus__single_instructor_text a,
.wsus__instructor_4 .wsus__single_instructor:hover .wsus__single_instructor_text p {
  color: var(--colorWhite);
}

.wsus__instructor_4 .slick-dots {
  margin-top: 40px;
}

/* instructor 4 end */

/* video 4 start */
.wsus__video_4 {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 0px 160px;
}

.wsus__video_4_img {
  position: relative;
  height: 665px;
  margin-top: 75px;
}

.wsus__video_4_img img {
  height: 100% !important;
}

.wsus__video_4_img a {
  position: absolute;
  width: 240px;
  height: 240px;
  line-height: 240px;
  border-radius: 270px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: none !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 3;
  margin-right: 0;
  -webkit-border-radius: 270px;
  -moz-border-radius: 270px;
  -ms-border-radius: 270px;
  -o-border-radius: 270px;
}

.wsus__video_4_img a img {
  width: 90px !important;
  height: 90px !important;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__video_4_img a::after {
  position: absolute;
  content: "";
  width: 160px;
  height: 160px;
  background: var(--colorWhite);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

/* video 4 end */

/* testimonial 4 start */
.wsus__testimonial_4 {
  position: relative;
}

.wsus__testimonial_4_top_rating {
  align-items: center;
  justify-content: end;
  gap: 5px;
}

.wsus__testimonial_4_top_rating .icon {
  width: 45px;
  height: 45px;
}

.wsus__testimonial_4_top_rating .text span {
  display: block;
  font-size: 13px;
  color: var(--ratingColor);
  margin-bottom: 5px;
}

.wsus__testimonial_4_top_rating .text h4 {
  font-size: 16px;
  font-weight: 500;
}

.wsus__testimonial_4_bg {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.wsus__testimonial_4_img {
  width: 350px;
  height: 450px;
  margin-left: 50px;
  margin-top: 30px;
  margin-bottom: -10px;
}

.wsus__testimonial_4_text {
  padding-right: 130px;
  padding-top: 15px;
  position: relative;
}

.wsus__testimonial_4_text::after {
  position: absolute;
  content: "";
  background: url(../images/testimonial_4_shapes_5.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 70px;
  height: 40px;
  bottom: -20px;
  right: 120px;
}

.wsus__testimonial_4_text .rating {
  color: var(--ratingColor);
}

.wsus__testimonial_4_text .description {
  color: var(--colorBlack);
  font-size: 20px;
  line-height: 38px;
  opacity: 0.8;
  margin-top: 20px;
  margin-bottom: 50px;
}

.wsus__testimonial_4_text h3 {
  font-size: 22px;
  font-weight: 600;
}

.wsus__testimonial_4_text .designation {
  color: var(--colorBlack);
  opacity: 0.7;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
}

.wsus__testimonial_4 .wsus__section_heading {
  position: relative;
}

.wsus__testimonial_4 .wsus__section_heading::before {
  position: absolute;
  content: "";
  background: url(../images/testimonial_4_shapes.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 90px;
  height: 90px;
  top: -15px;
  right: -100px;
  z-index: -1;
}

.wsus__testimonial_4::before {
  position: absolute;
  content: "";
  background: url(../images/testimonial_4_shapes_4.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 100px;
  top: 120px;
  left: 0;
  z-index: -1;
}

.wsus__testimonial_4::after {
  position: absolute;
  content: "";
  background: url(../images/testimonial_4_shapes_3.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 130px;
  height: 130px;
  bottom: 100px;
  right: 0;
  z-index: -1;
}

.testimonial_4_slider .nextArrow,
.testimonial_4_slider .prevArrow {
  right: -12px;
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.testimonial_4_slider .prevArrow {
  right: auto;
  left: -12px;
}

/* testimonial 4 end */

/* blog 4 start */
.blog_4 {
  background: #e2f3cd;
  padding-left: 25px;
  padding-right: 25px;
}

.wsus__single_blog_4 {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
}

.blog_4_slider .wsus__single_blog_4 {
  margin: 0px 12px;
}

.wsus__single_blog_4_img {
  display: block;
  width: 250px;
  height: 340px;
  position: relative;
  overflow: hidden;
}

.wsus__single_blog_4_img .date {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 500;
  background: var(--colorOrange);
  padding: 4px 10px 3px 28px;
}

.wsus__single_blog_4_img .date::after {
  position: absolute;
  content: "";
  background: url(../images/calendar_black.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
  top: 7px;
  left: 9px;
}

.wsus__single_blog_4_text {
  width: 58.4%;
  padding: 30px;
}

.wsus__single_blog_4_text ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.wsus__single_blog_4_text ul li {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 400;
  border: 1px solid rgba(30, 30, 47, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2px 8px;
}

.wsus__single_blog_4_text ul li span {
  display: inline-block;
  position: relative;
  top: -1px;
  margin-right: 3px;
  width: 17px;
}

.wsus__single_blog_4_text .title {
  font-size: 22px;
}

.wsus__single_blog_4_text p {
  line-height: 26px;
  margin-top: 10px;
  margin-bottom: 27px;
}

.wsus__single_blog_4_text .common_btn_2 {
  padding: 11px 35px;
}

.wsus__single_blog_4_text .common_btn_2:hover {
  border-color: var(--colorOrange);
  color: var(--colorBlack);
}

.wsus__single_blog_4_text .common_btn_2::after {
  background: var(--colorOrange);
}

.blog_4_slider .nextArrow,
.blog_4_slider .prevArrow {
  top: -100px;
  right: 290px;
}

.blog_4_slider .prevArrow {
  left: auto;
  right: 345px;
}

/* blog 4 end */

/* footer 4 start */
.footer_4 {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.footer_4 .wsus__footer_3_logo_area ul li a {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.footer_4 .wsus__footer_3_logo_area ul li a:hover {
  background: var(--colorOrange);
  border-color: var(--colorOrange);
  color: var(--colorBlack);
}

.footer_4 .wsus__footer_link {
  padding-top: 0;
  padding-left: 0;
}

.wsus__footer_4_download h3,
.wsus__footer_instagram h3 {
  color: var(--colorWhite);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.wsus__footer_4_download ul {
  gap: 20px;
}

.wsus__footer_4_download ul li {
  width: 100%;
}

.wsus__footer_4_download ul li a {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--colorWhite);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 18px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__footer_4_download ul li a span {
  margin-right: 10px;
  width: 20px;
  position: relative;
  top: -2px;
  transition: all linear.3s;
  -webkit-transition: all linear.3s;
  -moz-transition: all linear.3s;
  -ms-transition: all linear.3s;
  -o-transition: all linear.3s;
}

.wsus__footer_4_download ul li a:hover {
  background: var(--colorOrange);
  color: var(--colorBlack);
  border-color: var(--colorOrange);
}

.wsus__footer_4_download ul li a:hover span {
  filter: brightness(0) saturate(100%) invert(9%) sepia(10%) saturate(2363%) hue-rotate(201deg) brightness(95%) contrast(92%);
}

.wsus__footer_instagram {
  padding-left: 40px;
}

.wsus__footer_instagram ul {
  gap: 10px;
}

.wsus__footer_instagram ul li a {
  position: relative;
  width: 80px;
  height: 80px;
  display: block;
}

.wsus__footer_instagram ul li a span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--colorOrange);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--colorBlack);
  font-size: 24px;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__footer_instagram ul li a:hover span {
  opacity: 1;
}

.footer_4 .wsus__footer_copyright_area {
  background: #12121c;
}

/* footer 4 end */
/*============================
    HOME PAGE 04 END
============================*/

/*===============================
    HOME PAGE 05 DARK START
===============================*/
.home_dark {
  background: #0d1229;
}

.home_dark h1,
.home_dark h2,
.home_dark h3,
.home_dark h4,
.home_dark h5,
.home_dark h6 {
  color: var(--colorWhite);
}

.home_dark p,
.home_dark span {
  color: #c4c4cc;
}

.home_dark .wsus__banner_image .text h4 {
  color: var(--colorBlack);
}

.home_dark header {
  background: var(--colorPrimary);
}

.home_dark header .wsus__header_left li a {
  color: #ffffffc2;
}

.home_dark header .wsus__header_left li a:hover {
  color: var(--colorWhite);
}

.home_dark header .wsus__header_center p {
  color: #ffffffc2;
}

.home_dark .main_menu {
  background: #0d1229;
}

.home_dark .main_menu .navbar-nav .nav-item .nav-link {
  color: var(--colorWhite);
}

.home_dark .main_menu .navbar-nav .nav-item:hover .nav-link,
.home_dark .main_menu .navbar-nav .nav-item .nav-link.active {
  color: var(--colorPrimary);
}

.home_dark .main_menu .right_menu form {
  background: #3a3a55;
}

.home_dark .main_menu .right_menu form .search input {
  background: none;
  color: var(--colorWhite);
}

.home_dark .main_menu .right_menu form .search input::placeholder {
  color: var(--colorWhite);
}

.home_dark .menu_category {
  color: var(--colorWhite);
  border-color: #616177;
}

.home_dark .main_menu .right_menu ul li .menu_signin {
  color: var(--colorWhite);
}

.home_dark .right_menu ul li .menu_signin:hover span {
  filter: brightness(0) saturate(100%) invert(100%) sepia(20%) saturate(403%) hue-rotate(43deg) brightness(108%) contrast(104%);
}

.home_dark .wsus__banner::before {
  background: url(../images/banner_shapes_3.1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: none;
  -webkit-animation: none;
}

.home_dark .wsus__about_text ul li {
  color: var(--colorWhite);
}

.home_dark .wsus__category {
  background: #3a3a55;
}

.home_dark .wsus__filter_area ul li button:hover,
.home_dark .wsus__filter_area ul li button.active {
  color: var(--colorWhite) !important;
}

.home_dark .wsus__filter_area ul {
  border-color: #252a3e;
}

.home_dark .wsus__single_courses {
  background: transparent;
  border: 1px solid #2f3347;
}

.home_dark .wsus__single_courses_footer::after {
  background: #2f3347;
}

.home_dark .wsus__single_courses_text .rating span {
  color: #787882;
}

.home_dark .title {
  color: var(--colorWhite);
}

.home_dark .wsus__single_courses_text ul {
  background: #3a3a55;
}

.home_dark .wsus__single_courses_text ul li {
  color: var(--colorWhite);
}

.home_dark .wsus__single_courses_text ul li::after {
  filter: brightness(0) saturate(100%) invert(82%) sepia(2%) saturate(1342%) hue-rotate(202deg) brightness(90%) contrast(80%);
}

.home_dark .wsus__single_courses_text .category,
.home_dark .wsus__single_courses_text .category a {
  color: #787882;
}

.home_dark .wsus__single_courses_text ul li:first-child {
  border-color: #56566d;
}

.home_dark .wsus__single_courses_text .category a:hover {
  color: var(--colorWhite);
  border-color: var(--colorWhite);
}

.home_dark .wsus__single_courses_text .author p {
  color: var(--colorWhite);
}

.home_dark .wsus__single_courses_footer p {
  color: var(--colorPrimary);
}

.home_dark .read_btn {
  color: var(--colorWhite);
}

.home_dark .wsus__hotline_text .call p span,
.home_dark .wsus__hotline_text .mail p span {
  background: rgba(255, 255, 255, 0.1);
  border: none;
}

.home_dark .wsus__become_instructor::after {
  filter: brightness(0) saturate(100%) invert(99%) sepia(30%) saturate(48%) hue-rotate(199deg) brightness(118%) contrast(100%);
}

.home_dark .wsus__become_instructor::before {
  filter: brightness(0) saturate(100%) invert(78%) sepia(10%) saturate(1351%) hue-rotate(20deg) brightness(87%) contrast(87%);
  -webkit-filter: brightness(0) saturate(100%) invert(78%) sepia(10%) saturate(1351%) hue-rotate(20deg) brightness(87%) contrast(87%);
}

.home_dark .wsus__instructor::after {
  background: #3a3a55;
}

.home_dark .wsus__single_instructor_text .title {
  color: var(--colorBlack);
}

.home_dark .wsus__single_instructor_text p {
  color: #787882;
}

.home_dark .slick-dots li button {
  border: 1px solid #474b5c;
}

.home_dark .accordion-item {
  border-color: #252a3e !important;
  background: none;
}

.home_dark .accordion-item button {
  background: #0d1229;
  color: var(--colorWhite);
}

.home_dark .accordion-button::after {
  background: rgba(255, 255, 255, 0.1);
  background-image: url(../images/arrow_down_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}

.home_dark .wsus__faq_text::after,
.home_dark .wsus__faq_text::before {
  filter: brightness(0) saturate(100%) invert(52%) sepia(90%) saturate(2310%) hue-rotate(352deg) brightness(92%) contrast(89%);
}

.home_dark .wsus__testimonial {
  background: #3a3a55;
}

.home_dark .wsus__single_testimonial {
  background: #0d1229;
}

.home_dark .wsus__single_testimonial::after {
  filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(1196%) hue-rotate(201deg) brightness(96%) contrast(87%);
}

.home_dark .wsus__single_testimonial .description,
.home_dark .wsus__single_testimonial h3 span {
  color: #787882;
}

.home_dark .nextArrow,
.home_dark .prevArrow {
  background: rgba(255, 255, 255, 0.1);
  color: var(--colorWhite);
}

.home_dark .nextArrow,
.home_dark .nextArrow:hover,
.home_dark .prevArrow:hover {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: var(--colorWhite);
}

.home_dark .wsus__single_blog_text .read_btn i {
  background: rgba(255, 255, 255, 0.1);
}

.home_dark .wsus__single_blog_text .read_btn:hover i {
  background: var(--colorPrimary);
}

/*===============================
    HOME PAGE 05 DARK END
===============================*/

/*============================
    ABOUT US START
============================*/
.wsus__features_3 .wsus__section_heading h5,
.wsus__about_3_text .wsus__section_heading h5 {
  color: var(--paraColor);
  font-weight: 600;
  position: relative;
  padding: 0px 0px 0px 30px;
  background: none;
  text-transform: capitalize;
}

.wsus__features_3 .wsus__section_heading h5::after,
.wsus__about_3_text .wsus__section_heading h5::after {
  position: absolute;
  content: "";
  background: url(../images/book_icon_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  top: -5px;
  left: -4px;
}

.wsus__about_3_text .common_btn {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__about_3_text .common_btn::after {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wsus__about_counter .wsus__counter_bg {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/*============================
    ABOUT US END
============================*/

/*============================
    COURSES PAGE START
============================*/
.wsus__page_courses_header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.wsus__page_courses_header p {
  color: var(--colorBlack);
  font-size: 16px;
}

.wsus__page_courses_header p span {
  color: var(--colorPrimary);
  font-size: 16px;
}

.wsus__page_courses_header form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 300px;
  gap: 10px;
  justify-content: end;
}

.wsus__page_courses_header .nice-select {
  max-width: 200px;
  border: 1px solid rgba(30, 30, 47, 0.2);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__page_courses_header .nice-select:after {
  margin-top: -6px;
  right: 20px;
}

.wsus__sidebar {
  padding: 40px 30px;
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
}

.wsus__sidebar h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 32px;
  padding-bottom: 5px;
}

.wsus__sidebar_search {
  border: 1px solid rgba(30, 30, 47, 0.1);
  position: relative;
}

.wsus__sidebar_search input {
  padding: 12px 15px;
  border: none;
}

.wsus__sidebar_search button {
  position: absolute;
  top: 7px;
  right: 7px;
  background: var(--colorWhite);
  width: 35px;
  height: 35px;
  text-align: center;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__sidebar_search button img {
  width: 15px !important;
  height: 15px !important;
}

.wsus__sidebar_search button:hover {
  background: var(--colorOrange);
}

.wsus__sidebar_category {
  border-bottom: 1px solid rgba(30, 30, 47, 0.1);
  padding-bottom: 30px;
}

.wsus__sidebar_category ul li {
  position: relative;
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 400;
  display: block;
  margin-top: 15px;
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  overflow: hidden;
}

.wsus__sidebar_category ul li:hover,
.wsus__sidebar_category ul li.active {
  color: var(--colorPrimary);
}

.wsus__sidebar_category ul li::after,
.wsus__sidebar_category ul li::before {
  position: absolute;
  content: "";
  background: url(../images/minus_icon.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  height: 10px;
  top: 6px;
  right: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__sidebar_category ul li::before {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.wsus__sidebar_category ul li.active::before {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.wsus__sidebar_sub_category {
  height: 0;
  overflow: hidden;
  overflow-y: auto;
  padding-left: 5px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__sidebar_sub_category::-webkit-scrollbar {
  background: var(--colorWhite);
  width: 3px;
  height: 10px;
}

.wsus__sidebar_sub_category::-webkit-scrollbar-thumb {
  background: var(--colorWhite);
}

.wsus__sidebar_course_lavel {
  border-bottom: 1px solid rgba(30, 30, 47, 0.1);
  padding-bottom: 30px;
}

.wsus__sidebar_course_lavel .form-check,
.wsus__sidebar_sub_category .form-check {
  margin-top: 12px;
}

.wsus__sidebar_course_lavel .form-check.sub_category {
  padding-left: 40px;
}

.wsus__sidebar_course_lavel input,
.wsus__sidebar_sub_category input {
  padding: 0;
  width: 16px;
  height: 16px;
  border-radius: 0 !important;
  border: 1px solid rgba(30, 30, 47, 0.14);
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.wsus__sidebar_course_lavel label,
.wsus__sidebar_sub_category label {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.wsus__sidebar_course_lavel label i {
  color: var(--ratingColor);
}

.wsus__single_courses_2 .title {
  font-size: 17px;
}

/*============================
    COURSES PAGE END
============================*/

/*============================
    COURSES DETAILS START
============================*/
.course_details_breadcrumb .wsus__breadcrumb_overlay {
  padding: 255px 0px 135px 0px;
}

.course_details_breadcrumb .rating {
  color: var(--ratingColor);
  margin-bottom: 17px;
}

.course_details_breadcrumb .rating span {
  color: var(--colorWhite);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.course_details_breadcrumb h1 {
  color: var(--colorWhite);
  font-size: 40px;
  font-weight: 600;
  max-width: 50%;
  margin-bottom: 30px;
}

.course_details_breadcrumb .list {
  gap: 20px;
  padding-left: 0;
}

.course_details_breadcrumb .list::after {
  display: none;
}

.course_details_breadcrumb .list li {
  font-size: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  padding-right: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 14px;
}

.course_details_breadcrumb .list li:last-child {
  border: none;
}

.course_details_breadcrumb .list li span {
  display: inline-block;
  width: 18px;
  position: relative;
  top: -2px;
  margin-right: 7px;
}

.wsus__courses_details_area .nav {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 8px;
  gap: 8px;
  display: inline-flex;
}

.wsus__courses_details_area .nav li button {
  background: #f0f5f9;
  color: var(--colorBlack);
  font-size: 16px;
  font-weight: 500;
  opacity: 0.7;
  border-radius: 0 !important;
  padding: 7px 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.wsus__courses_details_area .nav li button:hover,
.wsus__courses_details_area .nav li button.active {
  opacity: 1;
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.box_area {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 10px 40px 40px 40px;
}

.wsus__courses_overview h1,
.wsus__courses_overview h2,
.wsus__courses_overview h3,
.wsus__courses_overview h4,
.wsus__courses_overview h5,
.wsus__courses_overview h6 {
  font-weight: 600;
  margin-top: 30px;
}

.wsus__courses_overview h1 {
  font-size: 32px;
}

.wsus__courses_overview h2 {
  font-size: 28px;
}

.wsus__courses_overview h3 {
  font-size: 24px;
}

.wsus__courses_overview h4 {
  font-size: 20px;
}

.wsus__courses_overview h5,
.wsus__courses_overview h6 {
  font-size: 16px;
}

.wsus__courses_overview p {
  margin-top: 20px;
}

.wsus__courses_overview ul,
.wsus__courses_overview ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-top: 20px;
}

.wsus__courses_overview ul li,
.wsus__courses_overview ol li {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0px;
  width: 50%;
  padding-left: 30px;
  position: relative;
}

.wsus__courses_overview ul li::after,
.wsus__courses_overview ol li::after {
  position: absolute;
  content: "";
  background: url(../images/check_icon_green_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 1px;
  left: 0;
}

.wsus__courses_sidebar {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 25px;
  position: relative;
  margin-top: -295px;
  overflow: hidden;
  z-index: 3;
}

.wsus__courses_sidebar_video {
    overflow: hidden;
      position: relative;
    height: 220px;
}

.wsus__courses_sidebar_video a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 82px;
  line-height: 80px;
  box-shadow: none !important;
  background: var(--colorPrimary);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.wsus__courses_sidebar_video a img {
  width: 25px !important;
  height: 25px !important;
  transform: rotate(0deg) !important;
  -webkit-transform: rotate(0deg) !important;
  -moz-transform: rotate(0deg) !important;
  -ms-transform: rotate(0deg) !important;
  -o-transform: rotate(0deg) !important;
}

.wsus__courses_sidebar_video a:hover {
  background: var(--colorOrange);
}

.wsus__courses_sidebar_video a:hover img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(95%) saturate(0%) hue-rotate(176deg) brightness(96%) contrast(107%);
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(95%) saturate(0%) hue-rotate(176deg) brightness(96%) contrast(107%);
}

.wsus__courses_sidebar_price {
  font-size: 34px;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}

.wsus__courses_sidebar_price del {
  color: var(--colorBlack);
  font-size: 16px;
  font-weight: 400;
  opacity: 0.5;
  margin-right: 10px;
}

.wsus__courses_sidebar_list_info ul {
  margin-top: 35px;
}

.wsus__courses_sidebar_list_info ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 400;
  justify-content: space-between;
  margin-top: 15px;
}

.wsus__courses_sidebar_list_info ul li p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: var(--paraColor);
}

.wsus__courses_sidebar_list_info ul li p span {
  width: 18px;
  margin-right: 10px;
  position: relative;
  top: -1px;
}

.wsus__courses_sidebar_list_info .common_btn {
  display: block;
  text-align: center;
  margin-top: 25px;
  background: var(--colorOrange);
  color: var(--colorBlack);
}

.wsus__courses_sidebar_list_info .common_btn:hover {
  color: var(--colorWhite);
}

.wsus__courses_sidebar_share_btn {
    margin-top: 15px;
}

.wsus__courses_sidebar_share_btn a {
  width: 100%;
  text-align: center;
  padding: 13px 20px;
}

.wsus__courses_sidebar_share_btn a i {
  margin-left: 0;
  margin-right: 5px;
}

.wsus__courses_sidebar_info {
  margin-top: 35px;
}

.wsus__courses_sidebar_info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.wsus__courses_sidebar_info ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 13px;
}

.wsus__courses_sidebar_info ul li span {
  width: 20px;
  margin-right: 10px;
  position: relative;
  top: -1px;
}

.wsus__courses_sidebar_instructor {
  padding-top: 30px;
  margin-top: 35px;
  position: relative;
}

.wsus__courses_sidebar_instructor::after {
  position: absolute;
  content: "";
  width: 125%;
  height: 1px;
  background: rgba(30, 30, 47, 0.1);
  top: 0;
  left: -45px;
}

.wsus__courses_sidebar_instructor .image_area {
  margin-bottom: 20px;
}

.wsus__courses_sidebar_instructor .img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid #ddd;
}

.wsus__courses_sidebar_instructor .text h3 {
  font-size: 18px;
  font-weight: 500;
}

.wsus__courses_sidebar_instructor .text p,
.wsus__courses_sidebar_instructor .text p span {
  font-size: 12px;
}

.wsus__courses_sidebar_instructor .text p span {
  border-right: 1px solid rgba(3, 6, 17, 0.14);
  padding-right: 10px;
  margin-right: 10px;
}

.wsus__courses_sidebar_instructor ul {
  gap: 10px;
}

.wsus__courses_sidebar_instructor ul li {
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.wsus__courses_review_input h3,
.wsus__courses_review h3,
.wsus__courses_curriculum h3,
.wsus__courses_instructor h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 25px;
}

.wsus__courses_curriculum .accordion-item {
  margin: 0;
  border: none !important;
  border-top: 1px solid var(--borderColor) !important;
}

.wsus__courses_curriculum .accordion-header button {
  padding-left: 0;
  padding-right: 0;
}

.wsus__courses_curriculum .accordion-header button:not(.collapsed) {
  color: var(--colorBlack);
  background-color: var(--colorWhite);
}

.wsus__courses_curriculum .accordion-body {
  padding: 20px 0px;
  border-top: 1px solid var(--borderColor) !important;
}

.wsus__courses_curriculum .accordion-body ul li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-right: 30px;
  padding-left: 30px;
  margin: 15px 0px;
}

.wsus__courses_curriculum .accordion-body ul li::before {
  position: absolute;
  content: "";
  background: url(../images/file_icon.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 5px;
  left: 0;
}

.wsus__courses_curriculum .accordion-body ul li.active::before {
  content: "\f144";
  /* FontAwesome play icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  /* Solid style */
  background: none;
  /* Remove background image */
  width: auto;
  height: auto;
  color: var(--colorPrimary);
  /* Primary color */
}

.wsus__courses_curriculum .accordion-body ul li.video_file::before {
  background: url(../images/play_icon_round.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wsus__courses_curriculum .accordion-body ul li::after {
  position: absolute;
  content: "";
  background: url(../images/lock_icon.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 5px;
  right: 4px;
}

.wsus__courses_curriculum .accordion-body ul li.active::after {
  background: url(../images/check_icon_gray.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.wsus__courses_curriculum .accordion-body ul li.viewable::after {
  content: "\f06e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background-image: none;
  color: var(--colorPrimary);
}

.wsus__courses_curriculum .accordion-body ul li.active .right_text {
  background: var(--colorOrange);
  color: var(--colorBlack);
}

.wsus__courses_curriculum .accordion-body ul li p,
.wsus__courses_curriculum .accordion-body ul li a {
  display: block;
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 400;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__courses_curriculum .accordion-body ul li a:hover {
  color: var(--colorPrimary);
}

.wsus__courses_curriculum .accordion-body ul li .right_text {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 500;
  background: #f0f5f9;
  padding: 3px 13px;
  cursor: pointer;
}

.wsus__courses_curriculum .accordion-button::after {
  background-image: url(../images/plus_icon_black.webp);
  border: 1px solid rgba(30, 30, 47, 0.12);
}

.wsus__courses_curriculum .accordion-button:not(.collapsed)::after {
  background-image: url(../images/minus_icon_black.webp);
  border-color: rgba(30, 30, 47, 0.12);
}

.wsus__courses_curriculum .accordion-item:last-child {
  border-bottom: 1px solid var(--borderColor) !important;
}

.wsus__courses_instructor_img {
  height: 320px;
}

.wsus__courses_instructor_text h4 {
  font-size: 20px;
  font-weight: 600;
}

.wsus__courses_instructor_text .designation {
  color: var(--colorBlack);
  opacity: 0.6;
  font-size: 15px;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 15px;
}

.wsus__courses_instructor_text .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.wsus__courses_instructor_text .list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 400;
}

.wsus__courses_instructor_text .list li b {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 500;
}

.wsus__courses_instructor_text .list li strong {
  background: var(--colorOrange);
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  padding: 2px 11px;
}

.wsus__courses_instructor_text .list li span {
  display: inline-block;
  width: 16px;
  margin-right: 5px;
}

.wsus__courses_instructor_text .list li i {
  color: var(--ratingColor);
  margin-right: 5px;
}

.wsus__courses_instructor_text .badge {
  margin-top: 25px;
  padding: 0;
  gap: 10px;
}

.wsus__courses_instructor_text .badge li {
  width: 60px;
  height: 60px;
}

.wsus__courses_instructor_text .description {
  font-size: 14px;
  line-height: 22px;
  margin-top: 18px;
}

.wsus__courses_instructor_text .link {
  gap: 10px;
  margin-top: 30px;
}

.wsus__courses_instructor_text .link li a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(30, 30, 47, 0.14);
  color: var(--paraColor);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__courses_instructor_text .link li a:hover {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: var(--colorWhite);
}

.wsus__courses_review .total_review {
  background: #f3f5f9;
  padding: 40px 40px 50px 40px;
}

.wsus__courses_review .total_review h2 {
  color: var(--colorPrimary);
  font-size: 60px;
  font-weight: 500;
  text-align: center;
}

.wsus__courses_review .total_review p {
  color: var(--ratingColor);
  text-align: center;
  margin-top: 5px;
  margin-bottom: 10px;
}

.wsus__courses_review .total_review h4 {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.wsus__courses_review .review_bar {
  padding-left: 30px;
}

.wsus__courses_review .review_bar_single {
  position: relative;
  padding: 15px 40px 15px 50px;
}

.wsus__courses_review .review_bar_single p {
  position: absolute;
  top: 8px;
  left: 0;
}

.wsus__courses_review .review_bar_single p i {
  color: var(--ratingColor);
}

.wsus__courses_review .review_bar_single .qnty {
  position: absolute;
  top: 9px;
  right: 0;
}

.wsus__course_single_reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

.wsus__single_review_img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__single_review_text {
  width: 90%;
}

.wsus__single_review_text h4 {
  font-size: 16px;
  font-weight: 600;
}

.wsus__single_review_text h6 {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 7px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.wsus__single_review_text h6 span {
  color: var(--ratingColor);
  font-size: 14px;
}

.wsus__single_review_text p {
  font-size: 14px;
}

.wsus__courses_review_input h3 {
  margin-bottom: 7px;
}

.wsus__courses_review_input .select_rating {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  gap: 10px;
}

.wsus__courses_review_input form input,
.wsus__courses_review_input form textarea {
  border: 1px solid rgba(30, 30, 47, 0.1);
  margin-top: 20px;
}

.wsus__courses_review_input .form-check {
  margin-top: 10px;
  margin-bottom: 25px;
}

.wsus__courses_review_input .form-check input {
  padding: 0;
  margin-top: 3px;
  border: 1px solid rgba(30, 30, 47, 0.1);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__courses_review_input .form-check label {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 400;
}

.wsus__courses_review_input .form-check label a {
  text-transform: capitalize;
}

/*============================
    COURSES DETAILS END
============================*/

/*============================
    INSTRUCTOR FINDER START
============================*/
.instructor_finder_header {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 15px 15px 15px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.instructor_finder_header form input {
  border: 1px solid rgba(30, 30, 47, 0.1);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.instructor_finder_header .check_list {
  gap: 30px;
}

.instructor_finder_header .form-switch {
  padding-left: 0;
  margin: 0;
  position: relative;
  padding-right: 50px;
}

.instructor_finder_header .form-switch input {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.instructor_finder_header .form-switch label {
  color: var(--colorBlack);
  font-size: 16px;
  font-weight: 500;
  padding-top: 7px;
}

.instructor_finder_header .nice-select {
  width: 100%;
  max-width: 200px;
  border-radius: 0;
  border: 1px solid rgba(30, 30, 47, 0.1);
  height: 40px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.instructor_finder_header .nice-select:after {
  margin-top: -6px;
  right: 20px;
}

.wsus__instructor_finder_sidebar h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.instructor_finder_filter,
.instructor_finder_time {
  padding: 40px 30px;
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}

.instructor_finder_filter input.form-control,
.instructor_finder_filter .nice-select {
  margin-top: 15px;
  border-radius: 0;
  border: 1px solid rgba(30, 30, 47, 0.1);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.instructor_finder_filter .nice-select:after {
  margin-top: -6px;
  right: 20px;
}

/* .instructor_finder_filter input.form-control{} */

.instructor_finder_time .form-check {
  margin-top: 12px;
}

.instructor_finder_time input {
  padding: 0;
  width: 16px;
  height: 16px;
  border-radius: 0 !important;
  border: 1px solid rgba(30, 30, 47, 0.14);
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.instructor_finder_time label {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.instructor_finder_list {
  margin-top: 25px;
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.instructor_finder_img {
  display: block;
  width: 270px;
  height: 320px;
}

.instructor_finder_text {
  width: 68%;
  padding: 30px;
  position: relative;
}

.instructor_finder_text .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 25px;
}

.instructor_finder_text .list li {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 400;
  border-right: 1px solid rgba(30, 30, 47, 0.14);
  margin-right: 15px;
  padding-right: 15px;
  line-height: 15px;
}

.instructor_finder_text .list li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.instructor_finder_text .list li i {
  color: var(--colorPrimary);
  margin-right: 5px;
}

.instructor_finder_text .list li span {
  color: var(--colorPrimary);
  font-size: 18px;
  font-weight: 500;
}

.instructor_finder_text .badges {
  margin-top: 40px;
  padding: 0;
  gap: 10px;
}

.instructor_finder_text .badges li {
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.instructor_finder_text .rating {
  position: absolute;
  top: 0;
  right: 25px;
  border: 1px solid rgba(30, 30, 47, 0.1);
  color: var(--ratingColor);
  padding: 3px 4px 1px 5px;
}

.instructor_finder_text .rating span {
  background: #43d477;
  color: var(--colorWhite);
  font-size: 15px;
  font-weight: 500;
  padding: 0px 6px;
  margin-left: 5px;
}

/*============================
    INSTRUCTOR FINDER END
============================*/

/*============================
    INSTRUCTOR DETAILS START
============================*/
.instructor_details_content {
  margin-top: 0;
  padding: 25px;
}

.instructor_details_content .instructor_finder_img {
  width: auto;
  height: 480px;
  padding-right: 30px;
}

.instructor_details_content .instructor_finder_text {
  width: 100%;
  padding: 0;
}

.instructor_details_content .badges {
  margin-top: 30px;
  margin-bottom: 35px;
}

.instructor_details_content .overview {
  gap: 35px;
  border-top: 1px solid rgba(30, 30, 47, 0.12);
  padding-top: 40px;
  margin-top: 35px;
}

.instructor_details_content .overview li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.instructor_details_content .overview li .icon {
  width: 50px;
  height: 50px;
  padding: 11px;
}

.instructor_details_content .overview li .icon.green {
  background: #14b789;
}

.instructor_details_content .overview li .icon.sky {
  background: #00aee5;
}

.instructor_details_content .overview li .icon.red {
  background: #e50087;
}

.instructor_details_content .overview li .icon.blue {
  background: #802fde;
}

.instructor_details_content .overview li .text {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 5px;
}

.instructor_details_content .overview li .text h2 {
  font-size: 34px;
  font-weight: 600;
  line-height: 36px;
}

.instructor_det_tabs {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 8px;
  gap: 8px;
  display: inline-flex;
}

.instructor_det_tabs li button {
  color: var(--paraColor);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(30, 30, 47, 0.14);
  border-radius: 0 !important;
  padding: 6px 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.instructor_det_tabs li button.active,
.instructor_det_tabs li button:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.instructor_details_about {
  padding: 10px 50px 50px 50px;
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  margin-top: 25px;
}

.instructor_details_about h1,
.instructor_details_about h2,
.instructor_details_about h3,
.instructor_details_about h4,
.instructor_details_about h5,
.instructor_details_about h6 {
  font-weight: 600;
  margin-top: 40px;
}

.instructor_details_about h1 {
  font-size: 32px;
}

.instructor_details_about h2 {
  font-size: 28px;
}

.instructor_details_about h3 {
  font-size: 24px;
}

.instructor_details_about h4 {
  font-size: 20px;
}

.instructor_details_about h5 {
  font-size: 18px;
}

.instructor_details_about h6 {
  font-size: 16px;
}

.instructor_details_about p {
  margin-top: 25px;
}

.instructor_details_about ul,
.instructor_details_about ol {
  margin-top: 25px;
}

.instructor_details_about ul li,
.instructor_details_about ol li {
  position: relative;
  color: var(--paraColor);
  font-size: 18px;
  font-weight: 400;
  line-height: 38px;
  padding-left: 20px;
}

.instructor_details_about ul li::after,
.instructor_details_about ol li::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--colorPrimary);
  border-radius: 50%;
  top: 14px;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.instructor_details_about .skills {
  gap: 8px;
}

.instructor_details_about .skills li {
  padding: 0;
}

.instructor_details_about .skills li::after {
  display: none;
}

.instructor_details_about .skills li a {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(30, 30, 47, 0.14);
  padding: 0px 14px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.instructor_details_about .skills li a:hover {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: var(--colorWhite);
}

.wsus__single_product {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 20px;
  margin-top: 25px;
}

.wsus__single_product_img {
  height: 240px;
  overflow: hidden;
}

.wsus__single_product_text {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
}

.wsus__single_product_text h3 {
  color: var(--colorPrimary);
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 12px;
}

.wsus__single_product_text h3 del {
  font-weight: 500;
  color: var(--paraColor);
  margin-right: 5px;
}

.wsus__single_product_text p {
  color: var(--ratingColor);
}

.wsus__single_product_text p span {
  color: var(--colorBlack);
  font-size: 14px;
  margin-left: 5px;
}

.instructor_details_blog .wsus__single_blog_3 {
  background: var(--colorWhite);
  border-radius: 0;
  border: none;
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.instructor_details_blog .wsus__single_blog_3_img {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.instructor_details_bagdes,
.instructor_details_meeting {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 50px;
  margin-top: 25px;
}

.instructor_details_bagdes h3,
.instructor_details_meeting h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
}

.instructor_details_bagdes_item {
  border: 1px solid rgba(30, 30, 47, 0.1);
  padding: 40px;
  margin-top: 25px;
}

.instructor_details_bagdes_item .img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin: 0 auto;
}

.instructor_details_bagdes_item h4 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 5px;
}

.instructor_details_bagdes_item p {
  color: var(--colorBlack);
  text-align: center;
  opacity: 0.6;
  font-size: 14px;
  font-weight: 500;
}

.instructor_details_meeting {
  padding: 50px;
  display: flex;
  flex-direction: column;
}

.instructor_details_meeting .calendar {
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  margin-top: 25px;
}

.instructor_details_meeting .nice-select {
  border-radius: 0;
  border: 1px solid rgba(30, 30, 47, 0.14);
  width: 100%;
  margin-top: 25px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.instructor_details_meeting .nice-select:after {
  right: 20px;
}

.instructor_details_meeting textarea {
  border: 1px solid rgba(30, 30, 47, 0.14);
  margin-top: 25px;
}

.instructor_details_meeting button {
  margin-top: 20px;
}

/*============================
    INSTRUCTOR DETAILS END
============================*/

/*============================
    BLOG PAGE END
============================*/
.wsus__blog_page .wsus__single_blog_2 {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
}

/*============================
    BLOG PAGE END
============================*/

/*============================
    BLOG DETAILS START
============================*/
.wsus__blog_details_thumb {
  height: 490px;
}

.wsus__blog_details_header {
  border-bottom: 1px solid rgba(30, 30, 47, 0.2);
  margin-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 35px;
}

.wsus__blog_details_header ul {
  gap: 25px;
}

.wsus__blog_details_header ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.wsus__blog_details_header ul li span {
  display: inline-block;
  width: 19px;
  margin-right: 5px;
  position: relative;
  top: -2px;
}

.wsus__blog_details_header ul li .author {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__blog_details_header h1,
.wsus__blog_details_header h2,
.wsus__blog_details_header h3,
.wsus__blog_details_header h4,
.wsus__blog_details_header h5,
.wsus__blog_details_header h6 {
  font-weight: 700;
  margin-top: 20px;
}

.wsus__blog_details_header h1 {
  font-size: 38px;
}

.wsus__blog_details_header h2 {
  font-size: 34px;
}

.wsus__blog_details_header h3 {
  font-size: 30px;
}

.wsus__blog_details_header h4 {
  font-size: 26px;
}

.wsus__blog_details_header h5 {
  font-size: 24px;
}

.wsus__blog_details_header h6 {
  font-size: 20px;
}

.wsus__blog_details_text p {
  font-size: 16px;
  line-height: 26px;
}

.wsus__blog_details_text h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 50px;
  margin-top: 35px;
  margin-bottom: 15px;
}

.wsus__blog_details_text ul,
.wsus__blog_details_text ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-top: 20px;
}

.wsus__blog_details_text ul li,
.wsus__blog_details_text ol li {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 500;
  line-height: 38px;
  width: 50%;
  padding-left: 30px;
  position: relative;
}

.wsus__blog_details_text ul li::after,
.wsus__blog_details_text ol li::after {
  position: absolute;
  content: "";
  background: url(../images/check_icon_green_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 10px;
  left: 0;
}

.blog_det_center_img {
  height: 460px;
  overflow: hidden;
  margin-top: 25px;
}

.details_quot_text {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 40px 45px 40px 120px;
  margin-top: 55px;
  color: var(--paraColor);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  margin-bottom: 35px;
}

.details_quot_text::after {
  position: absolute;
  content: "";
  background: url(../images/blog_det_quot.webp);
  width: 50px;
  height: 40px;
  top: 45px;
  left: 50px;
}

.details_quot_text h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  margin-top: 18px;
  padding-left: 40px;
  position: relative;
}

.details_quot_text h4::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 3px;
  background: var(--colorOrange);
  top: 8px;
  left: 0;
}

.wsus__blog_det_tags_share {
  justify-content: space-between;
  align-items: center;
}

.wsus__blog_det_tags_share ul {
  gap: 8px;
}

.wsus__blog_det_tags_share ul li span {
  color: var(--colorBlack);
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
  text-transform: capitalize;
}

.wsus__blog_det_tags_share .tags li a {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(30, 30, 47, 0.14);
  padding: 3px 13px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  text-transform: capitalize;
}

.wsus__blog_det_tags_share .tags li a:hover {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: var(--colorWhite);
}

.wsus__blog_det_tags_share .share li a {
  font-size: 16px;
  color: var(--paraColor);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(30, 30, 47, 0.14);
  border-radius: 50%;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__blog_det_tags_share .share li a:hover {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: var(--colorWhite);
}

.wsus__blog_det_author {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 60px;
}

.wsus__blog_det_author .img {
  width: 215px;
  height: 245px;
  overflow: hidden;
}

.wsus__blog_det_author .text {
  width: 74%;
  padding: 25px 25px 25px 60px;
}

.wsus__blog_det_author .text h3 {
  font-size: 18px;
  font-weight: 600;
}

.wsus__blog_det_author .text h5 {
  color: var(--paraColor);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 20px;
}

.wsus__blog_det_author .text p {
  font-size: 14px;
  line-height: 25px;
}

.wsus__blog_det_author .text ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin-top: 30px;
}

.wsus__blog_det_author .text ul li a {
  font-size: 16px;
  color: var(--paraColor);
  border-radius: 50%;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__blog_det_author .text ul li a:hover {
  color: var(--colorPrimary);
}

.wsus__blog_comment_area h2 {
  font-size: 24px;
  font-weight: 600;
}

.wsus__blog_single_comment {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
  border-bottom: 1px solid rgba(30, 30, 47, 0.14);
  padding-bottom: 30px;
}

.wsus__blog_single_comment .img {
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.wsus__blog_single_comment .text {
  width: 92%;
}

.wsus__blog_single_comment .text h4 {
  font-size: 16px;
  font-weight: 600;
}

.wsus__blog_single_comment .text h6 {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 5px;
  margin-bottom: 25px;
}

.wsus__blog_single_comment .text h6 a {
  color: var(--colorBlack);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__blog_single_comment .text h6 a:hover {
  color: var(--colorPrimary);
}

.wsus__blog_single_comment .text p {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

.single_comment_reply {
  margin-left: 65px;
}

.single_comment_reply .text {
  width: 91%;
}

.wsus__blog_comment_input_area h2 {
  font-size: 24px;
  font-weight: 600;
}

.wsus__blog_comment_input_area p {
  line-height: 26px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.wsus__blog_comment_input_area form input,
.wsus__blog_comment_input_area form textarea {
  border: 1px solid rgba(30, 30, 47, 0.14);
  margin-top: 20px;
}

.wsus__blog_comment_input_area .form-check {
  margin-top: 10px;
  margin-bottom: 30px;
}

.wsus__blog_comment_input_area .form-check input {
  padding: 0;
  margin-top: 4px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__blog_comment_input_area .form-check label {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 400;
}

.wsus__sidebar_blog_category,
.wsus__sidebar_recent_post {
  border-top: 1px solid rgba(30, 30, 47, 0.1);
  padding-top: 25px;
  margin-top: 30px;
}

.wsus__sidebar_blog_category h3,
.wsus__sidebar_recent_post h3 {
  margin: 0;
  margin-bottom: 20px;
}

.wsus__sidebar_recent_post ul {
  gap: 25px;
}

.wsus__sidebar_recent_post ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.wsus__sidebar_recent_post ul li .img {
  width: 90px;
  height: 100px;
}

.wsus__sidebar_recent_post ul li .text {
  width: 69%;
}

.wsus__sidebar_recent_post ul li .text p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.wsus__sidebar_recent_post ul li .text p span {
  display: inline-block;
  width: 17px;
  margin-right: 5px;
}

.wsus__sidebar_recent_post ul li .text a {
  font-size: 16px;
  line-height: 24px;
}

.wsus__sidebar_blog_category {
  border-bottom: 1px solid rgba(30, 30, 47, 0.1);
  margin-bottom: 35px;
  padding-bottom: 30px;
}

.wsus__sidebar_blog_category h3 {
  margin-bottom: 5px;
}

.wsus__sidebar_blog_category ul li a {
  border-bottom: 1px solid rgba(30, 30, 47, 0.1);
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0px 13px 21px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  position: relative;
}

.wsus__sidebar_blog_category ul li a::after {
  position: absolute;
  content: "\f054";
  font-family: "font awesome 5 free";
  font-weight: 600;
  font-size: 14px;
  color: var(--paraColor);
  top: 14px;
  left: 0;
  z-index: 1;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__sidebar_blog_category ul li a span {
  font-size: 15px;
  font-weight: 500;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__sidebar_blog_category ul li a:hover {
  color: var(--colorPrimary);
}

.wsus__sidebar_blog_category ul li a:hover span,
.wsus__sidebar_blog_category ul li a:hover::after {
  color: var(--colorPrimary);
}

.wsus__sidebar_blog_category ul li:last-child a {
  border-bottom: 0;
  padding-bottom: 0;
}

.wsus__sidebar_blog_author {
  position: relative;
}

.wsus__sidebar_blog_author .text {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  padding: 45px;
}

.wsus__sidebar_blog_author .text h3,
.wsus__sidebar_blog_author .text h3 span {
  color: var(--colorWhite);
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  margin: 0;
}

.wsus__sidebar_blog_author .text h3 span {
  color: var(--colorOrange);
}

.wsus__sidebar_blog_author .text a {
  background: var(--colorOrange);
  color: var(--colorBlack);
  margin-top: 12px;
}

.wsus__sidebar_blog_author .text a:hover {
  background: var(--colorBlack);
  color: var(--colorWhite);
}

.wsus__sidebar_blog_tags {
  border-top: 1px solid rgba(30, 30, 47, 0.1);
  margin-top: 35px;
}

.wsus__sidebar_blog_tags h3 {
  margin-bottom: 15px;
}

.wsus__sidebar_blog_tags ul {
  gap: 8px;
}

.wsus__sidebar_blog_tags ul li a {
  border: 1px solid rgba(30, 30, 47, 0.14);
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 500;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  padding: 3px 13px;
  text-transform: capitalize;
}

.wsus__sidebar_blog_tags ul li a:hover {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: var(--colorWhite);
}

/*============================
    BLOG DETAILS END
============================*/

/*============================
    PRODUCT PAGE START
============================*/
.wsus__course_product_page .title {
  margin-bottom: 10px;
}

.wsus__course_product_page .wsus__sidebar_course_lavel h3 {
  margin-top: 0;
}

/*============================
    PRODUCT PAGE END
============================*/

/*============================
    PRODUCT DETAILS SDTART
============================*/
.product_slider_small {
  margin-left: 0;
}

.product_slider_small_item {
  width: 80px;
  height: 65px;
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 2px;
  margin: 5px 0px;
  border: 1px solid var(--colorWhite);
}

.wsus__product_details_img {
  margin-right: 65px;
}

.product_slider_large_item {
  height: 490px;
  margin-left: 17px;
  margin-top: 5px;
}

.wsus__product_details_text .rating {
  border: 1px solid rgba(30, 30, 47, 0.1);
  background: rgba(30, 30, 47, 0);
  display: inline-block;
  padding: 2px 7px;
  color: var(--ratingColor);
}

.wsus__product_details_text .rating span {
  margin-left: 5px;
  font-weight: 500;
}

.wsus__product_details_text h2 {
  font-size: 34px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 15px;
}

.wsus__product_details_text .description {
  color: rgba(30, 30, 47, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wsus__product_details_text .price {
  color: var(--colorPrimary);
  font-size: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 27px;
}

.wsus__product_details_text .price del {
  color: var(--paraColor);
  font-size: 20px;
  font-weight: 500;
  margin-right: 10px;
}

.wsus__product_details_text .stock {
  color: #43d477;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-left: 23px;
}

.wsus__product_details_text .stock::after {
  position: absolute;
  content: "\f00c";
  font-family: "font awesome 5 free";
  font-size: 7px;
  font-weight: 600;
  width: 15px;
  height: 15px;
  line-height: 15px;
  background: #43d477;
  color: var(--colorWhite);
  top: 1px;
  left: 0;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__product_details_text .out-of-stock {
  color: #ce0f0c;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-left: 23px;
}

.wsus__product_details_text .out-of-stock::after {
  position: absolute;
  content: "\f00d";
  font-family: "font awesome 5 free";
  font-size: 7px;
  font-weight: 600;
  width: 15px;
  height: 15px;
  line-height: 15px;
  background: #ce0f0c;
  color: var(--colorWhite);
  top: 1px;
  left: 0;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__product_details_text .wsus__btn_area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  margin-bottom: 35px;
}

.wsus__product_details_text .qnty {
  width: 90px;
  height: 46px;
  position: relative;
  border: 1px solid rgba(30, 30, 47, 0.1);
  overflow: hidden;
}

.wsus__product_details_text .qnty input {
  width: auto;
  padding: 0;
  padding-left: 19px;
  font-weight: 600;
  color: var(--colorBlack);
  border: none;
}

.wsus__product_details_text .qnty input::placeholder {
  color: var(--colorBlack);
}

.wsus__product_details_text .qnty button {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 50%;
  text-align: center;
  border-left: 1px solid rgba(30, 30, 47, 0.1);
  background: var(--colorWhite);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__product_details_text .qnty button:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.wsus__product_details_text .qnty .bottom_arrow {
  top: auto;
  bottom: 0;
}

.wsus__product_details_text .wishlist {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 42px;
  background: var(--colorWhite);
  border: 1px solid rgba(30, 30, 47, 0.1);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__product_details_text .wishlist img {
  width: 17px !important;
  height: auto !important;
}

.wsus__product_details_text .wishlist:hover {
  background: var(--colorOrange);
  border-color: var(--colorOrange);
}

.wsus__product_details_text .common_btn_2 {
  background: var(--colorOrange);
  color: var(--colorBlack);
  border-color: var(--colorOrange);
}

.wsus__product_details_text .common_btn_2:after {
  background: var(--colorBlack);
}

.wsus__product_details_text .common_btn_2:hover {
  background: var(--colorBlack);
  border-color: var(--colorBlack);
  color: var(--colorWhite);
}

.wsus__product_details_text .list li {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
}

.wsus__product_details_text .list li span {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  margin-right: 5px;
}

.wsus__product_details_text .list li a {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 500;
  margin-right: 5px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__product_details_text .list li a:hover {
  color: var(--colorPrimary);
}

.product_slider_small .slick-current .product_slider_small_item {
  border-color: var(--colorPrimary);
}

.peoduct_details_description,
.peoduct_details_additional_info,
.peoduct_details_reviews {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 50px;
}

.peoduct_details_description h2,
.peoduct_details_additional_info h2,
.peoduct_details_reviews h2 {
  font-size: 24px;
  font-weight: 600;
}

.peoduct_details_reviews .short_text {
  margin-top: 20px;
}

.peoduct_details_description p {
  margin-top: 20px;
}

.peoduct_details_additional_info ul {
  margin-top: 20px;
}

.peoduct_details_additional_info ul li {
  color: var(--paraColor);
  font-size: 18px;
  font-weight: 400;
  line-height: 38px;
  position: relative;
  padding-left: 20px;
}

.peoduct_details_additional_info ul li span {
  font-size: 18px;
  display: inline-block;
  width: 200px;
}

.peoduct_details_additional_info ul li::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--colorPrimary);
  top: 15px;
  left: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/*============================
    PRODUCT DETAILS END
============================*/

/*============================
    CONTACT US START
============================*/
.wsus__contact_info {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 50px 40px;
  text-align: center;
  margin-top: 25px;
}

.wsus__contact_info .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__contact_info h4 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-top: 35px;
  margin-bottom: 10px;
}

.wsus__contact_info p,
.wsus__contact_info a {
  display: block;
  text-align: center;
  line-height: 26px;
  color: var(--paraColor);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__contact_info a:hover {
  color: var(--colorPrimary);
}

.wsus__contact_form_area {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 20px;
}

.wsus__contact_form_img {
  margin-right: 30px;
}

.wsus__contact_form h4 {
  font-size: 24px;
  font-weight: 600;
}

.wsus__contact_form p {
  margin-top: 8px;
  margin-bottom: 15px;
}

.wsus__contact_form input,
.wsus__contact_form textarea {
  border: 1px solid rgba(30, 30, 47, 0.14);
  margin-top: 20px;
}

.wsus__contact_form button {
  margin-top: 25px;
}

.wsus__contact_map {
  margin-left: 160px;
  margin-right: 160px;
  height: 570px;
}

.wsus__contact_map iframe {
  width: 100%;
  height: 100%;
}

/*============================
    CONTACT US END
============================*/

/*============================
    SIGN IN START
============================*/
.wsus__sign_in {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.wsus__sign_img {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.wsus__sign_img a {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 1;
}

.wsus__sign_form_area {
  margin-right: 25px;
}

.wsus__sign_form_area .nav {
  display: inline-flex;
  flex-wrap: wrap;
}

.wsus__sign_form_area .nav li button {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  background: #d9e2e9;
  padding: 9px 32px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  border-right: 1px solid #d9e2e9;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__sign_form_area .nav li button:hover,
.wsus__sign_form_area .nav li button.active {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.wsus__sign_form_area h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 22px;
}

.wsus__sign_form_area h2 span {
  font-size: 30px;
  font-weight: 600;
  color: var(--colorPrimary);
}

.wsus__sign_form_area .new_user {
  line-height: 26px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.wsus__sign_form_area .new_user a {
  color: var(--colorPrimary);
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  text-decoration-line: underline;
}

.wsus__sign_form_area .new_user a:hover {
  color: var(--colorBlack);
  text-decoration: none;
}

.wsus__sign_form_area form {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 60px 50px;
}

.wsus__login_form_input {
  margin-top: 20px;
}

.wsus__login_form_input label {
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.wsus__login_form_input label a {
  color: var(--colorPrimary);
  font-size: 14px;
  font-weight: 500;
  text-decoration-line: underline;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__login_form_input label a:hover {
  color: var(--colorBlack);
}

.wsus__login_form_input input {
  border: 1px solid rgba(30, 30, 47, 0.14);
}

.wsus__login_form_input .form-check input {
  padding: 0;
  border-radius: 0;
  margin-top: 2px;
  border: 1px solid rgba(30, 30, 47, 0.14);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__login_form_input .form-check label {
  color: #62626e;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.wsus__login_form_input .form-check label a {
  font-weight: 400;
}

.wsus__login_form_input .form-check label a:hover {
  text-decoration: none;
}

.wsus__login_form_input button {
  width: 100%;
  margin-top: 25px;
}

.wsus__sign_form_area .or {
  color: var(--paraColor);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  margin-top: 25px;
  margin-bottom: 25px;
}

.wsus__sign_form_area .or::after,
.wsus__sign_form_area .or::before {
  position: absolute;
  content: "";
  width: 46%;
  height: 1px;
  background: rgba(30, 30, 47, 0.1);
  top: 9px;
  left: 0;
}

.wsus__sign_form_area .or::before {
  left: auto;
  right: 0;
}

.wsus__sign_form_area .social_login {
  gap: 10px;
  justify-content: center;
}

.wsus__sign_form_area .social_login li a {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 40px 12px 40px;
  width: 100%;
  text-align: center;
  flex-wrap: wrap;
}

.wsus__sign_form_area .social_login li a span {
  display: inline-block;
  width: 20px;
  position: relative;
  margin-right: 5px;
}

.wsus__sign_form_area .create_account {
  text-align: center;
  margin-top: 35px;
}

.wsus__sign_form_area .create_account a {
  color: var(--colorPrimary);
  font-size: 15px;
  font-weight: 400;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__sign_form_area .create_account a:hover {
  color: var(--colorBlack);
  text-decoration: underline;
}

.wsus__sign_in .back_btn {
  position: absolute;
  top: 60px;
  right: 60px;
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  text-decoration-line: underline;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__sign_in .back_btn:hover {
  color: var(--colorPrimary);
  text-decoration: none;
}

.forgot_password h4 {
  text-align: left;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 600;
}

.forgot_password label {
  display: block;
  margin-bottom: 5px;
}

.forgot_password input {
  padding: 12px 20px;
  border-radius: 0;
  border: 1px solid var(--borderColor);
}

.forgot_password button {
  width: 100%;
  margin-top: 20px;
}

.forgot_password button span {
  color: var(--colorWhite);
}

/*============================
    SIGN IN END
============================*/

/*============================
    ERROR PAGE START
============================*/
.wsus__error_page {
  text-align: center;
}

.wsus__error_page .img {
  height: 520px;
  overflow: hidden;
}

.wsus__error_page h2 {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 60px;
  margin-bottom: 23px;
}

.wsus__error_page a i {
  margin-left: 0;
  margin-right: 5px;
}

/*============================
    ERROR PAGE END
============================*/

/*============================
    FORUM PAGE START
============================*/
.forum_header {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  margin-left: 30px;
  margin-right: 30px;
  padding: 130px 130px;
}

.forum_header_text h4 {
  color: var(--colorPrimary);
  font-size: 48px;
  font-weight: 600;
}

.forum_header_text h1 {
  font-size: 60px;
  font-weight: 600;
}

.forum_header_text p {
  color: var(--colorBlack);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  opacity: 0.7;
  margin-top: 20px;
  margin-bottom: 45px;
}

.forum_header_text form {
  background: var(--colorWhite);
  box-shadow: 0px 6px 30px 0px rgba(3, 18, 33, 0.14);
  position: relative;
}

.forum_header_text form i {
  position: absolute;
  font-size: 16px;
  color: var(--colorBlack);
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.forum_header_text form input {
  padding: 18px 50px;
}

.forum_header_text form button {
  position: absolute;
  top: 8px;
  right: 8px;
}

.wsus__counter_2 .wsus__single_counter {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  gap: 15px;
}

.wsus__counter_2 .wsus__single_counter .icon {
  width: 40px;
  height: 40px;
  margin-top: 10px;
}

.wsus__forum_categories {
  position: relative;
}

.wsus__forum_categories .container {
  position: relative;
}

.wsus__forum_categories .container::after {
  position: absolute;
  content: "";
  background: url(../images/category_4_shapes.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 70px;
  height: 70px;
  top: 45px;
  left: -25px;
}

.wsus__forum_categories::before {
  position: absolute;
  content: "";
  background: url(../images/category_4_shapes_1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 260px;
  left: 0px;
  bottom: 0px;
}

.wsus__forum_categories_item {
  border: 1px solid rgba(30, 30, 47, 0.1);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}

.wsus__forum_categories_item .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__forum_categories_item .text {
  width: 75%;
}

.wsus__forum_categories_item .text a {
  font-size: 18px;
  margin-bottom: 10px;
}

.wsus__forum_categories_item .text p {
  font-size: 14px;
  line-height: 24px;
}

.wsus__forum_topic {
  background: var(--colorLightBg);
}

.wsus__forum_topic_item {
  background: var(--colorWhite);
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 25px;
}

.wsus__forum_topic_item .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__forum_topic_item .text {
  width: 92%;
}

.wsus__forum_topic_item .text p {
  border-bottom: 1px solid rgba(30, 30, 47, 0.1);
  margin-top: 5px;
  padding-bottom: 23px;
  margin-bottom: 20px;
}

.wsus__forum_topic_footer {
  justify-content: space-between;
  align-items: center;
}

.forum_topic_left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 35px;
}

.forum_topic_left .img {
  width: 85px;
  position: relative;
}

.forum_topic_left .img span {
  position: absolute;
  top: 0;
  right: -20px;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(30, 30, 47, 0.14);
  background: var(--colorWhite);
  font-size: 14px;
  font-weight: 500;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.forum_topic_left ul li {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 500;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid rgba(30, 30, 47, 0.14);
}

.forum_topic_left ul li:last-child {
  padding-right: 0;
  margin-right: 0;
  border: none;
}

.forum_topic_left ul li img {
  width: 17px !important;
  height: auto !important;
  margin-right: 5px;
  margin-top: -4px;
}

.forum_topic_left ul li a {
  color: var(--colorPrimary);
  font-size: 14px;
  font-weight: 500;
}

.forum_topic_right {
  gap: 16px;
}

.forum_topic_right li {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 500;
}

.forum_topic_right li i {
  color: var(--colorBlack);
  font-size: 16px;
  margin-right: 5px;
}

.wsus__different_category {
  border: 1px solid rgba(30, 30, 47, 0.14);
  padding: 25px 25px 10px 25px;
}

.wsus__different_category .small_heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.wsus__different_forum_item {
  background: var(--colorLightBg);
  margin-bottom: 15px;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.wsus__different_forum_left {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 40%;
}

.wsus__different_forum_left .img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__different_forum_left .text {
  max-width: 280px;
}

.wsus__different_forum_left .text a {
  font-size: 18px;
}

.wsus__different_forum_center ul {
  gap: 50px;
  min-width: 140px;
}

.wsus__different_forum_center ul li {
  text-align: center;
}

.wsus__different_forum_center ul li h4 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.wsus__different_forum_right {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-width: 350px;
}

.wsus__different_forum_right .img {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__different_forum_right .text p {
  font-size: 14px;
  color: #030611;
  opacity: 0.7;
}

.wsus__different_forum_right .text ul li {
  font-size: 14px;
  font-weight: 500;
  color: #4f5159;
}

.wsus__different_forum_right .text ul li a {
  color: var(--colorPrimary);
  font-size: 14px;
  font-weight: 500;
  transition: all linear 0.3s;
  margin-right: 5px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__different_forum_right .text ul li a:hover {
  text-decoration: underline;
}

.wsus__different_forum_right .text ul li:last-child {
  border-left: 1px solid rgba(30, 30, 47, 0.14);
  padding-left: 10px;
  margin-left: 10px;
}

.wsus__forum_call_to_action {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  margin-left: 160px;
  margin-right: 160px;
}

.wsus__forum_call_to_action_img {
  width: 380px;
  height: 525px;
  margin-top: -110px;
}

.wsus__forum_call_to_action_text h3 {
  color: var(--colorWhite);
  font-size: 44px;
  font-weight: 600;
  line-height: 54px;
  text-transform: uppercase;
}

.wsus__forum_call_to_action_text ul {
  gap: 10px;
  margin-top: 40px;
}

.wsus__forum_call_to_action_text ul li a {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  padding: 11px 31px 10px 31px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__forum_call_to_action_text ul li a span {
  display: inline-block;
  width: 20px;
  position: relative;
  top: -1px;
}

.wsus__forum_call_to_action_text ul li a.create {
  background: var(--colorWhite);
}

.wsus__forum_call_to_action_text ul li a.browse {
  background: var(--colorBlack);
  color: var(--colorWhite);
}

.wsus__forum_call_to_action_text ul li a:hover {
  background: var(--colorOrange);
  color: var(--colorBlack);
}

/*============================
    FORUM PAGE END
============================*/

/*===============================
    FORUM CREATE TOPIC START
===============================*/
.forum_create_topic_input {
  margin-bottom: 23px;
}

.forum_create_topic_input label {
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  width: 100%;
  display: block;
}

.forum_create_topic_input input,
.forum_create_topic_input textarea {
  border: 1px solid rgba(30, 30, 47, 0.14);
  font-size: 14px;
  font-weight: 400;
}

.forum_create_topic_input .file {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  width: 380px;
  position: relative;
}

.forum_create_topic_input .file label {
  width: 80px;
  height: 47px;
  background: var(--colorOrange);
  margin: 0;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
}

.forum_create_topic_input .file label img {
  width: 20px !important;
  height: 20px !important;
  display: inline-block;
}

.forum_create_topic_input .file p {
  max-width: 300px;
  border: 1px solid rgba(30, 30, 47, 0.14);
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  padding: 0px 20px;
  height: 47px;
  line-height: 47px;
}

.forum_create_topic_input .file button {
  position: absolute;
  bottom: 0;
  right: -60px;
  width: 47px;
  height: 47px;
  line-height: 38px;
  text-align: center;
  background: var(--colorOrange);
  color: var(--colorBlack);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.forum_create_topic_input .file button:hover {
  background: var(--colorBlack);
  color: var(--colorWhite);
}

.forum_create_topic_input .nice-select {
  border-radius: 0;
  border: 1px solid rgba(30, 30, 47, 0.14);
  font-size: 14px;
  height: 47px;
  line-height: 47px;
  margin-bottom: 23px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.forum_create_topic_input .nice-select:after {
  right: 20px;
}

.forum_create_topic_input .current {
  color: var(--colorBlack);
}

.forum_create_topic_input .select2-container--default .select2-selection--single {
  border-radius: 0;
  border: 1px solid rgba(30, 30, 47, 0.14);
  font-size: 14px;
  height: 47px;
  line-height: 47px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__dashboard_profile_update .select2-container--default .select2-selection--single {
  border-radius: 0;
  border: 1px solid var(--borderColor);
  height: 50px !important;
}

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

.wsus__dashboard_profile_update .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 12px;
  right: 10px;
}

.forum_create_topic_input .select2-container {
  width: 100% !important;
}

.forum_create_topic_input .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 47px;
  padding-left: 20px;
}

.forum_create_topic_input .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
  right: 10px;
}

.forum_terms_and_rules {
  background: var(--colorLightBg);
  padding: 50px;
  position: relative;
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.forum_terms_and_rules h3 {
  font-size: 18px;
  font-weight: 600;
}

.forum_terms_and_rules .form-check {
  padding-left: 0;
}

.forum_terms_and_rules .form-check input {
  width: auto;
  margin-right: 5px;
}

.forum_terms_and_rules .form-check label {
  font-size: 14px;
  color: var(--colorBlack);
}

.forum_terms_and_rules .form-check label a {
  color: var(--colorPrimary);
  text-transform: capitalize;
}

.forum_terms_and_rules button.disabled {
  opacity: 0.5;
}

/*===============================
    FORUM CREATE TOPIC END
===============================*/

/*===============================
    FORUM SINGLE TOPIC START
===============================*/
.wsus__forum_single_topic_area {
  border: 1px solid rgba(30, 30, 47, 0.14);
  padding: 20px;
  overflow: hidden;
}

.single_topic_sidebar {
  background: var(--colorLightBg);
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 100px;
  margin-right: 50px;
  position: relative;
  height: 100%;
}

.single_topic_sidebar_banner {
  width: 100%;
  height: 125px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.single_topic_sidebar .author_img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  background: var(--colorOrange);
  border: 1px solid var(--colorWhite);
  filter: drop-shadow(0px 20px 30px rgba(23, 23, 24, 0.12));
  position: relative;
  z-index: 2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  padding: 10px 10px 0px 10px;
}

.single_topic_sidebar h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 5px;
}

.single_topic_sidebar h6 {
  color: var(--paraColor);
  text-align: center;
  font-size: 15px;
  font-weight: 400;
}

.single_topic_sidebar .badge {
  background: rgba(23, 23, 24, 0.1);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border-radius: 0;
  margin-top: 25px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.single_topic_sidebar .badge li {
  width: 50px;
  height: 50px;
  background: var(--colorWhite);
  padding: 11px;
}

.single_topic_sidebar .list {
  padding: 35px;
}

.single_topic_sidebar .list li {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 400;
  line-height: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.single_topic_sidebar .list li span {
  color: var(--colorBlack);
}

.single_topic_text .top {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(30, 30, 47, 0.14);
}

.single_topic_text .top p,
.single_topic_text .top a,
.single_topic_text p b {
  font-size: 14px;
  font-weight: 500;
  color: var(--paraColor);
}

.single_topic_text .top p span,
.single_topic_text .top a span {
  display: inline-block;
  width: 17px;
  margin-right: 5px;
}

.single_topic_text p b {
  border-left: 1px solid #d9d9d9;
  padding-left: 5px;
  margin-left: 5px;
}

.single_topic_text .top ul {
  gap: 12px;
}

.single_topic_text .top ul li a:hover {
  color: var(--colorPrimary);
}

.single_topic_text .top ul li:last-child a {
  border-radius: 100px;
  background: rgba(30, 30, 47, 0.06);
  padding: 6px 21px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.single_topic_text .top ul li:last-child a:hover {
  background: var(--colorOrange);
  color: var(--colorBlack);
}

.single_topic_text .center h4 {
  font-size: 15px;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 35px;
}

.single_topic_text .center ul,
.single_topic_text .center ol {
  padding-left: 15px;
}

.single_topic_text .center ul li,
.single_topic_text .center ol li {
  list-style: decimal;
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 400;
  margin-top: 30px;
}

.single_topic_text .center ul li span,
.single_topic_text .center ol li span {
  line-height: 26px;
}

.single_topic_text .topic_header {
  border: 1px solid rgba(30, 30, 47, 0.14);
  border-top: 0;
  padding: 20px;
}

.single_topic_text .topic_header h5 {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 25px;
  padding-left: 65px;
  position: relative;
}

.single_topic_text .topic_header h5 span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.single_topic_text .topic_header h5::after {
  position: absolute;
  content: "";
  background: url(../images/topic_quot_icon.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  top: -4px;
  left: 0;
}

.single_topic_text ul form a {
  color: var(--colorPrimary);
  margin-right: 15px;
}

.single_topic_text ul form button {
  background: none;
}

.center.markdown-content {
  min-height: 450px;
}

.center.markdown-content p {
  margin-top: 20px;
}

.attachments h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  margin-top: 50px;
}

/*===============================
    FORUM SINGLE TOPIC END
===============================*/

/*===============================
    FORUM CATEGORY LIST START
===============================*/
.forum_category_header {
  background: var(--colorWhite);
  box-shadow: 0px 4px 3px 0px rgba(30, 30, 47, 0.12),
    0px 2px 10px 0px rgba(30, 30, 47, 0.1);
  padding: 20px 20px 20px 25px;
}

.forum_category_header_left h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.forum_category_header_left ul {
  gap: 8px;
}

.forum_category_header_left ul li a {
  color: var(--paraColor);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(30, 30, 47, 0.14);
  padding: 1px 8px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.forum_category_header_left ul li a:hover {
  color: var(--colorWhite);
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
}

.forum_category_header_right {
  justify-content: flex-end;
}

.forum_category_header_right .rearch {
  position: relative;
  margin-right: 35px;
}

.forum_category_header_right .rearch input {
  border: 1px solid rgba(3, 6, 17, 0.1);
  width: 350px;
  margin-right: 5px;
}

.forum_category_header_right .rearch button {
  width: 50px;
  height: 50px;
  background: var(--colorPrimary);
  color: var(--colorWhite);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  text-align: center;
}

.forum_category_header_right .rearch button:hover {
  background: var(--colorBlack);
}

.forum_category_header_right .common_btn_2 {
  background: var(--colorOrange);
  border-color: var(--colorOrange);
  padding: 13px 35px;
}

.forum_category_header_right .common_btn_2:hover {
  border-color: var(--colorPrimary);
}

.forum_category_header_right .common_btn_2:hover span {
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(20%) hue-rotate(83deg) brightness(104%) contrast(100%);
}

.forum_category_header_right .common_btn_2 span {
  display: inline-block;
  position: relative;
}

.wsus__forum_category_list .wsus__different_forum_center ul {
  justify-content: center;
}

.wsus__forum_category_list .wsus__different_forum_left .text ul {
  margin-top: 5px;
}

.wsus__forum_category_list .wsus__different_forum_left .text ul li {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 400;
}

.wsus__forum_category_list .wsus__different_forum_left .text ul li:last-child {
  border-left: 1px solid rgba(30, 30, 47, 0.14);
  padding-left: 10px;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
}

.wsus__forum_category_list .wsus__different_forum_right .text p {
  font-size: 15px;
  font-weight: 400;
}

.wsus__forum_category_list .wsus__different_forum_left .img {
  width: 60px;
  height: 60px;
}

.wsus__forum_category_list .wsus__different_forum_right {
  min-width: 250px;
  width: 40%;
}

.wsus__forum_user {
  background: var(--colorWhite);
  box-shadow: 0px 4px 3px 0px rgba(30, 30, 47, 0.12),
    0px 2px 10px 0px rgba(30, 30, 47, 0.1);
  padding: 35px 25px;
  margin-top: 30px;
}

.wsus__forum_user h3 {
  font-size: 20px;
  font-weight: 600;
}

.wsus__forum_user ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.wsus__forum_user ul li .img {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__forum_user ul li .text {
  width: 74%;
}

.wsus__forum_user ul li .text a {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.wsus__forum_user ul li .text p,
.wsus__forum_user ul li .text p span {
  font-size: 14px;
}

.wsus__forum_user ul li .text p span {
  border-left: 1px solid rgba(30, 30, 47, 0.14);
  padding-left: 5px;
  margin-left: 5px;
}

/*===============================
    FORUM CATEGORY LIST END
===============================*/

/*===============================
    PRICING PLAN START
===============================*/
.wsus__pricing .wsus__section_heading p {
  margin-top: 15px;
  text-align: center;
}

.wsus__pricing .nav {
  display: inline-flex;
  justify-content: center;
  position: relative;
  width: 65px;
  height: 20px;
  margin-left: 10px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  background: rgba(30, 29, 48, 0.1);
}

.wsus__pricing .nav li button {
  background: none !important;
  position: relative;
  height: 30px;
  border-radius: 50%;
  margin-top: -5px;
}

.wsus__pricing .nav li button span {
  color: var(--paraColor) !important;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0;
  background: none !important;
  position: absolute;
  top: 5px;
  left: -100px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__pricing .nav li:last-child button span {
  left: auto;
  right: -85px;
}

.wsus__pricing .nav li button.active {
  background: var(--colorPrimary) !important;
}

.wsus__pricing .nav li button.active span {
  color: var(--colorPrimary) !important;
}

.wsus__pricing_area {
  background: var(--colorLightBg);
  margin-top: 45px;
  padding: 15px 0px 40px 0px;
}

.wsus__single_pricing {
  margin-top: 25px;
  padding: 50px 35px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_pricing h3 {
  font-size: 20px;
  font-weight: 500;
}

.wsus__single_pricing h2 {
  font-size: 44px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 5px;
}

.wsus__single_pricing h2 span {
  font-size: 16px;
  font-weight: 500;
}

.wsus__single_pricing p {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}

.wsus__single_pricing a {
  width: 100%;
  text-align: center;
  border: none !important;
  box-shadow: 0px 4px 3px 0px rgba(30, 30, 47, 0.12),
    0px 2px 10px 0px rgba(30, 30, 47, 0.1);
  display: block;
  margin-top: 35px;
  margin-bottom: 40px;
}

.wsus__single_pricing ul li {
  position: relative;
  color: var(--paraColor);
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  margin-top: 15px;
}

.wsus__pricing_tabs_area {
  position: relative;
}

.wsus__pricing_tabs_area p {
  color: #c83140;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  width: 160px;
  text-align: left;
  position: absolute;
  top: 0;
  right: -180px;
}

.wsus__pricing_tabs_area p::after {
  position: absolute;
  content: "";
  background: url(../images/pricing_arrow.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 65px;
  height: 18px;
  top: -5px;
  left: -75px;
}

.wsus__single_pricing ul li::after {
  position: absolute;
  content: "";
  background: url(../images/check_icon_green_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 2px;
  left: 0;
}

.wsus__single_pricing ul .deactivate::after {
  position: absolute !important;
  content: "";
  background: url(../images/delete-icon.webp) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  width: 18px !important;
  height: 18px !important;
  top: 2px !important;
  left: 0 !important;
}

.wsus__single_pricing.active,
.wsus__single_pricing:hover {
  background: var(--colorWhite);
  box-shadow: 0px 4px 3px 0px rgba(30, 30, 47, 0.12),
    0px 2px 10px 0px rgba(30, 30, 47, 0.1);
}

.wsus__single_pricing.active a,
.wsus__single_pricing:hover a {
  box-shadow: none;
  background: var(--colorPrimary);
  color: var(--colorWhite);
  border: 1px solid var(--colorPrimary);
  width: 100%;
}

.wsus__single_pricing a:hover {
  box-shadow: none;
}

.wsus__forum_single_topic_replay h6 {
  color: var(--colorBlack);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.wsus__forum_single_topic_input {
  border: 1px solid rgba(30, 30, 47, 0.14);
  padding: 20px 30px;
  overflow: hidden;
}

.wsus__forum_single_topic_input .popup {
  background: var(--colorLightBg);
  padding: 40px;
  margin-bottom: 25px;
  position: relative;
}

.wsus__forum_single_topic_input .popup h5 {
  font-size: 16px;
  font-weight: 400;
}

.wsus__forum_single_topic_input .popup p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}

.wsus__forum_single_topic_input .popup .delete_popup {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
  color: var(--colorBlack);
}

.wsus__forum_single_topic_input .popup.hide_popup {
  display: none;
}

.wsus__forum_single_topic_input textarea {
  color: var(--colorBlack);
  font-size: 16px;
  font-weight: 400;
  padding: 20px;
}

.wsus__forum_single_topic_input textarea::placeholder {
  color: var(--colorBlack);
}

/*===============================
    PRICING PLAN END
===============================*/

/*===============================
    CART VIEW START
===============================*/
.cart_list {
  border-right: 1px solid rgb(8 5 33 / 8%) !important;
}

.cart_list table {
  width: 100%;
}

.cart_list table tbody tr {
  border-top: 1px solid var(--colorLightBg);
}

.cart_list table tbody tr:last-child {
  border-bottom: 1px solid rgb(8 5 33 / 8%) !important;
}

.cart_list .pro_img {
  width: 10%;
  min-width: 130px;
}

.cart_list .pro_img img {
  width: 130px !important;
  height: 130px !important;
}

.cart_list th.pro_img {
  text-align: center;
}

.cart_list .pro_name {
  width: 16%;
  min-width: 250px;
  padding-right: 20px !important;
}

.cart_list .pro_select {
  width: 20%;
  min-width: 220px;
}

.cart_list .pro_tk {
  width: 15%;
  min-width: 120px;
}

.cart_list .pro_tk h6 {
  font-size: 16px;
  font-weight: 400;
  color: #111528;
}

.cart_list .pro_icon {
  width: 10%;
  min-width: 100px;
  text-align: center;
}

.cart_list table tr th {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  padding-top: 0 !important;
  color: var(--colorBlack);
  padding: 10px 0px !important;
  background: var(--colorLightBg);
}

.cart_list table tr td {
  font-size: 16px;
  font-weight: 400;
  color: var(--colorBlack);
  padding: 0;
}

.cart_list table tbody tr td a {
  color: var(--paraColor);
  text-transform: capitalize;
  font-size: 14px;
  display: block;
}

.cart_list table tbody tr td a {
  font-size: 18px;
  font-weight: 500;
  color: var(--colorBlack);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.cart_list table tbody tr td a:hover {
  color: var(--colorPrimary);
}

.cart_list .quentity_btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--colorLightBg);
}

.cart_list .quentity_btn button,
.cart_list .quentity_btn input {
  padding: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-color: transparent;
}

.cart_list .quentity_btn input {
  border-radius: 0;
  border-left: 1px solid var(--colorLightBg);
  border-right: 1px solid var(--colorLightBg);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.cart_list .quentity_btn input::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: var(--paraColor);
}

.cart_list .quentity_btn button {
  background: transparent;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--paraColor);
  transition: all linear 0.3s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.cart_list .quentity_btn button:hover {
  color: var(--colorWhite);
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
}

.cart_list table tbody tr td.pro_icon a {
  font-size: 24px;
  color: var(--paraColor);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  text-align: center;
}

.cart_list table tbody tr td.pro_icon a:hover {
  color: red;
}

.continue_shopping {
  margin-top: 30px;
}

.continue_shopping a {
  font-size: 16px;
  padding: 16px 26px;
}

.total_price {
  margin-top: 20px;
}

.total_price h4 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.total_price h4 span {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--colorPrimary);
  margin-left: 14px;
}

.subtotal_area h5 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.subtotal_area h5 span {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--colorPrimary);
}

.subtotal_area h6 {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--colorBlack);
  margin-top: 25px;
  text-align: left;
}

.subtotal_area p {
  line-height: 26px;
  text-transform: capitalize;
  margin-top: 15px;
  margin-bottom: 28px;
  text-align: left;
  border-bottom: 1px solid var(--borderColor);
  padding-bottom: 30px;
}

.subtotal_area {
  margin-top: 40px;
  text-align: right;
  background: var(--colorLightBg);
  padding: 35px;
}

.subtotal_area a {
  margin-top: 40px;
  padding: 15px 30px;
}

/*===============================
    CART VIEW END
===============================*/

/*================================
    CHECKOUT START
================================*/
.billing_details h4 {
  font-size: 24px;
  font-weight: 500;
}

.billing_details form {
  margin-top: 5px;
}

.billing_input {
  margin-top: 24px;
}

.billing_input label {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 7px;
  color: var(--colorBlack);
  text-transform: capitalize;
}

.billing_input input {
  padding: 17px 20px;
  border-radius: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.billing_input input::placeholder,
.billing_input textarea::placeholder {
  color: #72798bbd;
}

.billing_input .form-control:focus {
  color: var(--colorBlack);
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

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

.billing_input .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 1px solid var(--borderColor);
  border-radius: 0px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

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

.billing_input .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-bottom: 1px solid var(--paraColor);
  border-right: 1px solid var(--paraColor);
  width: 9px;
  height: 9px;
  margin-top: 9px;
  right: 23px;
}

.order_summary {
  padding: 28px 30px 23px 30px;
  margin-top: 88px;
  border: 1px solid var(--borderColor);
}

.order_summary h6 {
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
}

.order_summary .price {
  padding-top: 7px;
  margin-top: 25px;
  border-top: 1px solid var(--borderColor);
}

.order_summary p {
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
  margin-top: 12px;
  color: var(--colorBlack);
}

.order_summary p span {
  color: var(--colorBlack);
}

.order_summary h5 {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  margin-top: 20px;
  padding-top: 25px;
  border-top: 1px solid rgb(233, 236, 238);
}

.order_summary h5 span {
  font-size: 18px;
  font-weight: 500;
  color: var(--colorBlack);
}

.coupon_submit {
  position: relative;
  margin-top: 25px;
  background: var(--colorLightBg);
}

.coupon_submit input {
  padding: 15px 115px 15px 20px;
  background: var(--colorLightBg);
  border: none;
}

.coupon_submit button {
  position: absolute;
  top: 10px;
  right: 13px;
  padding: 6px 18px;
  font-weight: 500;
  background: var(--paraColor);
}

.order_summary a {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-top: 30px;
  text-transform: capitalize;
}

/*================================
    CHECKOUT END
================================*/

/*================================
    PAYMENT START
================================*/
.payment_mathod {
  width: 100%;
  height: 110px;
  text-align: center;
  background: var(--colorLightBg);
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.payment_mathod img {
  max-width: 120px !important;
  max-height: 50px !important;
}

.total_payment_price {
  margin-top: 25px;
  padding: 35px 30px 30px 30px;
  background: var(--colorLightBg);
}

.total_payment_price h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.total_payment_price h4 span {
  font-size: 20px;
  font-weight: 700;
  color: var(--colorBlack);
}

.total_payment_price ul {
  margin-top: 35px;
}

.total_payment_price ul li {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  margin-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.total_payment_price ul li span {
  font-weight: 400;
  color: var(--colorBlack);
}

.total_payment_price a {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.payment .modal .modal-dialog {
  width: 100%;
  max-width: 600px;
}

.payment .modal .modal-content {
  padding: 34px 40px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.payment .modal .modal-content p {
  line-height: 26px;
}

.modal_iteam {
  margin-top: 23px;
  margin-bottom: 9px;
}

.modal_iteam li {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
  color: var(--paraColor);
}

.modal_iteam li::after {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../images/check_mark_2.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.single_form {
  margin-bottom: 24px;
}

.single_form label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--colorBlack);
}

.single_form:nth-child(2) {
  margin-bottom: 17px;
}

.single_form .nice-select {
  border-radius: 0;
  height: 50px;
  line-height: 48px;
  padding-left: 18px;
  padding-right: 30px;
  border: 1px solid #e4e7e9;
  color: var(--paraColor);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.single_form .nice-select:after {
  width: 9px;
  height: 9px;
  margin-top: -7px;
  right: 20px;
  border-bottom: 2px solid var(--paraColor);
  border-right: 2px solid var(--paraColor);
}

.single_form .nice-select:focus {
  border-color: #e4e7e9;
}

.single_form .nice-select .list {
  width: 100%;
  border-radius: 3px;
  margin-top: 1px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.modal .modal-footer {
  justify-content: space-between;
  border-top: 0;
}

.modal_closs_btn {
  padding: 10px 20px;
  background: red;
}

.modal_closs_btn:hover {
  background: var(--colorSecondary);
}

.payment .modal-footer {
  padding: 0;
  margin-top: 30px;
}

.payment .modal-footer button {
  border: none;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.payment .priceing_condition {
  margin-bottom: 0px;
}

.payment .priceing_condition li:last-child {
  margin-bottom: 0;
}

/*================================
    PAYMENT END
================================*/

/*================================
    BLOG LIST VIEW START
================================*/
.wsus__blog_list_item {
  background: var(--colorWhite);
  box-shadow: 0px 4px 3px 0px rgba(30, 30, 47, 0.12),
    0px 2px 10px 0px rgba(30, 30, 47, 0.1);
  margin-top: 25px;
}

.wsus__blog_list_img {
  position: relative;
  height: 315px;
  overflow: hidden;
}

.wsus__blog_list_img a {
  position: absolute;
  top: 25px;
  left: 25px;
  color: var(--colorWhite);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--colorPrimary);
  padding: 2px 10px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  z-index: 2;
}

.wsus__blog_list_text {
  padding: 20px 60px 20px 15px;
}

.wsus__blog_list_text ul {
  gap: 15px;
  margin-bottom: 15px;
}

.wsus__blog_list_text ul li {
  font-size: 14px;
  font-weight: 500;
  color: var(--paraColor);
  border-right: 1px solid var(--borderColor);
  padding-right: 20px;
}

.wsus__blog_list_text ul li:last-child {
  border: none;
  padding: 0;
}

.wsus__blog_list_text ul li span {
  display: inline-block;
  margin-top: -1px;
  margin-right: 5px;
}

.wsus__blog_list_text p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  border-top: 1px solid var(--borderColor);
  margin-top: 25px;
  padding-top: 27px;
  margin-bottom: 20px;
}

/*================================
    BLOG LIST VIEW END
================================*/

/*================================
    COURSE VIDEO START
================================*/
.wsus__course_video {
  height: 100vh;
  background: var(--colorLightBg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 60px;
  overflow: hidden;
}

.wsus__course_header {
  background: var(--colorBlack);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  padding: 18px 30px;
  top: 0;
  left: 0;
  z-index: 9;
}

.wsus__course_header a,
.wsus__course_header p {
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 500;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__course_header a i {
  margin-right: 5px;
}

.wsus__course_header a:hover {
  color: var(--colorPrimary);
}

.wsus__course_video_player {
  width: 75%;
}

.wsus__course_sidebar {
  width: 25%;
  background: var(--colorLightBg);
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
  padding-top: 60px;
}

.wsus__course_sidebar .video_heading {
  border-bottom: 1px solid rgb(30 30 47 / 15%) !important;
  color: var(--colorBlack);
  font-size: 16px;
  font-weight: 500;
  padding: 20px 20px;
  width: 100%;
  position: fixed;
  top: 60px;
  z-index: 9999;
  background: var(--colorLightBg);
}

.wsus__course_sidebar .accordion-item {
  margin-top: 0;
  border: none !important;
  border-bottom: 1px solid rgb(30 30 47 / 15%) !important;
}

.wsus__course_sidebar .accordion-item button {
  background: var(--colorLightBg) !important;
}

.wsus__course_sidebar .accordion-item button b {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 400;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__course_sidebar .accordion-item button span {
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  top: 20px;
  right: 60px;
}

.wsus__course_sidebar .accordion-button::after {
  background: transparent;
  border: none;
  background-image: var(--bs-accordion-btn-icon);
  width: 17px;
  height: 17px;
}

.wsus__course_sidebar .accordion-body {
  border-top: 1px solid rgb(30 30 47 / 15%) !important;
  padding: 25px 20px 7px 20px;
}

.wsus__course_sidebar .form-check {
  margin-bottom: 15px;
}

.wsus__course_sidebar .form-check input {
  border: 1px solid rgba(30, 30, 47, 0.7);
  padding: 0;
  border-radius: 0;
  width: 15px;
  height: 15px;
  margin-top: 7px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__course_sidebar .form-check label {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 400;
}

.wsus__course_sidebar .form-check label span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
}

.wsus__course_sidebar .form-check label span img {
  width: 16px !important;
  height: auto !important;
}

.wsus__course_sidebar .dropdown {
  margin-top: -35px;
  text-align: right;
  margin-bottom: 5px;
}

.wsus__course_sidebar .dropdown button {
  color: var(--colorBlack);
  font-size: 12px;
  font-weight: 400;
  background: var(--colorWhite) !important;
  border: 1px solid rgba(30, 30, 47, 0.2);
  padding: 5px 20px;
}

.wsus__course_sidebar .dropdown button i {
  color: var(--colorBlack);
  margin-right: 3px;
}

.wsus__course_sidebar .dropdown-menu {
  border-radius: 0 !important;
  border: 1px solid rgba(30, 30, 47, 0.2);
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.wsus__course_sidebar .dropdown-menu.show {
  display: block;
  width: auto;
  min-width: 130px;
  max-width: 350px;
  transform: translate(0) !important;
  top: 32px !important;
  right: 0 !important;
  left: auto !important;
}

.wsus__course_sidebar .dropdown-menu li a {
  font-size: 13px;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-left: 35px;
}

.wsus__course_sidebar .dropdown-menu li a::after {
  position: absolute;
  content: "\f019";
  font-family: "font awesome 5 free";
  font-weight: 600;
  font-size: 11px;
  top: 4px;
  left: 12px;
  color: var(--colorBlack);
}

.wsus__course_sidebar .accordion-button:not(.collapsed) p {
  font-weight: 500;
}

.wsus__course_sidebar .accordion {
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}

.wsus__course_sidebar .accordion::-webkit-scrollbar {
  background: var(--colorWhite);
  width: 6px;
  height: 30px;
}

.wsus__course_sidebar .accordion::-webkit-scrollbar-thumb {
  background: var(--paraColor);
}

/*================================
    COURSE VIDEO END
================================*/

/*============================
    DASHBOARD  START
============================*/
/* dashboard sidebar start */
.wsus__dashboard_sidebar {
  margin-top: 30px;
}

.wsus__dashboard_sidebar_top {
  padding: 60px 20px 20px 20px;
  background: var(--colorWhite);
  box-shadow: 0px 3px 3px 0px rgba(23, 23, 24, 0.1);
  position: relative;
}

.wsus__dashboard_sidebar_top .dashboard_banner {
  position: absolute;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  z-index: 1;
}

.wsus__dashboard_sidebar_top .img {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border: 2px solid var(--colorWhite);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: var(--colorLightBg);
  overflow: hidden;
  padding: 5px 5px 0px 5px;
}

.wsus__dashboard_sidebar_top h4 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 13px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.wsus__dashboard_sidebar_top p {
  display: block;
  margin-top: 3px;
  text-transform: capitalize;
  text-align: center;
}

.wsus__dashboard_sidebar_menu {
  margin-top: 20px;
  box-shadow: 0px 3px 3px 0px rgba(23, 23, 24, 0.1);
}

.wsus__dashboard_sidebar_menu li a {
  display: flex;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 20px;
  color: var(--paraColor);
  text-transform: capitalize;
  background: var(--colorWhite);
  border-bottom: 1px solid var(--borderColor);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__dashboard_sidebar_menu li:last-child a {
  border-bottom: none;
}

.wsus__dashboard_sidebar_menu li a:hover,
.wsus__dashboard_sidebar_menu li a.active {
  color: var(--colorBlack);
  background: var(--colorOrange);
  border-color: var(--colorWhite);
}

.wsus__dashboard_sidebar_menu li a .img {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  position: relative;
  top: -2px;
  left: 0;
}

.wsus__dashboard_sidebar_menu li a:hover .img,
.wsus__dashboard_sidebar_menu li a.active .img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(39%) saturate(706%) hue-rotate(201deg) brightness(94%) contrast(90%);
}

/* dashboard sidebar start */

/* dashboard overview start */
.wsus__dash_earning {
  margin-top: 30px;
  padding: 28px 30px 28px 30px;
  background: var(--colorWhite);
  box-shadow: 0px 3px 3px 0px rgba(23, 23, 24, 0.1);
}

.wsus__dash_earning h6 {
  font-size: 14px;
  font-weight: 500;
  color: var(--paraColor);
  text-transform: uppercase;
}

.wsus__dash_earning h3 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 16px;
}

.wsus__dash_earning p {
  font-size: 13px;
  font-weight: 400;
  color: var(--colorPrimary);
  margin-top: 10px;
}

.wsus__dashboard_contant {
  margin-top: 30px;
  background: var(--colorWhite);
  box-shadow: 0px 3px 3px 0px rgba(23, 23, 24, 0.1);
}

.wsus__dashboard_contant_top {
  padding: 30px 30px 25px 30px;
  border-bottom: 1px solid var(--borderColor);
}

.wsus__dashboard_heading h5 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.wsus__dashboard_heading p {
  margin-top: 5px;
}

.wsus__dashboard_chat_graps {
  margin-top: 30px;
}

.wsus__dashboard_graph {
  padding: 20px;
  background: var(--colorWhite);
  box-shadow: 0px 3px 3px 0px rgba(23, 23, 24, 0.1);
}

.wsus__dashboard_graph h5 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.wsus__dashboard_graph .example-two {
  margin-top: 16px;
}

.wsus__dashboard_graph .simple-bar-graph__columns {
  height: 250px !important;
}

.wsus__dashboard_barfiller {
  padding: 25px 25px 25px 25px;
  background: var(--colorWhite);
  box-shadow: 0px 3px 3px 0px rgba(23, 23, 24, 0.1);
}

.wsus__dashboard_barfiller h5 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.wsus__dashboard_barfiller .single_bar {
  margin-top: 22px;
}

.wsus__dashboard_barfiller .single_bar p {
  font-size: 13px;
}

.wsus__dashboard_barfiller .barfiller {
  background: rgb(239, 239, 248);
  border-radius: 0px;
  margin-top: 4px;
  overflow: initial;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.wsus__dashboard_barfiller .barfiller .fill {
  border-radius: 0;
  background: var(--colorPrimary) !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__dashboard_barfiller .barfiller .fill.orrange {
  background: #e88222 !important;
}

.wsus__dashboard_barfiller .barfiller .fill.megenda {
  background: #b432e1 !important;
}

.wsus__dashboard_barfiller .barfiller .fill.merun {
  background: #d93d50 !important;
}

.wsus__dashboard_barfiller .barfiller .tip {
  left: auto !important;
  right: 0;
  background: none;
  color: var(--paraColor);
  margin-top: -23px;
  font-size: 12px;
  font-weight: 500;
}

.wsus__dashboard_barfiller .barfiller .tip:after {
  display: none;
}

.wsus__dash_course_table .table {
  margin: 0;
}

.wsus__dash_course_table .table tr th {
  font-size: 14px;
  font-weight: 500;
  color: var(--paraColor);
  text-transform: uppercase;
  border-bottom: none !important;
}

.wsus__dash_course_table .table tr th,
.wsus__dash_course_table .table tr td {
  padding: 20px;
  border-bottom: 1px solid var(--borderColor);
  vertical-align: middle;
}

.wsus__dash_course_table .table tr:last-child td {
  border-bottom: none !important;
  padding-right: 30px;
}

.wsus__dash_course_table .image {
  min-width: 180px;
}

.wsus__dash_course_table .details {
  min-width: 280px;
  width: 35%;
}

.wsus__dash_course_table .sale {
  min-width: 120px;
  width: 10%;
}

.wsus__dash_course_table .amount {
  min-width: 150px;
  width: 20%;
}

.wsus__dash_course_table .image_category {
  position: relative;
}

.wsus__dash_course_table .main_category,
.wsus__dash_course_table .sub_category {
  position: absolute;
  left: 12px;
  bottom: 50px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  color: var(--colorBlack);
  background: var(--colorWhite);
  box-shadow: 0px 4px 3px 0px rgba(30, 30, 47, 0.12),
    0px 2px 10px 0px rgba(30, 30, 47, 0.1);
  display: none;
}

.wsus__dash_course_table .sub_category {
  bottom: 12px;
}

.wsus__dash_course_table .rating {
  color: var(--ratingColor);
}

.wsus__dash_course_table .rating span {
  font-size: 14px;
  font-weight: 500;
  color: var(--colorPrimary);
}

.wsus__dash_course_table .details a {
  font-size: 17px;
  margin-top: 8px;
}

.wsus__dash_course_table .sale p,
.wsus__dash_course_table .amount p {
  font-size: 16px;
  font-weight: 500;
  color: var(--colorBlack);
}

/* dashboard overview end */

/* dashboard profile start */
.wsus__dashboard_profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 25px 30px 30px 30px;
  border-bottom: 1px solid var(--borderColor);
}

.wsus__dashboard_profile .img {
  width: 80px;
  height: 80px;
}

.wsus__dashboard_profile .img img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__dashboard_profile .text {
  margin-left: 30px;
}

.wsus__dashboard_profile .text h6 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.wsus__dashboard_profile .text p {
  margin-top: 5px;
  line-height: 22px;
}

.wsus__dashboard_profile_info li {
  font-size: 14px;
  /* font-weight: 500; */
  color: var(--paraColor);
  text-transform: capitalize;
  padding: 15px 15px 15px 30px;
  border-bottom: 1px solid var(--borderColor);
}

.wsus__dashboard_profile_info li span,
.wsus__dashboard_profile_info li p {
  width: 130px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--colorBlack);
}

.wsus__dashboard_profile_info li p {
  width: 100%;
  margin-bottom: 5px;
}

.wsus__dashboard_profile_info .lower {
  color: var(--paraColor);
  display: inline-flex;
  flex-wrap: wrap;
  width: auto;
  gap: 5px;
  font-weight: 400 !important;
}

/* dashboard profile end */

/* dashboard courses start */
.wsus__dash_course_searchbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 40px 20px 30px;
}

.wsus__dash_course_searchbox .input {
  position: relative;
}

.wsus__dash_course_searchbox .input input {
  width: 270px;
  padding: 10px 35px 10px 20px;
  border: 1px solid var(--borderColor);
}

.wsus__dash_course_searchbox .input button {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 14px;
  background: transparent;
}

.wsus__dash_course_searchbox .nice-select {
  border-radius: 0px;
  border: 1px solid var(--borderColor);
  height: 46px;
  line-height: 42px;
  width: 200px !important;
  padding-left: 15px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

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

.wsus__dash_course_table .status {
  min-width: 150px;
  width: 15%;
}

.wsus__dash_course_table .action {
  min-width: 130px;
  /* flex-direction: row !important; */
  /* align-items: center; */
}

.wsus__dash_course_table .action a {
  margin: 0px 3px;
}

.wsus__dash_course_table .status p {
  width: 60px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 0px;
  color: var(--colorWhite);
}

.wsus__dash_course_table .status .active {
  background: #159f46;
  width: 75px;
}

.wsus__dash_course_table .status .Pending {
  background: #e79520;
  width: 75px;
}

.wsus__dash_course_table .status .delete {
  background: #e53935;
  width: 75px;
}

/* dashboard courses end */

/* dashboard review start */
.wsus__dash_reviews_searchbox .selector_1 {
  width: 270px;
}

.wsus__dash_reviews_searchbox .selector_1 .nice-select,
.wsus__dash_reviews_searchbox .selector .nice-select {
  width: 100% !important;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.wsus__dash_reviews_searchbox .selector {
  width: 200px;
}

.wsus__dash_reviews {
  padding: 0px 30px 40px 30px;
}

.wsus__dash_reviews .wsus__course_single_reviews {
  margin-top: 50px;
}

.wsus__dash_reviews .wsus__single_review_img {
  width: 50px;
  height: 50px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__dash_reviews .wsus__single_review_text h6 {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

.wsus__dash_reviews .wsus__single_review_text p {
  line-height: 24px;
}

.dash_review_reply {
  width: auto !important;
  height: auto !important;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px !important;
  margin-top: 15px;
  line-height: initial !important;
  color: var(--colorBlack);
  background: var(--colorLightBg);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.dash_review_reply:hover {
  background: var(--colorOrange);
}

/* dashboard review end */

/* dashboard order start */
.wsus__dash_order_table .table {
  margin: 0;
}

.wsus__dash_order_table .table tr th {
  font-size: 14px;
  color: var(--colorBlack) !important;
  text-transform: uppercase;
  border-top: none !important;
  font-weight: 500;
}

.wsus__dash_order_table .table tr th,
.wsus__dash_order_table .table tr td {
  padding: 20px;
  border-bottom: none;
  border-top: 1px solid var(--borderColor);
  color: var(--paraColor);
  vertical-align: middle;
  min-width: 120px;
}

.wsus__dash_order_table .method {
  text-align: start;
}

.wsus__dash_order_table .details .rating {
  color: var(--ratingColor);
}

.wsus__dash_order_table .details .rating span {
  color: var(--colorPrimary);
  margin-left: 5px;
  font-weight: 500;
}

.wsus__dash_order_table .details a {
  font-size: 16px;
  margin-top: 10px;
}

.wsus__dash_order_table .sale p,
.wsus__dash_order_table .invoice p,
.wsus__dash_order_table .date p,
.wsus__dash_order_table .method p {
  font-size: 16px;
  text-transform: capitalize;
}

.wsus__dash_order_table .icon a:hover img {
  filter: brightness(0) saturate(100%) invert(37%) sepia(49%) saturate(4327%) hue-rotate(213deg) brightness(96%) contrast(97%);
}

/* dashboard order end */

/* dashboard invoice start */
.wsus__invoice_top {
  padding: 40px 60px 0px 60px;
  overflow: hidden;
}

.wsus__invoice_logo {
  width: 150px;
}

.wsus__invoice_heading {
  text-align: end;
  margin-top: 20px;
  position: relative;
}

.wsus__invoice_heading h2 {
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(23, 23, 24, 0.5);
}

.wsus__invoice_heading::after {
  position: absolute;
  content: "";
  top: 20px;
  left: -60px;
  width: 680px;
  height: 20px;
  background: rgba(23, 23, 24, 0.1);
}

.wsus__invoice_description {
  padding: 12px 60px 0px 60px;
}

.wsus__invoice_description h4 {
  font-size: 21px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 28px;
}

.wsus__invoice_address h5 {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.wsus__invoice_address p {
  width: 55%;
  line-height: 26px;
  margin-top: 12px;
}

.wsus__invoice_date {
  text-align: end;
}

.wsus__invoice_date h5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.wsus__invoice_date h5 span {
  font-size: 15px;
  font-weight: 400;
}

.wsus__invoice_date .date {
  margin-top: 14px;
}

.wsus__invoice_table {
  padding: 75px 60px 0px 60px;
}

.wsus__invoice_table .table {
  margin: 0;
  border-right: 1px solid var(--borderColor);
  border-left: 1px solid var(--borderColor);
}

.wsus__invoice_table .table tr th {
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  border-top: none !important;
  background: var(--colorBlack);
  color: var(--colorWhite);
}

.wsus__invoice_table .table tr th,
.wsus__invoice_table .table tr td {
  padding: 10px;
  border-top: none;
  border-bottom: 1px solid var(--borderColor);
  min-width: 100px;
  border-right: 1px solid var(--borderColor);
}

.wsus__invoice_table .table tr th p,
.wsus__invoice_table .table tr td p {
  color: var(--colorBlack);
}

.wsus__invoice_table .description a {
  color: var(--colorBlack);
}

.wsus__invoice_table .description a:hover {
  color: var(--colorPrimary);
}

.wsus__invoice_final_total {
  padding: 25px 62px 25px 60px;
}

.wsus__invoice_final_total_right h6 {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  text-align: right;
}

.wsus__invoice_final_total_right h5 {
  font-size: 16px;
  font-weight: bolder;
  text-transform: capitalize;
  text-align: right;
}

.wsus__invoice_final_total_right span {
  font-size: 16px;
  color: var(--colorBlack);
  display: inline-block;
}

/* dashboard invoice end */

/* dashboard student start */
.wsus__dashboard_searchbox {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 40px 0px 30px;
}

.wsus__dashboard_searchbox input {
  width: 79%;
  border: 1px solid var(--borderColor);
}

.wsus__dashboard_searchbox button {
  margin-left: 20px;
}

.wsus__dash_student_table .table {
  margin: 0;
}

.wsus__dash_student_table .table tr th {
  font-size: 14px;
  font-weight: 500;
  padding: 35px 0px 5px 30px !important;
  color: var(--paraColor);
  text-transform: uppercase;
  border-top: none !important;
}

.wsus__dash_student_table .table tr th,
.wsus__dash_student_table .table tr td {
  padding: 20px 0px 20px 30px;
  align-items: center;
  border-bottom: none;
  border-top: 1px solid var(--borderColor);
}

.wsus__dash_student_table .table tr th input,
.wsus__dash_student_table .name input {
  width: 13px;
  height: 13px;
  padding: 0;
  margin-right: 20px;
  border: 1px solid rgba(23, 23, 24, 0.4);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__dash_student_table th.name input {
  margin-top: 4px;
}

.wsus__dash_student_table .form-check-input:focus,
.wsus__dash_payout_table .form-check-input:focus {
  border-color: rgba(23, 23, 24, 0.4);
  outline: 0;
  box-shadow: none;
}

.wsus__dash_student_table .form-check-input:checked,
.wsus__dash_payout_table .form-check-input:checked {
  background-color: var(--colorPrimary);
  border-color: var(--colorPrimary);
}

.wsus__dash_student_table .name {
  display: flex;
  flex-wrap: wrap;
}

.wsus__dash_student_table .name input {
  margin-top: 8px;
}

.wsus__dash_student_table .name .form-check-inline {
  margin-right: 0;
}

.wsus__dash_student_table .name .img {
  width: 45px !important;
  height: 45px !important;
}

.wsus__dash_student_table .name .img img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__dash_student_table .name a {
  font-size: 15px;
  font-weight: 500;
  color: var(--colorBlack);
  text-transform: capitalize;
  margin-left: 15px;
  /* max-width: 128px; */
}

.wsus__dash_student_table .date p,
.wsus__dash_student_table .progres p,
.wsus__dash_student_table .location p {
  font-size: 15px;
  font-weight: 500;
  color: var(--colorBlack);
}

/* dashboard student end */

/* dashboard payout start */
.wsus__dash_payout_top {
  padding: 25px 40px 0px 30px;
}

.wsus__dash_payout_top h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--colorBlack);
  text-transform: capitalize;
}

.wsus__dash_payout_selector {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.wsus__dash_payout_selector .selector {
  width: 30.5%;
  margin-right: 10px;
}

.wsus__dash_payout_selector .nice-select {
  border-radius: 0;
  border: solid 1px var(--borderColor);
  height: 46px;
  line-height: 44px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

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

.wsus__dash_payout_selector .payout_print {
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  border: 1px s olid var(--borderColor);
}

.wsus__dash_payout_selector .payout_print img {
  width: 20px !important;
  height: 20px !important;
}

.wsus__dash_payout_table .table {
  margin: 0;
}

.wsus__dash_payout_table .table tr th {
  font-size: 14px;
  font-weight: 500;
  color: var(--paraColor);
  text-transform: uppercase;
  border-top: none !important;
}

.wsus__dash_payout_table .table tr th,
.wsus__dash_payout_table .table tr td {
  padding: 20px;
  border-bottom: none;
  border-top: 1px solid var(--borderColor);
  vertical-align: middle;
}

.wsus__dash_payout_table .checkbox {
  min-width: 60px;
  width: 5%;
}

.wsus__dash_payout_table .id {
  min-width: 100px;
}

.wsus__dash_payout_table .date {
  min-width: 100px;
}

.wsus__dash_payout_table .amount {
  min-width: 160px;
  width: 20%;
}

.wsus__dash_payout_table .method {
  min-width: 160px;
  width: 25%;
}

.wsus__dash_payout_table .id p,
.wsus__dash_payout_table .date p,
.wsus__dash_payout_table .amount p,
.wsus__dash_payout_table .method p {
  font-size: 16px;
  font-weight: 500;
  color: var(--colorBlack);
  text-transform: capitalize;
}

.wsus__dash_payout_table .status p {
  font-size: 13px;
  font-weight: 600;
  width: 60px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: var(--colorWhite);
  background: #159f46;
  text-transform: capitalize;
}

.wsus__dash_payout_table .status .pending {
  background: #e79520;
}

.wsus__dash_payout_table .checkbox input {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 1px solid rgba(23, 23, 24, 0.4);
}

.wsus__dash_payout_table .form-check-input[type="checkbox"] {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__dash_payout_table .form-check {
  margin-bottom: 0;
}

.wsus__dash_payout_table .form-check-inline {
  margin-right: 0;
}

/* dashboard payout end */

/* dashboard support start */
.wsus__support_nav {
  gap: 10px;
  padding: 40px 30px 0px 30px;
}

.wsus__support_nav li button {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 30px;
  color: var(--colorBlack);
  text-transform: capitalize;
  background: rgba(23, 23, 24, 0.1);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__support_nav li button:hover {
  color: var(--colorWhite);
  background: var(--colorPrimary);
}

.nav-pills .nav-link {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--colorWhite);
  background-color: var(--colorPrimary);
}

.wsus__dash_support_table .table {
  margin: 0;
}

.wsus__dash_support_table .table tr {
  display: flex;
}

.wsus__dash_support_table .table tr th {
  font-size: 14px;
  font-weight: 500;
  padding: 20px 0px 5px 30px !important;
  color: var(--paraColor);
  text-transform: uppercase;
  border-top: none !important;
}

.wsus__dash_support_table .table tr th,
.wsus__dash_support_table .table tr td {
  padding: 20px 0px 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: none;
  border-top: 1px solid var(--borderColor);
}

.wsus__dash_support_table .details {
  min-width: 250px;
  width: 50%;
}

.wsus__dash_support_table .priority {
  min-width: 160px;
  width: 15%;
}

.wsus__dash_support_table .category {
  min-width: 160px;
  width: 15%;
}

.wsus__dash_support_table .status {
  min-width: 160px;
  width: 20%;
}

.wsus__dash_support_table .details p {
  font-size: 14px;
  font-weight: 400;
  color: var(--colorBlack);
}

.wsus__dash_support_table .details p a {
  margin-right: 10px;
  color: var(--colorPrimary);
}

.wsus__dash_support_table .priority p,
.wsus__dash_support_table .status p {
  width: 75px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  background: #159f46;
  color: var(--colorWhite);
  text-transform: capitalize;
}

.wsus__dash_support_table .priority .red,
.wsus__dash_support_table .status .red {
  background: #e53935;
}

.wsus__dash_support_table .priority .yellow,
.wsus__dash_support_table .status .yellow {
  background: #e79520;
}

.wsus__dash_support_table .category p {
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--colorBlack);
}

/* dashboard support end */

/* dashboard profile edit start */
.wsus__dashboard_profile_delete .common_btn {
  background: #e53935;
}

.wsus__dashboard_profile_avatar .img {
  position: relative;
}

.wsus__dashboard_profile_avatar .img label {
  position: absolute;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 25px;
  border-radius: 50%;
  bottom: 7px;
  right: -11px;
  font-size: 13px;
  cursor: pointer;
  transition: all linear.3s;
  background: var(--colorWhite);
  border: 1px solid var(--borderColor);
  -webkit-transition: all linear.3s;
  -moz-transition: all linear.3s;
  -ms-transition: all linear.3s;
  -o-transition: all linear.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__dashboard_profile_avatar .img label img {
  width: 13px !important;
  height: 10px !important;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__dashboard_profile_avatar .img label:hover {
  background: var(--colorPrimary);
}

.wsus__dashboard_profile_avatar .img label:hover img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(5%) saturate(1700%) hue-rotate(284deg) brightness(115%) contrast(100%);
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(5%) saturate(1700%) hue-rotate(284deg) brightness(115%) contrast(100%);
}

.wsus__dashboard_profile_update {
  padding: 17px 30px 30px 30px;
}

.wsus__dashboard_profile_update_info {
  margin-top: 13px;
}

.wsus__dashboard_profile_update_info label {
  font-size: 16px;
  font-weight: 500;
  color: var(--colorBlack);
  text-transform: capitalize;
  display: block;
}

.wsus__dashboard_profile_update_info label small {
  font-weight: 400;
}

.wsus__dashboard_profile_update_info input,
.wsus__dashboard_profile_update_info textarea {
  border: 1px solid var(--borderColor);
}

.wsus__dashboard_profile_update_btn {
  margin-top: 30px;
}

/* dashboard profile edit end */

/* dashboard security start */
.wsus__dashboard_email_change {
  padding: 30px 30px 0px 30px;
}

.wsus__dashboard_email_change h6,
.wsus__dashboard_password_change h6 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.wsus__dashboard_email_change p,
.wsus__dashboard_password_change p {
  font-size: 15px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 20px;
}

.wsus__dashboard_email_change p a {
  color: var(--colorPrimary);
}

.wsus__dashboard_email_change form {
  margin-top: 17px;
}

.wsus__dashboard_email_change_input label {
  font-size: 14px;
  font-weight: 500;
  color: var(--colorBlack);
  text-transform: capitalize;
}

.wsus__dashboard_email_change_input input {
  margin-top: 5px;
  border: 1px solid var(--borderColor);
  margin-bottom: 20px;
}

.wsus__dashboard_email_change_btn {
  margin-top: 20px;
}

.wsus__dashboard_password_change {
  padding: 35px 30px 50px 30px;
}

.wsus__dashboard_password_change form {
  margin-top: 5px;
}

.wsus__dashboard_password_change_input {
  margin-bottom: 20px;
}

.wsus__dashboard_password_change_input label {
  font-size: 14px;
  font-weight: 500;
  color: var(--colorBlack);
  text-transform: capitalize;
}

.wsus__dashboard_password_change_input input {
  margin-top: 5px;
  border: 1px solid var(--borderColor);
}

/* dashboard security end */

/* dashboard social profilw start */
.wsus__dashboard_social_profile {
  padding: 0px 30px 30px 30px;
}

.wsus__dashboard_social_profile_input {
  margin-top: 33px;
}

.wsus__dashboard_social_profile_input label {
  font-size: 14px;
  font-weight: 500;
  color: var(--colorBlack);
  text-transform: capitalize;
}

.wsus__dashboard_social_profile_input input {
  margin-top: 5px;
  border: 1px solid var(--borderColor);
}

.wsus__dashboard_social_profile_btn {
  margin-top: 30px;
}

/* dashboard social profilw end */

/* dashboard notification start */
.wsus__dashboard_notification {
  padding: 28px 30px 28px 30px;
  border-bottom: 1px solid var(--borderColor);
}

.wsus__dashboard_notification h5 {
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}

.wsus__dashboard_notification .form-check {
  margin-top: 18px;
}

.wsus__dashboard_notification label {
  font-size: 15px;
  font-weight: 400;
  margin-left: 10px;
  margin-top: 6px;
  color: var(--paraColor);
}

.wsus__dashboard_notification .form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: none;
}

/* dashboard notification end */

/* dashboard account linked start */
.wsus__dashboard_account {
  padding: 30px;
}

.wsus__dashboard_account_remove {
  display: flex;
  flex-wrap: wrap;
}

.wsus__dashboard_account_remove .img {
  width: 50px;
  height: 50px;
}

.wsus__dashboard_account_remove .img img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__dashboard_account_remove .text {
  margin-left: 20px;
}

.wsus__dashboard_account_remove .text h5 {
  font-size: 18px;
  font-weight: 500;
}

.wsus__dashboard_account_remove .text p {
  margin-top: 12px;
  width: 100%;
}

.wsus__dashboard_account_remove .text a {
  font-size: 15px;
  font-weight: 500;
  padding: 11px 35px;
  color: var(--colorWhite);
  margin-top: 25px;
  background: rgba(23, 23, 24, 0.5);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__dashboard_account_remove .text a:hover {
  background: red;
}

.wsus__dashboard_account_link {
  margin-top: 40px;
}

.wsus__dashboard_account_link .text a {
  background: transparent;
  color: var(--colorBlack);
  border: 1px solid var(--paraColor);
}

.wsus__dashboard_account_link .text a:hover {
  color: var(--colorWhite);
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
}

.custom_modal .modal-content {
  padding: 34px 40px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

/* dashboard account linked end */
/*============================
    DASHBOARD END
============================*/

/* ===================== Custom css By Developer ======================== */
.icon-sm {
  width: 25px !important;
  height: 25px !important;
  margin-top: -3px;
  margin-right: 3px;
}

.wsus__dash_plan_name,
.wsus__dash_plan_limit,
.wsus__dash_plan_expire,
.wsus__dash_plan_feature {
  padding: 25px 25px 25px 25px;
  background: var(--colorWhite);
  box-shadow: 0px 3px 3px 0px rgba(23, 23, 24, 0.1);
  margin-top: 25px;
}

.wsus__dash_plan_name h6,
.wsus__dash_plan_limit h6,
.wsus__dash_plan_expire h6,
.wsus__dash_plan_feature h6 {
  font-size: 14px;
  margin-bottom: 10px;
}

.wsus__dash_plan_name h3,
.wsus__dash_plan_limit h3,
.wsus__dash_plan_expire h3,
.wsus__dash_plan_feature h3 {
  font-size: 16px;
  font-weight: 600;
}

.wsus__dash_plan_feature ul li {
  font-size: 14px;
  color: var(--paraColor);
}

.wsus__dash_plan_feature ul li.active {
  color: var(--colorPrimary);
}

.wsus__dash_plan_feature ul li.deactive {
  color: var(--paraColor);
}

.wsus__single_review_text a {
  width: 35px;
  height: 35px;
  background: var(--colorLightBg);
  text-align: center;
  line-height: 35px;
  color: var(--colorPrimary);
  font-size: 13px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__single_review_text a:hover {
  background: var(--colorPrimary);
  color: var(--colorLightBg);
}

.wsus__dashboard_profile_update_info .select2-container--default .select2-selection--single {
  border: 1px solid var(--borderColor);
  border-radius: 0;
}

.wsus__dash_course_table .table tr td:last-child a,
.wsus__dash_reviews td.status a {
  width: 35px;
  height: 35px;
  background: var(--colorLightBg);
  text-align: center;
  line-height: 35px;
  color: var(--colorPrimary);
  font-size: 13px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__dash_course_table .table tr td:last-child a:hover,
.wsus__dash_reviews td.status a:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.wsus__dash_reviews td.details .title {
  font-size: 16px;
  font-weight: 500;
}

.instructor__profile-form-wrap {
  padding: 30px;
  border-top: 1px solid var(--borderColor);
}

.dashboard__content-title {
  margin-bottom: 15px;
  align-items: center;
}

.dashboard__content-title h4 {
  color: var(--colorBlack) !important;
}

.dashboard__content-title a {
  border-radius: 0;
}

.dashboard__review-table table {
  margin-bottom: 0;
}

.dashboard__review-table table thead tr th {
  font-weight: 500;
}

.dashboard__review-table table tbody tr {
  border-top: 1px solid var(--borderColor);
}

.dashboard_add_education form .form-group label {
  margin-bottom: 5px;
  text-transform: capitalize;
}

.dashboard_add_education form .form-group input {
  border-radius: 0;
  margin-bottom: 20px;
}

.dashboard_add_education form .form-group .form-label {
  margin: 0;
}

.dashboard_add_education form .form-group .form-label input {
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  margin-right: 5px;
}

.dashboard_add_education form .btn-primary {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.instructor_course_list table tr th {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.instructor_course_list table tr td {
  vertical-align: middle;
}

.instructor_course_list .image_category {
  min-width: 150px;
  width: 150px;
}

.instructor_course_list a.list_edit,
.instructor_course_list a.list_view {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  font-size: 14px;
  font-weight: 500;
}

.instructor_course_list p.rating {
  color: var(--ratingColor);
  margin-bottom: 5px;
}

.instructor_course_list a.title {
  font-size: 16px;
}

.instructor_course_list .wsus__pagination,
.instructor_course_list .pagination {
  margin-top: 5px !important;
}

.instructor_course_list .pagination {
  margin-bottom: 30px;
}

.instructor_create_course .dashboard__nav-wrap .nav {
  border: none;
  background: #e3ebff;
  margin-bottom: 15px;
}

.instructor_create_course .dashboard__nav-wrap .nav .nav-item {
  border: none;
}

.instructor_create_course .dashboard__nav-wrap .nav .nav-item .nav-link {
  text-transform: capitalize;
  font-size: 15px;
  color: var(--colorBlack);
  font-weight: 500;
  margin-bottom: 0;
  border: none;
  border-right: 1px solid #fff;
  border-radius: 0;
  background: none;
  padding: 12px 20px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.instructor_create_course .dashboard__nav-wrap .nav .nav-item .nav-link:hover,
.instructor_create_course .dashboard__nav-wrap .nav .nav-item .nav-link.active {
  color: var(--colorPrimary);
}

.instructor_create_course {
  margin-top: 30px;
  background: var(--colorWhite);
  box-shadow: 0px 3px 3px 0px rgba(23, 23, 24, 0.1);
  padding: 30px;
}

.instructor_create_course .price_area .fade_text {
  position: relative;
  top: -18px;
}

.instructor_create_course form .form-group label {
  text-transform: capitalize;
  margin-bottom: 5px;
}

.instructor_create_course form input,
.instructor_create_course form select,
.instructor_create_course form textarea {
  border: 1px solid var(--borderColor);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.instructor_create_more_info .switcher input {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding: 0;
  border: 1px solid #c0c0c0;
}

.instructor_create_more_info p {
  margin-top: 5px;
}

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

.instructor_create_more_info .select2-container--default .select2-selection--single,
.instructor_create_more_info .select2-container--default .select2-selection--multiple {
  border: 1px solid var(--borderColor);
  border-radius: 0;
  height: 40px;
}

.instructor_create_more_info .select2-container--default .select2-selection--multiple {
  padding: 0.375rem 0.75rem;
  margin-top: 5px;
}

.instructor_create_more_info .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: -5px;
}

.instructor_create_more_info .filter-holder .card {
  border-radius: 0;
  border: 1px solid var(--borderColor);
}

.instructor_create_more_info .filter-holder .card-header {
  border-color: var(--borderColor);
  background: #e3ebff;
  border-radius: 0;
}

.instructor_create_more_info .filter-holder .card-header h5 {
  margin: 0;
}

.instructor_create_more_info .filter-holder .form-check input {
  padding: 0;
  border-radius: 0;
  border: 1px solid var(--borderColor);
}

.instructor_create_more_info .filter-holder .form-check label {
  margin-left: 4px !important;
}

.instructor_create_more_info .partner_instructor_list {
  margin-top: 10px;
}

.instructor_course_content .btn-warning,
.instructor_course_content .btn-success {
  border-radius: 0;
}

.item-action {
  padding-right: 7px;
}

.item-action .btn-success {
  padding: 0 !important;
}

.instructor_course_content .dropdown-toggle {
  width: 55px;
  display: block;
}

.instructor_course_content .dropdown_toggle_2 {
  width: 55px;
  height: 37px;
  line-height: 32px;
}

.instructor_course_content .edit-chapter-btn,
.instructor_course_content .delete-item,
.instructor_course_content .ui-sortable-handle,
.instructor_course_content .edit-lesson-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0 !important;
  font-size: 14px;
  border-radius: 0 !important;
  margin-left: 5px !important;
}

.instructor_course_content .accordion .accordion-item button {
  background: none !important;
}

.instructor_course_content .accordion .accordion-item button:not(.collapsed)::after {
  border-color: var(--colorPrimary);
}

.create_announcement form .form-group input,
.add_chapter_modal .modal-content,
.dynamic-modal .modal-content,
.edit_quiz_modal input,
.edit_quiz_question_modal input,
.create_quiz_question_modal input,
.create_quiz_question_modal .answer-container .card,
.add_quiz_modal input,
.add_quiz_modal .form-control,
.edit_lesson_modal input,
.edit_lesson_modal textarea,
.edit_lesson_modal select,
.add_lesson_modal input,
.add_lesson_modal select,
.add_lesson_modal textarea,
.add_lesson_modal .input-group-text,
.dynamic-modal .modal-content button,
.add_chapter_modal input,
.add_chapter_modal button {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.edit_quiz_question_modal .correct,
.create_quiz_question_modal .correct {
  padding: 0;
}

.create_quiz_question_modal .remove-answer {
  background: none;
}

.create_announcement form .form-group .form-label,
.edit_lesson_modal form .form-label,
.instructor_create_course form .form-label,
.edit_quiz_modal form .form-label,
.add_quiz_modal form .form-label,
.add_lesson_modal label {
  margin: 0;
}

.create_announcement form .form-group,
.edit_lesson_modal form input,
.edit_lesson_modal form select,
.instructor_create_course form input,
.instructor_create_course form textarea,
.edit_quiz_modal form .form-group,
.add_quiz_modal form .form-group,
.add_quiz_modal form .input-group,
.add_lesson_modal .form-group {
  margin-bottom: 20px;
}

.add_lesson_modal .switcher input {
  width: auto;
}

.short_chapter_modal ul.list-group.draggable-list {
  border-radius: 0;
}

.input-group span.input-group-text {
  height: 38px;
  border-radius: 0;
}

.instructor_create_more_info form .form-group .hedded_text {
  position: relative;
  top: -20px;
}

.instructor_course_content .course-section-item {
  border-color: transparent;
  border: 1px solid #dee2e6 !important;
  box-shadow: none;
  outline: none;
}

.create_announcement form .nice-select {
  border-radius: 0;
  height: 38px;
  line-height: 27px;
  margin-bottom: 20px;
}

.create_announcement form .tox-tinymce {
  border: 1px solid var(--borderColor);
  border-radius: 0;
}

.create_announcement form .nice-select:after {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  margin-top: -5px;
  right: 20px;
}

.create_announcement_list .table tr {
  justify-content: space-between;
  border-top: 1px solid var(--borderColor);
}

.create_announcement_list .table tr th,
.create_announcement_list .table tr td {
  padding: 10px 20px !important;
  border: none;
  align-items: start;
  width: auto;
}

.create_announcement_list .table tr .no {
  width: 10%;
  min-width: 90px;
}

.create_announcement_list .table tr .course {
  width: 35%;
  min-width: 300px;
}

.create_announcement_list .table tr .title,
.create_announcement_list .table tr .date {
  width: 20%;
  min-width: 150px;
}

.create_announcement_list .table tr .date p {
  color: var(--paraColor);
  font-weight: 400;
}

.create_announcement_list .table tr .action {
  width: 15%;
  min-width: 120px;
  flex-direction: row;
  justify-content: start;
}

.create_announcement_list .table tr .action a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  background: #e7ecf8;
  color: var(--colorPrimary) !important;
  margin-right: 5px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.create_announcement_list .table tr .action a:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite) !important;
}

.create_announcement_list .table tr .action .delete-item {
  margin-right: 0;
  background: #f4e7e7;
  color: red !important;
}

.create_announcement_list .table tr .action .delete-item:hover {
  margin-right: 0;
  background: red;
  color: var(--colorWhite) !important;
}

.instructor_sales tr th {
  color: var(--colorBlack) !important;
  font-weight: 500;
}

.instructor_sales tr td {
  color: var(--paraColor) !important;
}

.instructor_sales tr th,
.instructor_sales tr td {
  padding: 15px;
}

.instructor_sales tr .details a {
  color: var(--colorBlack);
  font-weight: 500;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.instructor_sales tr .details a:hover {
  color: var(--colorPrimary);
}

.instructor_student_table table tr .location a {
  color: var(--colorPrimary);
  background: #edf1fb;
  width: 35px;
  height: 35px;
  line-height: 36px;
  text-align: center;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.instructor_student_table table tr .location a:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.staudent_course_list table th {
  background: var(--colorLightBg);
  color: var(--colorBlack) !important;
  font-weight: 600 !important;
}

.testimonial_3_slider .wsus__testimonial_3_video,
.testimonial_3_slider .wsus__testimonial_text {
  margin: 0px 12px 8px 12px;
}

.wsus__dashboard_graph table tr .details a {
  color: var(--colorBlack);
  font-weight: 500;
  font-size: 15px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__dashboard_graph table tr .details a:hover {
  color: var(--colorPrimary);
}

.payment .card {
  border-radius: 0;
  border-color: var(--borderColor);
}

.payment .card .card-header {
  background: var(--colorLightBg);
  border-radius: 0;
  border-color: var(--borderColor);
}

.payment .card .card-header h4,
.payment .card .card-header h5 {
  font-size: 20px;
  font-weight: 600;
}

.payment .card-body form input {
  border-radius: 0;
}

.payment .card-body form button {
  border-radius: 0;
}

.payment .card-body ul {
  margin-top: 0;
}

.payment .card-body .total_payment_price {
  margin: 0 !important;
}

.wsus__different_forum_right .text {
  max-width: 300px;
}

.wsus__different_forum_right .text>a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--colorPrimary);
  font-size: 16px;
  font-weight: 500;
}

.wsus__different_forum_right .text>a:hover {
  text-decoration: underline;
}

.wsus__different_forum_right .text ul li>a {
  color: var(--colorBlack);
  font-size: 16px;
  font-weight: 400;
}

.wsus__different_forum_right .text ul li>a:hover {
  color: var(--colorPrimary);
  text-decoration: none;
}

.wsus__course_single_reviews.reply {
  margin-left: 75px;
}

.wsus__course_single_reviews.reply .wsus__single_review_text {
  width: 88%;
}

.forum_terms_and_rules .inline_input {
  width: auto;
}

.dash_forum_list table tr .icon a {
  width: 35px;
  height: 35px;
  background: var(--colorLightBg);
  text-align: center;
  line-height: 35px;
  color: var(--colorPrimary);
  font-size: 13px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.dash_forum_list table tr .icon a:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.dash_forum_list table tr .icon a#delete,
.wsus__dash_reviews table tr .status a.delete {
  background: #ffebeb;
  color: red;
}

.dash_forum_list table tr .icon a#delete:hover,
.wsus__dash_reviews table tr .status a.delete:hover {
  background: red;
  color: var(--colorWhite);
}

.staudent_course_list .action a {
  float: left;
}

.instructor_course_list table tr .approval .badge,
.instructor_course_list table tr .status .badge {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__sidebar_course_lavel.duration .form-check input[type="radio"] {
  border-radius: 50% !important;
}

.wsus__blog_list_view .wsus__pagination {
  margin-top: 0 !important;
}

.best_selling_course thead tr th {
  border-right: 1px solid var(--borderColor) !important;
  background: var(--colorLightBg);
  font-weight: 600 !important;
  color: var(--colorBlack) !important;
}

.instructor_course_list table tr .action,
.instructor_course_list table tr .action {
  min-width: 105px;
}

.instructor_create_course #demo_video_storage {
  margin-bottom: 20px;
}

/*=================================
    BECOME AN INSTRUCTOR START
=================================*/
.become_instructor_page_text p {
  margin-top: 20px;
}

.become_instructor_page_text h1,
.become_instructor_page_text h2,
.become_instructor_page_text h3,
.become_instructor_page_text h4,
.become_instructor_page_text h5,
.become_instructor_page_text h6 {
  font-weight: 600;
  margin-top: 30px;
}

.become_instructor_page_text h1 {
  font-size: 30px;
}

.become_instructor_page_text h2 {
  font-size: 26px;
}

.become_instructor_page_text h3 {
  font-size: 22px;
}

.become_instructor_page_text h4 {
  font-size: 18px;
}

.become_instructor_page_text h5,
.become_instructor_page_text h6 {
  font-size: 16px;
}

.become_instructor_page_text ul,
.become_instructor_page_text ol {
  margin-top: 20px;
}

.become_instructor_page_text ul li,
.become_instructor_page_text ol li {
  font-size: 14px;
  font-weight: 400;
  margin: 15px 0px;
  padding-left: 30px;
  position: relative;
  color: var(--paraColor);
}

.become_instructor_page_text ul li::after,
.become_instructor_page_text ol li::after {
  position: absolute;
  content: "";
  background: url(../images/check_icon_green_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 0px;
  left: 0;
}

.become_instructor_page_form h2 {
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 22px;
}

.become_instructor_page_form {
  box-shadow: 0px 2px 10px 0px rgba(30, 30, 47, 0.1),
    0px 4px 3px 0px rgba(30, 30, 47, 0.12);
  padding: 40px;
  margin-top: 35px;
}

.become_instructor_page_form .wsus__login_form_input {
  margin-top: 0;
  margin-bottom: 20px;
}

.become_instructor_page_form .nice-select {
  border-radius: 0;
  border: 1px solid var(--borderColor) !important;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  margin-bottom: 20px;
}

.become_instructor_page_form .nice-select:after {
  margin-top: -6px;
  right: 22px;
}

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

.become_instructor_page_form .current {
  color: var(--colorBlack);
}

.become_instructor_page_form input[type="file"]::file-selector-button {
  margin-right: 10px;
  border: none;
  background: var(--colorPrimary);
  padding: 6px 15px;
  color: var(--colorWhite);
  cursor: pointer;
  transition: linear 0.2s ease-in-out;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: linear 0.2s ease-in-out;
  -ms-transition: linear 0.2s ease-in-out;
  -o-transition: linear 0.2s ease-in-out;
}

.become_instructor_page_form input[type="file"]::file-selector-button:hover {
  background: #0d45a5;
}

.become_instructor_page_form .wsus__login_form_input label {
  display: block;
}

.become_instructor_page_form .wsus__login_form_input label span {
  display: inline-block;
  margin-left: 5px;
}

.become_instructor_page_form .method_description {
  margin-bottom: 20px;
}

.become_instructor_page_form .method_description p {
  color: var(--colorBlack);
}

.become_instructor_page_form .method_description ul,
.become_instructor_page_form .method_description ol {
  padding-left: 17px;
}

.become_instructor_page_form .method_description ul li,
.become_instructor_page_form .method_description ol li {
  font-size: 15px;
  font-weight: 400;
  color: var(--colorBlack);
  margin-top: 7px;
  list-style: circle;
}

/*=================================
    BECOME AN INSTRUCTOR END
=================================*/

.main_menu_4 .right_menu ul li .admin {
  margin-right: 0;
}

.dashboard_change_gateway .select2-container--default .select2-selection--single {
  border: 1px solid #dee2e6;
  border-radius: 0;
  height: 40px;
}

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

.dashboard_change_gateway .method_description {
  border: 1px solid #dee2e6;
  border-radius: 0;
}

.wsus__dashboard_statistics_top .card {
  padding: 5px !important;
  margin: 0 !important;
}

.wsus__dashboard_statistics_top .card-body p {
  text-align: center;
}

.about_page_counter .wsus__counter_bg,
.about_page_features .wsus__features_item_3,
.about_page_features .wsus__features_item_3 .icon,
.about_page_features .wsus__features_item_3 span,
.wsus__about_page .wsus__about_3_text .common_btn,
.wsus__about_page .wsus__about_3_img .text,
.wsus__about_page .wsus__about_3_text .about_video {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

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

.wsus__dashboard_profile_update_info .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 20px;
  line-height: 50px;
}

.wsus__dashboard_profile_update_info .select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-left: -15px;
  margin-top: 10px;
}

.wsus__dashboard_profile_update_info .select2-container {
  width: 100% !important;
}

.tox .tox-promotion-link {
  display: none !important;
}

.wsus__dashboard_profile_update .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0px;
}

/* custom page start */
.wsus__cutom_page h1,
.wsus__cutom_page h2,
.wsus__cutom_page h3,
.wsus__cutom_page h4,
.wsus__cutom_page h5,
.wsus__cutom_page h6 {
  font-weight: 600;
  margin-top: 35px;
}

.wsus__cutom_page h1 {
  font-size: 32px;
}

.wsus__cutom_page h2 {
  font-size: 28px;
}

.wsus__cutom_page h3 {
  font-size: 24px;
}

.wsus__cutom_page h4 {
  font-size: 20px;
}

.wsus__cutom_page h5 {
  font-size: 18px;
}

.wsus__cutom_page h6 {
  font-size: 16px;
}

.wsus__cutom_page p {
  margin-top: 20px;
}

.wsus__cutom_page ul,
.wsus__cutom_page ol {
  margin-top: 20px;
}

.wsus__cutom_page ul li,
.wsus__cutom_page ol li {
  list-style: disc;
  margin-left: 17px;
  line-height: 32px;
  color: var(--paraColor);
  font-weight: 400;
  font-size: 16px;
}

/* custom page end */
.instructor_slider .slick-slide:nth-of-type(1) .wsus__single_instructor_img {
  background: #6BA2A5;
}

.instructor_slider .slick-slide:nth-of-type(2) .wsus__single_instructor_img {
  background: #B1A2C3;
}

.instructor_slider .slick-slide:nth-of-type(3) .wsus__single_instructor_img {
  background: #EDA0A8;
}

.instructor_slider .slick-slide:nth-of-type(4) .wsus__single_instructor_img {
  background: #72A9AC;
}

.instructor_slider .slick-slide:nth-of-type(5) .wsus__single_instructor_img {
  background: #B1A2C3;
}

.instructor_slider .slick-slide:nth-of-type(6) .wsus__single_instructor_img {
  background: #EDA0A8;
}

.instructor_slider .slick-slide:nth-of-type(7) .wsus__single_instructor_img {
  background: #72A9AC;
}

.instructor_slider .slick-slide:nth-of-type(8) .wsus__single_instructor_img {
  background: #B1A2C3;
}

.instructor_slider .slick-slide:nth-of-type(9) .wsus__single_instructor_img {
  background: #EDA0A8;
}

.wsus__single_instructor_img,
.wsus__courses_instructor_img,
.wsus__instructor_page .wsus__single_instructor_img,
.instructor_details_content .instructor_finder_img {
  background: url(../images/instructor_bg.jpg);
}

.home_dark .wsus__brand_slider_area ul li a {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(99%) sepia(10%) saturate(103%) hue-rotate(241deg) brightness(117%) contrast(100%);
}

.wsus__dashboard .dash_forum_list .wsus__pagination,
.wsus__dashboard .dash_forum_list .pagination,
.wsus__dashboard .staudent_course_list .wsus__pagination,
.wsus__dashboard .staudent_course_list .pagination {
  margin-top: 0 !important;
}

.wsus__dashboard .dash_forum_list .pagination,
.wsus__dashboard .staudent_course_list .pagination {
  margin-bottom: 25px;
}

.wsus__counter_bg .row .wow:last-child .wsus__single_counter {
  border: none;
}

.home_3 .main_menu_3 .right_menu ul li .admin {
  color: var(--colorWhite);
}

.home_3 .main_menu_3 .right_menu ul li .admin span {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(97deg) brightness(103%) contrast(103%);
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(97deg) brightness(103%) contrast(103%);
}

.sidebar_filter {
  background: var(--colorPrimary);
  padding: 10px 20px;
  margin-bottom: 25px;
  color: #fff;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}

.sidebar_filter::after,
.sidebar_filter::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 3px;
  background: #fff;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.sidebar_filter::before {
  width: 3px;
  height: 15px;
  right: 26px;
}

.sidebar_filter.show::before {
  height: 0;
}

.file-info .text-center p,
.file-info .text-center h6 {
  text-align: center !important;
}