/*-----------------------------------------------------------------------------------

    Template Name: Online Education LMS HTML5 Template
    Author: Golden Packages
    Description: Online Education LMS HTML5 Template
    Version: 1.0

-----------------------------------------------------------------------------------


/************ TABLE OF CONTENTS ***************

	01. Default CSS
	02. background CSS
	03. buttons css

**********************************************/
/**----------------------------------------
START: Default CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Kalam:400");
:root {
  --ed-ff-body: 'Outfit', sans-serif;
  --ed-ff-heading: 'Outfit', serif;
  --ed-ff-p: 'Outfit', sans-serif;
  --ed-ff-powered-by: 'Kalam', sans-serif;
  --ed-fw-normal: normal;
  --ed-fw-thin: 100;
  --ed-fw-elight: 200;
  --ed-fw-light: 300;
  --ed-fw-regular: 400;
  --ed-fw-medium: 500;
  --ed-fw-sbold: 600;
  --ed-fw-bold: 700;
  --ed-fw-ebold: 800;
  --ed-fw-black: 900;
  --ed-fs-body: 16px;
  --ed-fs-p: 16px;
  --ed-fs-h1: 64px;
  --ed-fs-h2: 40px;
  --ed-fs-h3: 24px;
  --ed-fs-h4: 20px;
  --ed-fs-h5: 16px;
  --ed-fs-h6: 14px;
  --ed-color-common-white: #ffffff;
  --ed-color-common-black: #000000;
  --ed-color-heading-primary: #162726;
  --ed-color-text-body: #6C706F;
  --ed-color-text-link-hover: #D1B3FF;
  --ed-color-text-shadow: rgba(118, 90, 255, 0.8);
  --ed-color-theme-primary: #3840e5;
  --ed-color-theme-secondary: #cf63fa;
  --ed-color-theme-primary-rgb: rgb(56, 64, 229);
  --ed-color-theme-primary-rgba: rgb(56, 64, 229);
  --ed-color-theme-primary-rgba-10: rgba(56, 64, 229, 0.1);
  --ed-color-theme-primary-rgba-25: rgba(56, 64, 229, 0.25);
  --ed-color-theme-primary-rgba-50: rgba(56, 64, 229, 0.5);
  --ed-color-theme-primary-rgba-75: rgba(56, 64, 229, 0.75);
  --ed-color-theme-primary-rgba-95: rgba(56, 64, 229, 0.95);
  --ed-color-theme-secondary-rgb: rgb(207, 99, 250);
  --ed-color-theme-secondary-rgba: rgb(207, 99, 250);
  --ed-color-theme-secondary-rgba-10: rgba(207, 99, 250, 0.1);
  --ed-color-theme-secondary-rgba-25: rgba(207, 99, 250, 0.25);
  --ed-color-theme-secondary-rgba-50: rgba(207, 99, 250, 0.5);
  --ed-color-theme-secondary-rgba-75: rgba(207, 99, 250, 0.75);
  --ed-color-theme-secondary-rgba-95: rgba(207, 99, 250, 0.95);
  --ed-color-grey-1: #F2F4F7;
  --ed-color-grey-2: #D9DBDE;
  --ed-color-bg-1: #0E121D;
  --ed-color-bg-2: #191A1F;
  --ed-color-border-1: #E0E5EB;
}

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

/**
	Typography CSS
*/
body {
  font-family: var(--ed-ff-body);
  font-size: 16px;
  line-height: 1.625;
  font-weight: normal;
  color: var(--ed-color-text-body);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a,
a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ed-ff-heading);
  color: var(--ed-color-heading-primary);
  margin-top: 0px;
  font-weight: var(--ed-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--ed-fs-h1);
}

h2 {
  font-size: var(--ed-fs-h2);
}

h3 {
  font-size: var(--ed-fs-h3);
}

h4 {
  font-size: var(--ed-fs-h4);
}

h5 {
  font-size: var(--ed-fs-h5);
}

h6 {
  font-size: var(--ed-fs-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--ed-ff-p);
  font-size: 16px;
  font-weight: var(--ed-fw-normal);
  color: var(--ed-color-text-body);
  margin-bottom: 15px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  p {
    text-align: justify;
  }
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--ed-color-theme-primary);
}

.slick-list.draggable {
  cursor: grab;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

ul {
  display: block;
  padding: 0;
  margin: 0;
}

*::-moz-selection {
  background: var(--ed-color-common-black);
  color: var(--ed-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--ed-color-common-black);
  color: var(--ed-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--ed-color-common-black);
  color: var(--ed-color-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--ed-color-common-black);
  font-size: var(--ed-fs-body);
  opacity: 1;
}

*::placeholder {
  color: var(--ed-color-common-black);
  font-size: var(--ed-fs-body);
  opacity: 1;
}

/**
 	Common Classes CSS
*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.b-radius {
  border-radius: 6px;
}

.bg-grey {
  background-color: var(--ed-color-grey-1);
}

.bg-dark-1 {
  background-color: var(--ed-color-heading-primary);
}

.container {
  max-width: 1399px;
}

.bd-bottom {
  border-bottom: 1px solid #edebf9;
}

.overflow-h {
  overflow: hidden;
}

.section-heading {
  margin-bottom: 60px;
}
@media only screen and (max-width: 992px) {
  .section-heading {
    margin-bottom: 40px;
  }
}
.section-heading .sub-heading {
  /*
  background-color: var(--ed-color-common-white);
  border: 1px solid #E0E5EB;
  border-radius: 100px;
  */
  border: solid 2px transparent;
  border-radius: 100px;
  background: linear-gradient(var(--ed-color-common-white) 0 0) padding-box, linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%) border-box;
  font-family: var(--ed-ff-heading);
  color: var(--ed-color-heading-primary);
  font-size: 16px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 20px;
  position: relative;
  padding: 5px 15px 5px 5px;
}
.section-heading .sub-heading .heading-title {
  background-color: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.section-heading .sub-heading .heading-icon {
  background-color: var(--ed-color-theme-primary-rgba-25);
  color: var(--ed-color-theme-primary);
  font-size: 14px;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-heading .section-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  display: block;
  margin-bottom: 0;
  text-transform: inherit;
  position: relative;
}
@media (max-width: 1200px) {
  .section-heading .section-title {
    font-size: 40px;
  }
  .section-heading .section-title br {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}
.section-heading .section-title span {
  color: var(--ed-color-theme-primary);
}
.section-heading.white-content p, .section-heading.white-content .section-lead,
.section-heading.white-content .section-title {
  color: var(--ed-color-common-white);
}
.section-heading .section-lead {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ed-color-text-primary);
  max-width: 800px;
  margin: 20px auto 0;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .section-heading .section-lead {
    font-size: 16px;
    max-width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .section-lead {
    font-size: 16px;
    max-width: 100%;
  }
}
.section-heading .section-lead.white-content {
  color: var(--ed-color-common-white);
}

.heading-space {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 992px) {
  .heading-space {
    margin-bottom: 30px;
  }
}

.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6,
.white-content p,
.white-content li,
.white-content span {
  color: var(--ed-color-common-white);
}

/* Site Preloader */
.preloader-close {
  position: fixed;
  z-index: 99;
  font-size: 26px;
  background: var(--ed-color-common-white);
  color: var(--ed-color-heading-primary);
  width: 60px;
  height: 60px;
  border: 1px solid var(--ed-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 50px;
  top: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.preloader-close:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--ed-color-common-white);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader .spinner-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: radial-gradient(farthest-side, var(--ed-color-theme-primary) 94%, rgba(0, 0, 0, 0)) top/15.5px 15.5px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, var(--ed-color-theme-primary));
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 15.5px), #000 0);
  mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 15.5px), #000 0);
  animation: spinner-c7wet2 1.2s infinite linear;
}

@keyframes spinner-c7wet2 {
  100% {
    transform: rotate(1turn);
  }
}
.sticky-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}

/*
@include breakpoint(sm){
    br{
        display: none;
    }
}
*/
/*  Ripple Effect */
.ripple,
.ripple:before,
.ripple:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateX(-50%) translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  -moz-animation: rippleOne 3s infinite;
  -ms-animation: rippleOne 3s infinite;
  -o-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple {
  z-index: -1;
}

.ripple:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

@-webkit-keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
/*  Ripple Two Effect */
.ripple.two,
.ripple.two:before,
.ripple.two:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateX(-50%) translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(115, 39, 233, 0.5);
  -moz-box-shadow: 0 0 0 0 rgba(115, 39, 233, 0.5);
  -ms-box-shadow: 0 0 0 0 rgba(115, 39, 233, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(115, 39, 233, 0.5);
  box-shadow: 0 0 0 0 rgba(115, 39, 233, 0.5);
  -webkit-animation: rippleTwo 3s infinite;
  -moz-animation: rippleTwo 3s infinite;
  -ms-animation: rippleTwo 3s infinite;
  -o-animation: rippleTwo 3s infinite;
  animation: rippleTwo 3s infinite;
}

.ripple.two {
  z-index: -1;
}

.ripple.two:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple.two:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

@-webkit-keyframes rippleTwo {
  70% {
    box-shadow: 0 0 0 20px rgba(115, 39, 233, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(115, 39, 233, 0);
  }
}
@keyframes rippleTwo {
  70% {
    box-shadow: 0 0 0 20px rgba(115, 39, 233, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(115, 39, 233, 0);
  }
}
/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

/*-- Margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

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

.pt-25 {
  padding-top: 25px;
}

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

.pt-35 {
  padding-top: 35px;
}

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

.pt-45 {
  padding-top: 45px;
}

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

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

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

.pt-65 {
  padding-top: 65px;
}

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

.pt-75 {
  padding-top: 75px;
}

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

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

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

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

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

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

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

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

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

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

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

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

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

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

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

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.pt-180 {
  padding-top: 180px;
}
@media only screen and (max-width: 992px) {
  .pt-180 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-180 {
    padding-top: 50px;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 992px) {
  .pt-120 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-120 {
    padding-top: 60px;
  }
}

.pt-90 {
  padding-top: 90px;
}
@media only screen and (max-width: 992px) {
  .pt-90 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-90 {
    padding-top: 60px;
  }
}

.pt-80 {
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .pt-80 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-80 {
    padding-top: 60px;
  }
}

.pt-70 {
  padding-top: 70px;
}
@media only screen and (max-width: 992px) {
  .pt-70 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-70 {
    padding-top: 60px;
  }
}

.pb-180 {
  padding-bottom: 180px;
}
@media only screen and (max-width: 992px) {
  .pb-180 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-180 {
    padding-bottom: 60px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 992px) {
  .pb-120 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

.pb-90 {
  padding-bottom: 90px;
}
@media only screen and (max-width: 992px) {
  .pb-90 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-90 {
    padding-bottom: 60px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .pb-80 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-80 {
    padding-bottom: 60px;
  }
}

.pb-70 {
  padding-bottom: 70px;
}
@media only screen and (max-width: 992px) {
  .pb-70 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-70 {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-30 {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-40 {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-50 {
    padding-bottom: 50px;
  }
}

.running-text {
  background-color: var(--ed-color-common-white);
  padding: 30px 0;
}
@media only screen and (max-width: 992px) {
  .running-text {
    padding-bottom: 0;
  }
}
.running-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 80px;
}
.running-text ul li {
  display: inline-block;
  white-space: nowrap;
  font-size: 48px;
  color: var(--ed-color-heading-primary);
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
}
.running-text ul li:before {
  font-family: "Font Awesome 6 Pro";
  color: var(--ed-color-theme-primary);
  font-weight: 500;
  font-size: 30px;
  content: "\f890";
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
}

textarea {
  padding-inline-end: 55px !important;
}

i.fa-eye {
  cursor: pointer;
}

/**
    Buttons CSS
*/
.ed-primary-btn {
  background-color: var(--ed-color-theme-primary);
  font-family: var(--ed-ff-heading);
  color: var(--ed-color-common-white);
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 17px 40px;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}
.ed-primary-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.ed-primary-btn:hover {
  color: var(--ed-color-common-white);
}
.ed-primary-btn:hover:before {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.ed-primary-btn i {
  margin-left: 10px;
  font-size: 13px;
  margin-top: 2px;
}
.ed-primary-btn:focus {
  color: var(--ed-color-common-white);
}
.ed-primary-btn.transparent {
  background-color: transparent;
  border: 1px solid var(--ed-color-theme-primary);
  color: var(--ed-color-heading-primary);
}
.ed-primary-btn.transparent:hover {
  color: var(--ed-color-common-white);
}
.ed-primary-btn.transparent:before {
  background-color: var(--ed-color-theme-primary);
}

/*
    Buttons CSS Outline
*/
.ed-primary-btn-outline {
  --border-radius:100px;
  --border-width: 2px;
  background: linear-gradient(45deg, var(--ed-color-theme-primary) 40%, var(--ed-color-theme-secondary) 100%);
  background-position: var(--border-radius) 0, var(--border-radius) 100%;
  background-repeat: no-repeat;
  background-size: calc(100% - var(--border-radius) - var(--border-radius)) var(--border-width);
  font-family: var(--ed-ff-heading);
  color: var(--ed-color-theme-primary);
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 17px 40px;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius);
  border: none;
}
.ed-primary-btn-outline:before, .ed-primary-btn-outline:after {
  content: "";
  display: block;
  position: absolute;
  width: var(--border-radius);
  top: 0;
  bottom: 0;
}
.ed-primary-btn-outline:before {
  left: 0;
  border: var(--border-width) solid var(--ed-color-theme-primary);
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  border-right-color: transparent;
}
.ed-primary-btn-outline:after {
  right: 0;
  border: var(--border-width) solid var(--ed-color-theme-secondary);
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  border-left-color: transparent;
}

/*
    Buttons CSS with Gradient Effects
*/
.ed-primary-btn-gradient {
  background: transparent;
  font-family: var(--ed-ff-heading);
  color: transparent;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 17px 40px;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  border: 2px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(135deg, var(--ed-color-theme-primary) 40%, var(--ed-color-theme-secondary) 100%);
  background-clip: padding-box;
  -webkit-background-clip: text;
  background-image: linear-gradient(135deg, var(--ed-color-theme-primary) 40%, var(--ed-color-theme-secondary) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-mask-image: radial-gradient(circle, white 100%, white 100%);
  mask-image: radial-gradient(circle, white 100%, white 100%);
}
.ed-primary-btn-gradient:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 40%, var(--ed-color-theme-secondary) 100%);
  transform: scale(0, 1);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: 100px; /* Ensure the hover background is rounded */
}
.ed-primary-btn-gradient:hover {
  -webkit-text-fill-color: var(--ed-color-common-white);
}
.ed-primary-btn-gradient:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}
.ed-primary-btn-gradient i {
  margin-left: 10px;
  font-size: 13px;
  margin-top: 2px;
}
.ed-primary-btn-gradient:focus {
  -webkit-text-fill-color: var(--ed-color-common-white);
}
.ed-primary-btn-gradient.transparent {
  background-color: transparent;
  border: 2px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(135deg, var(--ed-color-theme-primary) 40%, var(--ed-color-theme-secondary) 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  border-radius: 100px; /* Ensure transparent button is rounded */
}
.ed-primary-btn-gradient.transparent:hover {
  color: var(--ed-color-common-white);
  background-image: linear-gradient(135deg, var(--ed-color-theme-primary) 40%, var(--ed-color-theme-secondary) 100%);
}
.ed-primary-btn-gradient.transparent:before {
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 40%, var(--ed-color-theme-secondary) 100%);
  border-radius: 100px; /* Ensure transparent button hover background is rounded */
}

/**
    Tables CSS
*/
.notifications-wrap .title {
  font-size: 30px;
  font-weight: 600;
}
.notifications-wrap .notification-table {
  overflow: auto;
  border: 1px solid var(--ed-color-border-1);
  padding-inline: 0px 0px;
}
.notifications-wrap .notification-table table {
  border-radius: 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  margin: 0;
}
.notifications-wrap .notification-table table .table-light th {
  background-color: var(--ed-color-grey-1) !important;
  white-space: nowrap;
}
.notifications-wrap .notification-table table tbody tr td {
  white-space: nowrap;
}
.notifications-wrap .notification-table table tbody tr:last-of-type td {
  border-bottom: 0px none transparent !important;
}

.purchase-wrap .title {
  font-size: 30px;
  font-weight: 600;
}
.purchase-wrap .purchase-table {
  overflow: auto;
  border: 1px solid var(--ed-color-border-1);
  padding-inline: 0px 0px;
}
.purchase-wrap .purchase-table table {
  border-radius: 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  margin: 0;
}
.purchase-wrap .purchase-table table .table-light th {
  background-color: var(--ed-color-grey-1) !important;
  white-space: nowrap;
}
.purchase-wrap .purchase-table table tbody tr td {
  white-space: nowrap;
}
.purchase-wrap .purchase-table table tbody tr:last-of-type td {
  border-bottom: 0px none transparent !important;
}

/**----------------------------------------
START: Header CSS
----------------------------------------*/
.header {
  background-color: var(--ed-color-common-white);
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  overflow-x: clip;
  box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0);
}
.header .top-bar {
  background-color: #1F2C30;
}
@media (max-width: 1200px) {
  .header .top-bar {
    display: none;
  }
}
.header .top-bar .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.header .top-bar .top-bar-inner .top-bar-left .top-bar-list li {
  color: var(--ed-color-common-white);
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  padding: 12px 0;
}
.header .top-bar .top-bar-inner .top-bar-left .top-bar-list li:not(:last-of-type) {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.05);
}
.header .top-bar .top-bar-inner .top-bar-right {
  display: flex;
  align-items: center;
}
.header .top-bar .top-bar-inner .top-bar-right .register-box {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 12px 0;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 1200px) {
  .header .top-bar .top-bar-inner .top-bar-right .register-box {
    margin-right: 0;
    padding-right: 0;
    border: none;
  }
}
.header .top-bar .top-bar-inner .top-bar-right .register-box .icon {
  font-size: 14px;
  color: var(--ed-color-common-white);
}
.header .top-bar .top-bar-inner .top-bar-right .register-box a {
  color: var(--ed-color-common-white);
}
.header .top-bar .top-bar-inner .top-bar-right .register-box a:hover {
  color: var(--ed-color-theme-primary);
}
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .header .top-bar .top-bar-inner .top-bar-right .top-social-wrap {
    display: none;
  }
}
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap span {
  color: var(--ed-color-common-white);
}
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap .social-list {
  margin-left: 20px;
}
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap .social-list li {
  display: inline-flex;
  align-items: center;
}
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap .social-list li:not(:last-of-type) {
  margin-right: 10px;
}
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap .social-list li a {
  color: var(--ed-color-common-white);
}
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap .social-list li a:hover {
  color: var(--ed-color-theme-primary);
}
.header .mid-header .mid-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
  padding: 20px 0;
}
.header .mid-header .mid-header-inner .category-form-wrap {
  background-color: var(--ed-color-grey-1);
  display: flex;
  align-items: center;
  width: 520px;
  padding: 12px 10px;
  border-radius: 100px;
}
@media (max-width: 1399px) {
  .header .mid-header .mid-header-inner .category-form-wrap {
    width: 450px;
  }
}
@media only screen and (max-width: 767px) {
  .header .mid-header .mid-header-inner .category-form-wrap {
    display: none;
  }
}
.header .mid-header .mid-header-inner .category-form-wrap .select-control {
  background-color: var(--ed-color-grey-1);
  height: inherit;
  line-height: inherit;
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--ed-color-heading-primary);
  margin-right: 20px;
  padding-right: 30px;
  padding-left: 40px;
  border-right: 1px solid var(--ed-color-border-1);
  border-radius: 100px;
  border-radius: 0;
}
.header .mid-header .mid-header-inner .category-form-wrap .select-control:before {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 500;
  content: "\e196";
  position: absolute;
  top: 52%;
  left: 20px;
  transform: translateY(-50%);
}
.header .mid-header .mid-header-inner .category-form-wrap .select-control:after {
  height: 7px;
  width: 7px;
  border-color: var(--ed-color-heading-primary);
  right: 20px;
}
.header .mid-header .mid-header-inner .category-form-wrap .select-control .list {
  margin-left: 19px;
  margin-top: 14px;
}
.header .mid-header .mid-header-inner .category-form-wrap .header-form {
  position: relative;
  width: 100%;
}
.header .mid-header .mid-header-inner .category-form-wrap .header-form .form-control {
  padding-top: 0;
  background-color: var(--ed-color-grey-1);
  padding-bottom: 0;
  border: none;
  box-shadow: none;
  padding-left: 0;
  padding-right: 150px;
  border-radius: 100px;
}
.header .mid-header .mid-header-inner .category-form-wrap .header-form .submit {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  padding: 10px 20px 10px 20px;
  font-size: 14px;
  font-weight: 500;
}
.header .mid-header .mid-header-inner .category-form-wrap .header-form .submit i {
  margin-right: 5px;
  margin-left: 0;
  font-size: 12px;
}
.header .mid-header .mid-header-inner .mid-header-right {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.header .mid-header .mid-header-inner .mid-header-right .header-right-icon {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .header .mid-header .mid-header-inner .mid-header-right .header-right-icon {
    display: none;
  }
}
.header .mid-header .mid-header-inner .mid-header-right .header-right-icon a {
  color: var(--ed-color-text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  width: 47px;
  border-radius: 50%;
  border: 1px solid #E0E5EB;
}
.header .mid-header .mid-header-inner .mid-header-right .header-right-icon .number {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  font-size: 12px;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  z-index: 1;
}
.header .primary-header {
  position: relative;
}
@media only screen and (max-width: 992px) {
  .header {
    position: inherit;
    height: auto !important;
  }
}
.header .primary-header-inner {
  background-color: var(--ed-color-common-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner {
    padding: 20px 0;
  }
}
.header .primary-header-inner .header-left-inner {
  display: flex;
  align-items: center;
}
.header .primary-header-inner .header-logo {
  position: relative;
  z-index: 2;
}
.header .primary-header-inner .header-logo img {
  max-width: 224px;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-logo img {
    max-width: 180px;
  }
}
@media (max-width: 1200px) {
  .header .primary-header-inner .header-logo img {
    max-width: 160px;
  }
}
.header .primary-header-inner .header-menu-wrap {
  display: flex !important;
  align-items: center;
}
.header .primary-header-inner .header-menu-wrap .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu {
    display: none;
  }
}
.header .primary-header-inner .header-menu-wrap .sub-menu li {
  display: inline-block;
  position: relative;
  margin: 0 12px;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu li {
    margin: 0 10px;
  }
}
.header .primary-header-inner .header-menu-wrap .sub-menu li a {
  font-family: var(--ed-ff-body);
  color: var(--ed-color-heading-primary);
  display: block;
  font-size: 16px;
  padding: 44.5px 0;
  letter-spacing: 0;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu li a {
    font-size: 14px;
  }
}
.header .primary-header-inner .header-menu-wrap .sub-menu li a:hover {
  color: var(--ed-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li a i {
  font-size: 13px;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active a {
  color: var(--ed-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active ul li a {
  color: var(--ed-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active ul li a:hover {
  color: var(--ed-color-common-white);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active.menu-item-has-children:after {
  color: var(--ed-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li ul {
  background-color: var(--ed-color-common-white);
  display: block;
  width: 220px;
  padding: 0;
  -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  position: absolute;
  left: 0;
  top: 70px;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: all 0.6s ease;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li:hover > ul {
  visibility: visible;
  transition: all 0.6s ease;
  opacity: 1;
  transform: none;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li {
  display: flex;
  justify-content: space-between;
  text-align: left;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:not(:last-of-type) {
  border-bottom: 1px dashed var(--ed-color-border-1);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:last-child {
  margin: 0;
  border-bottom: none;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover {
  background-color: var(--ed-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover a {
  color: var(--ed-color-common-black);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li a {
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--ed-color-common-black);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 0;
  letter-spacing: 0;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li a:hover {
  padding-left: 10px;
  color: var(--ed-color-common-white);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li a:before {
  display: none;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li.active {
  background-color: var(--ed-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li.active a {
  color: var(--ed-color-common-white) !important;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li:hover a:before {
  width: 100%;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li ul {
  top: 0;
  left: 100%;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover a {
  color: var(--ed-color-common-white);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover li a {
  color: var(--ed-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover li a:hover {
  color: var(--ed-color-common-white);
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children {
  position: relative;
  padding-right: 5px;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children a {
  padding-right: 12px;
}
@media (max-width: 1200px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children a {
    padding-right: 13px;
  }
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children ul li {
  margin: 0;
  padding-inline-start: 24px;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children ul li a {
  padding-inline-end: 0;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 700;
  content: "\f078";
  color: var(--ed-color-heading-primary);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children:hover:after {
  color: var(--ed-color-theme-primary);
}
.header .primary-header-inner .header-right {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right .header-logo img {
    width: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right .header-btn {
    display: none;
  }
}
.header .primary-header-inner .header-right .header-btn i {
  font-size: 14px;
}
.header .primary-header-inner .header-right .search-icon {
  color: var(--ed-color-heading-primary);
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .header .primary-header-inner .header-right .search-icon {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right .search-icon {
    margin-right: 20px;
  }
}
.header .primary-header-inner .header-right .header-right-icon {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right .header-right-icon {
    display: none;
  }
}
.header .primary-header-inner .header-right .header-right-icon a {
  color: var(--ed-color-text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  width: 47px;
  border-radius: 50%;
  border: 1px solid #E0E5EB;
}
.header .primary-header-inner .header-right .header-right-icon .number {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  font-size: 12px;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  z-index: 1;
}
.header .primary-header-inner .header-right .header-right-icon.notifications-btn .number {
  background-color: var(--bs-form-valid-color);
}
.header .primary-header-inner .header-right .header-right-icon.notifications-btn.new a {
  border-color: var(--bs-form-invalid-color);
}
.header .primary-header-inner .header-right .header-right-icon.notifications-btn.new a i {
  color: var(--bs-form-invalid-color);
}
.header .primary-header-inner .header-right .header-right-icon.notifications-btn.new .number {
  background-color: var(--bs-form-invalid-color);
}
.header .primary-header-inner .header-right .header-right-item {
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .header .primary-header-inner .header-right .header-right-item {
    line-height: 1;
  }
}
.header .primary-header-inner .header-right .header-right-item .mobile-side-menu-toggle {
  color: var(--ed-color-heading-primary);
  font-size: 30px;
}
.header .primary-header-inner .header-right .header-right-item .search-icon {
  font-size: 16px;
  margin-left: 55px;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right .header-right-item .search-icon {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .mean-push {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  .header-1 .mid-header {
    display: none;
  }
}
.header-1 .primary-header {
  border-top: 1px solid var(--ed-color-border-1);
}
.header-1 .primary-header .primary-header-inner .header-menu-wrap {
  padding-left: 30px;
  margin-left: 30px;
  border-left: 1px solid var(--ed-color-border-1);
}
.header-1 .primary-header .primary-header-inner .header-menu-wrap ul li a {
  padding: 19px 0;
  padding-right: 12px;
}
.header-1 .primary-header .primary-header-inner .header-menu-wrap ul li ul {
  top: 63px;
}
.header-1 .primary-header .primary-header-inner .header-right-btn {
  display: none;
}
.header-1 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li a {
  padding: 25px 0;
  padding-right: 12px;
}
.header-1 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul {
  top: 76px;
}
.header-1 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul li a {
  padding: 19px 0;
}
.header-1 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul li:hover a {
  padding-left: 10px;
}
.header-1 .primary-header.fixed .primary-header-inner .header-right-btn {
  display: block;
}

.category-area {
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .category-area {
    display: none;
  }
}

.category-area .category-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.category-area .category-btn span {
  color: var(--ed-color-heading-primary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-area .category-btn i {
  color: var(--ed-color-theme-primary);
}

.category-area:hover .category-sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateZ(0) translateY(20px);
}

.category-area .category-sub-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  background: var(--ed-color-common-white);
  transform: translateZ(0) translateY(30px);
  border-radius: 4px;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: all 0.6s ease;
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
  display: flex;
  flex-direction: column;
  min-width: 210px;
  padding: 17px 10px;
}

.category-area .category-sub-menu li {
  list-style: none;
  width: 100%;
  margin: 0;
  display: flex;
}
.category-area .category-sub-menu li:not(:last-of-type) {
  margin-bottom: 10px;
}

.category-area .category-sub-menu li ul {
  padding: 0;
  margin: 0;
}

.category-area .category-sub-menu li a {
  color: var(--ed-color-heading-primary);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 10px;
  transition: all 0.3s;
  border-radius: 4px;
  background: transparent;
}
.category-area .category-sub-menu li a:hover {
  color: var(--ed-color-theme-primary);
}

.category-area .category-sub-menu li a span {
  color: var(--ed-color-heading-primary);
}

.category-area .category-sub-menu li a:hover span {
  color: var(--ed-color-heading-primary);
}

.category-area .category-sub-menu li a img {
  width: 45px;
}

.category-area .category-sub-menu li a h4 {
  color: var(--ed-color-heading-primary);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.1;
}

.category-area .category-sub-menu li a p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
}

.header-2 {
  background-color: var(--ed-color-common-white);
}
@media only screen and (max-width: 992px) {
  .header-2 {
    position: relative;
  }
}
.header-2 .primary-header {
  background-color: transparent;
}
.header-2 .primary-header:before {
  visibility: hidden;
  opacity: 0;
}
@media only screen and (max-width: 992px) {
  .header-2 .primary-header:before {
    visibility: visible;
    opacity: 1;
  }
}
.header-2 .primary-header-inner {
  background-color: transparent;
}
.header-2 .primary-header-inner .header-logo .fixed-logo {
  display: none;
}
.header-2 .primary-header-inner .header-right-wrap {
  display: flex;
  align-items: center;
  column-gap: 44px;
}
@media (max-width: 1600px) {
  .header-2 .primary-header-inner .header-right-wrap {
    column-gap: 32px;
  }
}
@media (max-width: 1200px) {
  .header-2 .primary-header-inner .header-right-wrap {
    column-gap: 12px;
  }
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu li {
  margin: 0 12px;
  vertical-align: middle;
}
@media (max-width: 1200px) {
  .header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu li {
    margin: 0 8px;
  }
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu li a {
  font-size: 16px;
  line-height: 1.2 !important;
  font-weight: 500;
  text-transform: inherit;
  text-align: center;
  padding: 0px !important;
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu li ul li a {
  font-size: 16px;
  text-align: start;
  padding: 16px 0px !important;
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children {
  padding-inline-end: 16px;
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children:after {
  display: block;
  font-size: 12px;
  color: var(--ed-color-heading-primary);
  top: 52%;
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children.active a {
  color: var(--ed-color-theme-primary);
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children.active ul li a {
  color: var(--ed-color-heading-primary);
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children.active ul li:hover a {
  color: var(--ed-color-common-white);
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children:hover:after {
  color: var(--ed-color-theme-primary);
}
.header-2 .primary-header-inner .header-right-wrap .header-right .header-right-icon {
  color: var(--ed-color-text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  width: 47px;
  border-radius: 50%;
  border: 1px solid #E0E5EB;
}
@media only screen and (max-width: 767px) {
  .header-2 .primary-header-inner .header-right-wrap .header-right .header-right-icon {
    display: none;
  }
}
.header-2 .primary-header-inner .header-right-wrap .header-right .ed-primary-btn {
  padding: 17px 20px;
}
.header-2 .primary-header-inner .header-right-wrap .header-right .search-icon {
  color: var(--ed-color-common-white);
}
.header-2 .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
  color: var(--ed-color-heading-primary);
}

.header-4 {
  background-color: transparent;
  position: absolute;
  top: 0;
}
.header-4 .top-bar {
  background-color: transparent;
}
@media (max-width: 1200px) {
  .header-4 .top-bar {
    display: block;
  }
}
@media only screen and (max-width: 992px) {
  .header-4 .top-bar {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .header-4 .top-bar {
    display: none;
  }
}
.header-4 .top-bar .top-bar-inner {
  background-color: var(--ed-color-theme-primary);
  padding: 0 30px;
}
@media only screen and (max-width: 992px) {
  .header-4 .top-bar .top-bar-inner {
    padding: 10px 20px;
    justify-content: center;
  }
}
.header-4 .top-bar .top-bar-inner .top-bar-left {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
@media only screen and (max-width: 992px) {
  .header-4 .top-bar .top-bar-inner .top-bar-left {
    justify-content: center;
  }
}
.header-4 .top-bar .top-bar-inner .top-bar-left .rr-product-countdown .rr-product-countdown-inner {
  background-color: var(--ed-color-common-white);
  padding: 5px 30px;
  border-radius: 100px;
}
.header-4 .top-bar .top-bar-inner .top-bar-left .rr-product-countdown .rr-product-countdown-inner ul li {
  display: inline-flex;
  color: var(--ed-color-theme-primary);
}
.header-4 .top-bar .top-bar-inner .top-bar-left .rr-product-countdown .rr-product-countdown-inner ul li span {
  color: var(--ed-color-theme-primary);
}
.header-4 .top-bar .top-bar-inner .top-bar-left .rr-product-countdown .rr-product-countdown-inner ul li:not(:last-of-type) {
  margin-right: 15px;
}
@media only screen and (max-width: 992px) {
  .header-4 .top-bar .top-bar-inner .top-bar-right {
    display: none;
  }
}
.header-4 .top-bar .top-bar-inner .top-bar-right .register-box {
  margin-right: 0;
  padding-right: 0;
  border: none;
  padding-left: 30px;
}
.header-4 .primary-header {
  background-color: transparent;
}
.header-4 .primary-header .primary-header-inner {
  background-color: var(--ed-color-common-white);
  padding: 24px 30px;
  border-radius: 0 0 10px 10px;
}
@media only screen and (max-width: 992px) {
  .header-4 .primary-header .primary-header-inner {
    padding: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .header-4 .primary-header .primary-header-inner {
    padding: 16px 10px;
  }
}
.header-4 .primary-header.fixed .primary-header-inner {
  padding-top: 16px;
  padding-bottom: 16px;
}
.header-4 .primary-header.fixed li.menu-item-has-children ul {
  top: 62px;
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu .header-right {
    display: none !important;
  }
}
.side-menu-icon {
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 100;
  display: block;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .side-menu-icon {
    display: none;
  }
}

.side-menu-wrapper {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 850px;
  -webkit-transform: translateX(850px);
  -ms-transform: translateX(850px);
  transform: translateX(850px);
  height: 100%;
  display: block;
  background-color: var(--ed-color--bg-dark-deep);
  z-index: 100;
  padding: 40px;
  -webkit-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.side-menu-wrapper .side-menu-close {
  background-color: var(--ed-color-theme-primary);
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 18px;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}
.side-menu-wrapper.is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (max-width: 992px) {
  .side-menu-wrapper {
    display: none;
  }
}

.side-menu-content .side-menu-header {
  font-family: var(--ed-ff-body);
  font-size: 30px;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  margin-bottom: 40px;
}
.side-menu-content .side-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box img {
  max-width: 150px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
  font-family: var(--ed-ff-body);
  font-size: 32px;
  font-weight: 500;
  color: var(--ed-color-theme-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
  max-width: 400px;
  width: 100%;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
  margin-bottom: 0;
}
.side-menu-content .side-menu-item .side-menu-arrow {
  font-size: 45px;
  color: var(--ed-color-theme-primary);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.side-menu-content .side-menu-item:hover {
  border: 1px solid var(--ed-color-border-6);
}
.side-menu-content .side-menu-item:hover .side-menu-arrow {
  transform: rotate(0deg);
}
.side-menu-content .side-menu-item:last-child {
  margin-bottom: 0;
}

.side-menu-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 9;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}
.side-menu-overlay.is-open {
  width: 100%;
  opacity: 0.5;
  visibility: visible;
  cursor: url(../img/cancel.png), auto;
}
@media only screen and (max-width: 992px) {
  .side-menu-overlay {
    display: none;
  }
}

.primary-header {
  width: 100%;
}
.primary-header.fixed {
  background-color: var(--ed-color-common-white);
  position: fixed;
  left: 0;
  top: 0;
  animation-name: menuSticky;
  -webkit-animation-name: menuSticky;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
  z-index: 99;
}

@-webkit-keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.mobile-side-menu-overlay,
.mobile-side-menu {
  display: none;
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu {
    background-color: var(--ed-color-common-white);
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 80%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    height: 100%;
    display: block;
    z-index: 100;
    padding: 40px 40px 40px 40px;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu {
    padding: 40px 20px;
    width: 100%;
    max-width: 320px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .mobile-side-menu .side-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
  }
  .mobile-side-menu .side-menu-head a img {
    max-width: 150px;
  }
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    position: fixed;
    top: 45px;
    right: 40px;
    color: var(--ed-color-heading-primary);
    font-size: 17px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ed-color-border-1);
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    right: 16px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
    background-color: var(--ed-color-theme-primary);
    color: var(--ed-color-common-white);
  }
  .mobile-side-menu .side-menu-wrap {
    overflow: hidden;
    margin-bottom: 16px;
  }
  .mobile-side-menu p {
    color: var(--ed-color-common-white);
    margin-bottom: 50px;
  }
  .mobile-side-menu .list-header {
    color: var(--ed-color-common-white);
    font-family: var(--ed-ff-body);
    font-weight: 400;
    margin-bottom: 30px;
  }
  .mobile-side-menu .side-menu-btns {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 20px;
    margin-bottom: 28px;
  }
  .mobile-side-menu .side-menu-btns div.cart-btn {
    color: var(--ed-color-text-body);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    width: 47px;
    border-radius: 50%;
    border: 1px solid #E0E5EB;
    position: relative;
  }
  .mobile-side-menu .side-menu-btns div.cart-btn a {
    color: var(--ed-color-text-body);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    width: 47px;
    border-radius: 50%;
    border: 1px solid #E0E5EB;
  }
  .mobile-side-menu .side-menu-btns div.cart-btn .number {
    background-color: var(--ed-color-theme-primary);
    color: var(--ed-color-common-white);
    font-size: 12px;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 0;
    right: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    z-index: 1;
  }
  .mobile-side-menu .side-menu-btns div.notifications-btn {
    color: var(--ed-color-text-body);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    width: 47px;
    border-radius: 50%;
    border: 1px solid #E0E5EB;
    position: relative;
  }
  .mobile-side-menu .side-menu-btns div.notifications-btn .number {
    background-color: var(--bs-form-valid-color);
    color: var(--ed-color-common-white);
    font-size: 12px;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 0;
    right: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    z-index: 1;
  }
  .mobile-side-menu .side-menu-btns div.notifications-btn.new a {
    border-color: var(--bs-form-invalid-color);
  }
  .mobile-side-menu .side-menu-btns div.notifications-btn.new a i {
    color: var(--bs-form-invalid-color);
  }
  .mobile-side-menu .side-menu-btns div.notifications-btn.new .number {
    background-color: var(--bs-form-invalid-color);
  }
  .mobile-side-menu .side-menu-btns div.account-btn {
    color: var(--ed-color-text-body);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    width: 47px;
    border-radius: 50%;
    border: 1px solid #E0E5EB;
    position: relative;
  }
  .mobile-side-menu .side-menu-btns div.account-btn a {
    color: var(--ed-color-text-body);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    width: 47px;
    border-radius: 50%;
    border: 1px solid #E0E5EB;
  }
  .mobile-side-menu .side-menu-btns .signout-btn {
    padding: 17px 20px;
  }
  .mobile-side-menu .side-menu-list li {
    font-family: var(--ed-ff-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--ed-color-heading-primary);
  }
  .mobile-side-menu .side-menu-list li span,
  .mobile-side-menu .side-menu-list li a {
    color: var(--ed-color-heading-primary);
    margin-left: 10px;
    font-size: 16px;
  }
  .mobile-side-menu .side-menu-list li i {
    margin-right: 10px;
  }
  .mobile-side-menu .mean-bar {
    background-color: transparent;
    min-height: auto;
    padding: 0;
  }
  .mobile-side-menu .mean-bar .meanmenu-reveal {
    display: none !important;
  }
  .mobile-side-menu .mean-bar .mean-nav {
    background-color: transparent;
    margin-top: 0;
    padding-top: 20px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul {
    display: block !important;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li {
    position: relative;
    float: none;
    display: block;
    width: auto;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ed-color-border-1);
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li.dropdown-opened {
    padding-bottom: 0px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    color: var(--ed-color-heading-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    border-top: none;
    padding: 0;
    float: none;
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a br {
    display: none;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
    background-color: var(--ed-color-theme-primary);
    color: var(--ed-color-common-white);
    position: absolute;
    padding: 0;
    top: -3px;
    right: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before, .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
    font-size: 14px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
    content: "+";
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked {
    background-color: var(--ed-color-heading-primary);
    color: var(--ed-color-common-white);
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
    content: "\f068";
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:before {
    display: none;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
    display: none;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul {
    padding-inline-start: 24px;
    margin-top: 16px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li:last-of-type {
    border: none;
    padding-bottom: 0px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
  }
  .mobile-side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
    display: block;
  }
  .mobile-side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.png), auto;
  }
}
/* !END:  Header CSS */
/**----------------------------------------
START: Header CSS
----------------------------------------*/
#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
  display: none;
}

.sidebar-trigger {
  display: block;
}

.sidebar-area {
  background-color: var(--ed-color-common-white);
  border-left: 1px solid #eee;
  padding: 60px 50px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 450px;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: scroll;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.open-sidebar .sidebar-area {
  right: 0;
  visibility: visible;
  transform: translate(0);
}

.sidebar-trigger.close {
  position: absolute;
  right: 30px;
  top: 70px;
  color: var(--grey-color);
}

.sidebar-trigger.close svg {
  fill: currentColor;
  stroke: none;
  width: 20px;
  height: 20px;
}

.sidebar-content .site-logo {
  margin-bottom: 40px;
}

.sidebar-content .site-logo img {
  max-width: 200px;
}

.sidebar-content .sidebar-info li {
  font-size: 18px;
}

.sidebar-content .sidebar-social li {
  display: inline-block;
  margin: 0 3px;
  padding-top: 30px;
}

.sidebar-content .sidebar-social li a {
  display: inline-block;
  border: 1px solid var(--border-1);
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sidebar-content .sidebar-social li a:after {
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 59%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.sidebar-content .sidebar-social li a:hover {
  border: 1px solid var(--primary-color);
  color: #fff;
}

.sidebar-content .sidebar-social li:hover a:after {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  transform: translate(-50%, -50%) scale(1);
}

.sidebar-content .list-post-area {
  margin: 50px 0 20px 0;
}

/*Scrollbar Style*/
.sidebar-area::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.sidebar-area::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #ccc;
}

.sidebar-area::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area-webkit-::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area::-moz-selection {
  background-color: #999;
  color: #fff;
}

#sidebar-overlay {
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: all 0s ease-in-out;
  width: calc(100% - 400px);
  z-index: -1;
}

.open-sidebar #sidebar-overlay {
  opacity: 1;
  z-index: 1002;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.3s;
}

@media (max-width: 992px) {
  .sidebar-content .list-post-area.list-2 {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .sidebar-area {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .sidebar-area {
    width: 350px;
    padding: 60px 30px;
  }
  .sidebar-content .list-post-area.list-2 .list-post-card .post-img {
    height: 90px;
    width: 90px;
  }
  .sidebar-content .list-post-area.list-2 .list-post-card {
    grid-template-columns: 90px 1fr;
  }
}
.side-menu-about {
  margin: 50px 0 50px 0;
}

.side-menu-about p {
  margin: 25px 0;
}

.side-menu-header h3 {
  font-size: 30px;
  font-weight: 600px;
  line-height: 1;
  font-weight: 600;
}

.side-menu-content .side-menu-header,
.side-menu-about .side-menu-header {
  margin-bottom: 20px;
}

.side-menu-list {
  margin: 0px;
  margin-bottom: 32px;
}

.side-menu-list li {
  display: flex;
  align-items: center;
}

.side-menu-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.side-menu-list li i {
  background-color: var(--ed-color-theme-primary);
  font-size: 12px;
  color: var(--ed-color-common-white);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

.side-menu-list li:hover i {
  background-color: var(--ed-color-theme-primary);
  color: #fff;
}

.side-menu-list li p {
  padding-left: 10px;
  margin-bottom: 0;
}

.side-menu-list li a {
  font-size: 16px;
  color: var(--ed-color-text-body);
  padding-left: 10px;
}
.side-menu-list li a:hover {
  color: var(--ed-color-theme-primary);
}

.side-menu-social {
  margin-top: 40px;
  list-style: none;
}
.side-menu-social li {
  display: inline-flex;
}
.side-menu-social li:not(:last-of-type) {
  margin-right: 10px;
}
.side-menu-social li a {
  background-color: transparent;
  font-size: 17px;
  color: var(--ed-color-heading-primary);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ed-color-border-1);
}
.side-menu-social li a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}

/* !END:  Header CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.blog-section .ed-primary-btn {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  border: 1px solid #E0E5EB;
  font-weight: 500;
  margin-top: 8px;
}
.blog-section .ed-primary-btn:before {
  background-color: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
}
.blog-section .ed-primary-btn:hover {
  color: var(--ed-color-common-white);
}
.blog-section .ed-primary-btn i {
  font-size: 14px;
}

.post-card {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}
.post-card .post-thumb {
  position: relative;
  z-index: 1;
  height: 454px;
}
.post-card .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-card .post-thumb:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, #020F21 100%);
  border-radius: 10px;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.post-card .post-content-wrap {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 2;
  padding-right: 50px;
}
@media only screen and (max-width: 992px) {
  .post-card .post-content-wrap {
    left: 30px;
    bottom: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .post-card .post-content-wrap {
    left: 20px;
    bottom: 20px;
    padding-right: 20px;
  }
}
.post-card:hover .post-thumb img {
  transform: scale(1.02);
}
.post-card.post-card-1 .post-meta li {
  color: var(--ed-color-common-white);
}

.post-content .category {
  background-color: var(--ed-color-common-white);
  display: inline-block;
  color: var(--ed-color-theme-primary);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.post-content .title {
  color: var(--ed-color-common-white);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
.post-content .title a {
  background: linear-gradient(var(--ed-color-common-white) 0%, var(--ed-color-common-white) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-content .title a:hover {
  color: var(--ed-color-common-white);
  background-size: 100% 2px;
}
.post-content .rr-primary-btn {
  padding: 14.5px 30px;
}

.post-meta {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 10px;
}
.post-meta li {
  font-family: var(--ed-ff-body);
  color: var(--ed-color-heading-primary);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.post-meta li i {
  font-size: 14px;
  margin-top: 1px;
}
.post-meta li:not(:last-of-type) {
  margin-right: 20px;
}
.post-meta li a:hover {
  color: var(--ed-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .post-meta li {
    font-size: 12px;
  }
}

.post-card-2-wrap {
  margin-bottom: -24px;
}

.post-card-2 {
  display: grid;
  align-items: center;
  grid-template-columns: 370px 1fr;
  grid-gap: 36px;
  padding: 40px 45px;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 992px) {
  .post-card-2 {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}
.post-card-2 .post-thumb {
  width: 100%;
  max-width: max(100%, 800px);
  aspect-ratio: 4/3;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}
@media only screen and (max-width: 767.98px) {
  .post-card-2 .post-thumb {
    max-width: 100%;
    aspect-ratio: 16/9;
  }
}
.post-card-2 .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.post-card-2 .post-content .post-meta {
  margin-bottom: 10px;
}
.post-card-2 .post-content .post-meta li {
  color: var(--ed-color-heading-primary);
}
@media only screen and (max-width: 767px) {
  .post-card-2 .post-content .post-meta li {
    font-size: 14px;
  }
}
.post-card-2 .post-content .title {
  color: var(--ed-color-heading-primary);
  margin-bottom: 15px;
}
.post-card-2 .post-content .title a {
  background: linear-gradient(var(--ed-color-theme-primary) 0%, var(--ed-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-card-2 .post-content .title a:hover {
  color: var(--ed-color-theme-primary);
  background-size: 100% 2px;
}
.post-card-2 .post-content p {
  font-size: 17px;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .post-card-2 .post-content p br {
    display: none;
  }
}
.post-card-2 .post-content .ed-primary-btn {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-heading-primary);
  border: 1px solid #E0E5EB;
  font-weight: 500;
}
.post-card-2 .post-content .ed-primary-btn:before {
  background-color: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
}
.post-card-2 .post-content .ed-primary-btn:hover {
  color: var(--ed-color-common-white);
}
.post-card-2 .post-content .ed-primary-btn i {
  font-size: 14px;
}

.post-inner-2 {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #E0E5EB;
}
.post-inner-2:not(:last-of-type) {
  margin-bottom: 24px;
}
.post-inner-2 .post-thumb {
  height: auto;
  position: relative;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-inner-2 .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-inner-2 .post-thumb .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.post-inner-2 .post-thumb .video-btn a {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  font-size: 30px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-inner-2 .post-thumb .video-btn img {
  margin-bottom: 5px;
}
.post-inner-2 .post-thumb .video-btn .ripple {
  height: 100px;
  width: 100px;
}
.post-inner-2 .post-thumb .video-btn .ripple:before, .post-inner-2 .post-thumb .video-btn .ripple:after {
  height: 100px;
  width: 100px;
}
.post-inner-2 .post-content {
  background-color: var(--ed-color-grey-1);
  padding: 30px;
}
.post-inner-2 .post-content .title {
  color: var(--ed-color-heading-primary);
  font-size: 30px;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .post-inner-2 .post-content .title {
    font-size: 22px;
  }
}
.post-inner-2 .post-content .title a {
  background: linear-gradient(var(--ed-color-theme-primary) 0%, var(--ed-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-inner-2 .post-content .title a:hover {
  color: var(--ed-color-theme-primary);
  background-size: 100% 2px;
}
.post-inner-2 .post-content p {
  margin-top: 0;
  margin-bottom: 30px;
}
.post-inner-2:hover .post-thumb .swiper-arrow {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: visible;
  opacity: 1;
}

.post-thumb-carousel {
  padding-top: 20px;
}
.post-thumb-carousel .swiper-arrow {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-thumb-carousel .swiper-arrow .swiper-nav {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 5px 5px 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.post-thumb-carousel .swiper-arrow .swiper-nav.swiper-next {
  left: auto;
  right: 0;
  border-radius: 5px 0 0 5px;
}
.post-thumb-carousel:hover .swiper-arrow {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: visible;
  opacity: 1;
}

.post-card-3 {
  background-color: var(--ed-color-common-white);
  grid-template-columns: 1fr;
  padding: 20px 20px 30px 20px;
  grid-gap: 30px;
}
.post-card-3 .post-thumb {
  height: 214px;
}
.post-card-3 .post-content {
  padding: 0 10px;
}
.post-card-3 .post-content .post-meta li i {
  color: var(--ed-color-theme-primary);
}
.post-card-3 .post-content .title {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #E0E5EB;
}
.post-card-3 .post-content .read-more {
  color: var(--ed-color-theme-primary);
  border: none;
  padding: 0;
}
.post-card-3 .post-content .read-more:hover {
  background-color: inherit;
  border: none;
}

.post-card.post-card-5 {
  height: 100%;
}
.post-card.post-card-5 .post-thumb {
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .post-card.post-card-5 .post-thumb {
    height: 450px;
  }
}

.grid-post {
  background-color: var(--ed-color-common-white);
  display: grid;
  align-items: center;
  grid-template-columns: 217px 1fr;
  grid-gap: 0;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .grid-post {
    grid-template-columns: 1fr;
  }
}
.grid-post .post-thumb {
  border-radius: 0;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .grid-post .post-thumb {
    height: 300px;
  }
}
.grid-post .post-thumb .category {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  padding: 10px 20px;
  border-radius: 100px;
}
.grid-post .post-content {
  padding: 40px 30px;
}
.grid-post .post-content .title {
  font-size: 22px;
  padding-bottom: 0;
  border: none;
  margin-bottom: 15px;
}
.grid-post .post-content .post-meta {
  margin-bottom: 25px;
}
.grid-post .post-content .ed-primary-btn {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-text-body);
  border: 1px solid #E0E5EB;
}
.grid-post .post-content .ed-primary-btn:before {
  background-color: var(--ed-color-theme-primary);
}
.grid-post .post-content .ed-primary-btn:hover {
  color: var(--ed-color-common-white);
}

@media only screen and (max-width: 992px) {
  .post-wrap-card {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 24px;
    margin-bottom: 30px;
  }
  .post-wrap-card .post-card-2 {
    margin-bottom: 0;
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .post-wrap-card {
    flex-direction: column;
    row-gap: 24px;
  }
}

.pagination-wrap {
  display: flex;
  align-items: center;
  list-style: none;
  column-gap: 10px;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 30px;
}
.pagination-wrap li:not(:last-of-type) {
  margin-right: 10px;
}
.pagination-wrap li a {
  background-color: var(--ed-color-grey-1);
  color: var(--ed-color-heading-primary);
  font-weight: 600;
  height: 55px;
  width: 55px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 50%;
}
.pagination-wrap li a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.pagination-wrap li .active {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}

.post-inner .post-content p br {
  display: none;
}

.inner-post-2 {
  padding: 0;
  overflow: hidden;
  grid-gap: 0;
  margin-bottom: 0;
}
.inner-post-2 .post-thumb {
  height: 250px;
  padding: 0;
  border-radius: 0;
  margin-bottom: 0;
}
.inner-post-2 .post-thumb img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.inner-post-2 .post-content {
  padding: 30px;
}
.inner-post-2 .post-content .title {
  padding-bottom: 0;
  border: none;
}
.inner-post-2:hover .post-thumb img {
  transform: scale(1.02);
}

.post-search-result .search-box {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 300px;
  position: relative;
}
.post-search-result .search-box .form-control {
  padding: 14px 20px;
  padding-left: 30px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-radius: 100px;
  border: 1px solid var(--ed-color-border-1);
}
.post-search-result .search-box .form-control.is-invalid {
  background-image: none;
}
.post-search-result .search-box .form-control.is-invalid + .search-btn {
  top: 35%;
}
.post-search-result .search-box .form-control.is-invalid + .search-btn i {
  color: var(--bs-form-invalid-color);
}
.post-search-result .search-box .form-control.is-valid {
  background-image: none;
}
.post-search-result .search-box .form-control.is-valid + .search-btn i {
  color: var(--bs-form-valid-color);
}
.post-search-result .search-box .search-btn {
  color: var(--ed-color-theme-primary);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.post-search-result .search-box.was-validated .form-control:invalid {
  background-image: none;
}
.post-search-result .search-box.was-validated .form-control:invalid + .search-btn {
  top: 35%;
}
.post-search-result .search-box.was-validated .form-control:invalid + .search-btn i {
  color: var(--bs-form-invalid-color);
}
.post-search-result .search-box.was-validated .form-control:valid {
  background-image: none;
}
.post-search-result .search-box.was-validated .form-control:valid + .search-btn i {
  color: var(--bs-form-valid-color);
}

/* !END:  Blog CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/
.page-header-2 {
  background: #CF63FA;
  background: linear-gradient(45deg, rgba(207, 99, 250, 0.5) 35%, rgba(12, 164, 238, 0.5) 65%);
  padding-block: 52px;
}

.page-header {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 320px 0 24px;
}
@media only screen and (max-width: 992px) {
  .page-header {
    padding: 336px 0 24px;
  }
}
.page-header .overlay {
  background: linear-gradient(90deg, #F3F7FB 43.21%, rgba(243, 247, 251, 0.24) 63.66%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .page-header .overlay {
    background: rgba(255, 255, 255, 0.55);
  }
}
.page-header .bg-img {
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 575.98px) {
  .page-header .bg-img {
    background-position: 90% center;
  }
}
@media screen and (min-width: 1400px) {
  .page-header .bg-img {
    background-size: contain;
    background-position: center center;
    background-color: #F3F7FB;
  }
}
@media only screen and (max-width: 767px) {
  .page-header .shapes {
    display: none;
  }
}
.page-header .shapes .shape {
  position: absolute;
  z-index: -1;
}
.page-header .shapes .shape.shape-1 {
  bottom: 20px;
  left: 50px;
}
@media (max-width: 1700px) {
  .page-header .shapes .shape.shape-1 {
    left: 0;
  }
}
.page-header .shapes .shape.shape-2 {
  bottom: 0;
  left: 40%;
}
.page-header .shapes .shape.shape-3 {
  top: 0;
  right: 0;
}

@media (max-width: 1700px) {
  .page-header-content {
    padding-inline-start: 100px;
  }
}
@media (max-width: 1600px) {
  .page-header-content {
    padding-inline-start: 36px;
  }
}
@media (max-width: 1399px) {
  .page-header-content {
    padding-inline-start: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .page-header-content {
    padding-left: 0;
  }
}
.page-header-content .title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .page-header-content .title {
    font-size: 32px;
  }
}
.page-header-content .sub-title {
  font-size: 16px;
  font-weight: 500;
}
.page-header-content .sub-title .icon {
  font-size: 16px;
  padding: 0 5px;
}
.page-header-content .sub-title .inner-page {
  color: var(--ed-color-theme-primary);
}

/* !END:  Page Header CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.contact-form-warp {
  padding: 40px;
  margin-top: 0;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}
.contact-form-warp .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0px;
}
.contact-form-warp p {
  margin-bottom: 28px;
}
.contact-form-warp .form-item {
  position: relative;
  margin-bottom: 24px;
}
.contact-form-warp .form-item .form-control {
  background-color: transparent;
  border: 1px solid #E0E5EB;
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  padding: 13px 20px;
  margin-bottom: 0px;
  width: 100%;
  border-radius: 6px;
}
.contact-form-warp .form-item .form-control::-webkit-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.contact-form-warp .form-item .form-control:-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.contact-form-warp .form-item .form-control::-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.contact-form-warp .form-item .form-control:-ms-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.contact-form-warp .form-item .form-control.is-invalid {
  background-image: none;
}
.contact-form-warp .form-item .form-control.is-invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.contact-form-warp .form-item .form-control.is-valid {
  background-image: none;
}
.contact-form-warp .form-item .form-control.is-valid + .icon {
  color: var(--bs-form-valid-color);
}
.contact-form-warp .form-item .icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.contact-form-warp .form-item.message-item .icon {
  top: 24px !important;
}
.contact-form-warp .ed-primary-btn[type=submit] {
  font-weight: 600;
  border-radius: 4px;
  justify-content: center;
  width: 100%;
}
.contact-form-warp hr {
  color: var(--ed-color-border-1);
  border: 1px solid var(--ed-color-border-1);
}
.contact-form-warp .was-validated .form-control:invalid {
  background-image: none;
}
.contact-form-warp .was-validated .form-control:invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.contact-form-warp .was-validated .form-control:valid {
  background-image: none;
}
.contact-form-warp .was-validated .form-control:valid + .icon {
  color: var(--bs-form-valid-color);
}

.contact-content {
  border: 1px solid #E0E5EB;
  padding: 50px;
  border-radius: 15px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .contact-content {
    padding: 30px 20px;
  }
}
.contact-content .contact-top .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .contact-content .contact-top .title {
    font-size: 24px;
  }
}
.contact-content .contact-top p {
  margin-bottom: 30px;
}
.contact-content .contact-list .list-item {
  display: grid;
  align-items: center;
  grid-template-columns: 75px 1fr;
  grid-gap: 20px;
}
.contact-content .contact-list .list-item:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #DADFEC;
}
@media only screen and (max-width: 767px) {
  .contact-content .contact-list .list-item {
    grid-template-columns: 1fr;
  }
}
.contact-content .contact-list .list-item .icon {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  font-size: 18px;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  border: 1px solid #E0E5EB;
}
.contact-content .contact-list .list-item .content .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
.contact-content .contact-list .list-item .content p {
  margin-bottom: 0;
}
.contact-content .contact-list .list-item .content a {
  display: block;
}
.contact-content .contact-list .list-item .content span {
  display: block;
}
.contact-content .contact-list .list-item:hover .icon {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}

.contact-wrap {
  background-color: var(--ed-color-grey-1);
  padding: 60px;
  align-items: end;
}
@media only screen and (max-width: 767px) {
  .contact-wrap {
    padding: 40px 20px;
  }
}
.contact-wrap .section-heading .section-title {
  margin: 0;
}

.contact-img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 600/800;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid #E0E5EB;
  padding: 20px;
}
.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* !END:  Contact CSS */
/**----------------------------------------
START: Post Details CSS
----------------------------------------*/
.post-details-top-wrap {
  padding: 40px;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .post-details-top-wrap {
    padding: 40px 20px;
  }
}

.post-details-top .post-details-thumb {
  width: 100%;
  max-width: max(100%, 800px);
  aspect-ratio: 4/3;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  .post-details-top .post-details-thumb {
    max-width: 100%;
    aspect-ratio: 16/9;
  }
}
.post-details-top .post-details-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.post-details-top .post-details-thumb .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.post-details-top .post-details-thumb .video-btn a {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  font-size: 30px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-details-top .post-details-thumb .video-btn img {
  margin-bottom: 5px;
}
.post-details-top .post-details-thumb .video-btn .ripple {
  height: 100px;
  width: 100px;
}
.post-details-top .post-details-thumb .video-btn .ripple:before, .post-details-top .post-details-thumb .video-btn .ripple:after {
  height: 100px;
  width: 100px;
}
.post-details-top .post-meta {
  margin: 20px 0;
}

.post-details-content {
  padding-bottom: 16px;
  overflow-x: scroll;
}
.post-details-content .details-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .post-details-content .details-title {
    font-size: 24px;
  }
}
.post-details-content blockquote {
  background-color: var(--ed-color-grey-1);
  padding: 40px;
  border-left: 3px solid var(--ed-color-theme-primary);
  margin: 40px 0;
}
@media only screen and (max-width: 767px) {
  .post-details-content blockquote {
    padding: 30px 20px;
  }
}
.post-details-content blockquote p {
  font-family: var(--ed-ff-heading);
  color: var(--ed-color-heading-primary);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  font-style: italic;
}
.post-details-content blockquote .author {
  font-size: 20px;
  font-weight: 600;
  color: var(--ed-color-heading-primary);
  margin-bottom: 0;
  position: relative;
  padding-left: 50px;
}
.post-details-content blockquote .author:before {
  background-color: var(--ed-color-theme-primary);
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.post-details-content .details-list-wrap {
  margin-bottom: 40px;
}
.post-details-content .details-list-wrap .list-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}
.post-details-content .details-list-wrap .details-img {
  height: 450px;
}
@media only screen and (max-width: 767px) {
  .post-details-content .details-list-wrap .details-img {
    height: 350px;
  }
}
.post-details-content .details-list-wrap .details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.post-details-content .tag-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  margin: 50px 0;
  padding: 50px 0;
  border-top: 1px dashed #E0E5EB;
  padding-bottom: 0;
  margin-bottom: 0;
}
.post-details-content .tag-wrap .tags {
  display: flex;
  align-items: center;
}
.post-details-content .tag-wrap .tags .tag {
  color: var(--ed-color-heading-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}
.post-details-content .tag-wrap .tags ul {
  list-style: none;
  margin-left: 20px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.post-details-content .tag-wrap .tags ul li a {
  background-color: var(--ed-color-grey-1);
  font-size: 16px;
  font-weight: 400;
  color: var(--ed-color-text-body);
  padding: 8px 20px;
  border-radius: 100px;
}
.post-details-content .tag-wrap .tags ul li a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.post-details-content .tag-wrap .social-list-wrap {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.post-details-content .tag-wrap .social-list-wrap .share {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}
.post-details-content .tag-wrap .social-list-wrap .social-list {
  background-color: var(--ed-color-grey-1);
  padding: 5px 20px;
  list-style: none;
  border-radius: 100px;
}
.post-details-content .tag-wrap .social-list-wrap .social-list li {
  display: inline-flex;
}
.post-details-content .tag-wrap .social-list-wrap .social-list li:not(:last-of-type) {
  margin-right: 15px;
}
.post-details-content .tag-wrap .social-list-wrap .social-list li a {
  font-size: 16px;
  color: var(--ed-color-heading-primary);
  border-radius: 50%;
}
.post-details-content .tag-wrap .social-list-wrap .social-list li a:hover {
  color: var(--ed-color-theme-primary);
}
.post-details-content .post-details-post .head-title {
  color: var(--ed-color-heading-primary);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0;
}
.post-details-content .post-details-post .view-post {
  font-size: 16px;
  font-weight: 700;
  color: var(--ed-color-theme-primary);
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-transform: uppercase;
  line-height: 1;
}
.post-details-content .post-details-post .view-post i {
  transform: rotate(-45deg);
  margin-top: -1px;
}
.post-details-content table {
  border-collapse: collapse;
  border-color: var(--ed-color-theme-primary);
}

.post-comment-section {
  margin-top: 40px;
  padding: 40px;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .post-comment-section {
    padding: 30px 20px;
  }
}
.post-comment-section .title {
  font-size: 30px;
  font-weight: 600;
}
@media only screen and (max-width: 992px) {
  .post-comment-section .title {
    font-size: 28px;
  }
}
.post-comment-section p {
  margin-bottom: 30px;
}
.post-comment-section .post-comment-form-wrap .form-item {
  position: relative;
  margin-bottom: 24px;
}
.post-comment-section .post-comment-form-wrap .form-item .form-control {
  background-color: var(--ed-color-grey-1);
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
  padding: 13px 20px;
  border-radius: 0;
  width: 100%;
  border: none;
  border-radius: 6px;
}
.post-comment-section .post-comment-form-wrap .form-item .form-control::-webkit-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.post-comment-section .post-comment-form-wrap .form-item .form-control:-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.post-comment-section .post-comment-form-wrap .form-item .form-control::-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.post-comment-section .post-comment-form-wrap .form-item .form-control:-ms-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.post-comment-section .post-comment-form-wrap .form-item .form-control.is-invalid {
  background-image: none;
}
.post-comment-section .post-comment-form-wrap .form-item .form-control.is-invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.post-comment-section .post-comment-form-wrap .form-item .form-control.is-valid {
  background-image: none;
}
.post-comment-section .post-comment-form-wrap .form-item .form-control.is-valid + .icon {
  color: var(--bs-form-valid-color);
}
.post-comment-section .post-comment-form-wrap .form-item .icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.post-comment-section .post-comment-form-wrap .form-item.message-item .icon {
  top: 24px;
}
.post-comment-section .post-comment-form-wrap .post-comment-input-remeber {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 30px;
}
.post-comment-section .post-comment-form-wrap .post-comment-input-remeber input[type=checkbox] {
  border: 1px solid #E0E5EB;
}
.post-comment-section .post-comment-form-wrap .post-comment-input-remeber label {
  color: var(--ed-color-text-body);
}
.post-comment-section .post-comment-form-wrap .submit-btn .ed-primary-btn {
  font-weight: 600;
  border-radius: 5px;
}
.post-comment-section .post-comment-form-wrap .was-validated .form-control:invalid {
  background-image: none;
}
.post-comment-section .post-comment-form-wrap .was-validated .form-control:invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.post-comment-section .post-comment-form-wrap .was-validated .form-control:valid {
  background-image: none;
}
.post-comment-section .post-comment-form-wrap .was-validated .form-control:valid + .icon {
  color: var(--bs-form-valid-color);
}

.sidebar-widget {
  background-color: var(--ed-color-grey-1);
  padding: 40px 30px;
  border: 1px solid var(--ed-color-border-1);
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget {
    padding: 30px 20px;
  }
}
.sidebar-widget:not(:last-of-type) {
  margin-bottom: 50px;
}
.sidebar-widget .post-search-form {
  position: relative;
}
.sidebar-widget .post-search-form .form-control {
  padding: 14px 20px;
  padding-left: 30px;
  box-shadow: none;
  border-radius: 100px;
  border: 1px solid var(--ed-color-border-1);
}
.sidebar-widget .post-search-form .form-control.is-invalid {
  background-image: none;
}
.sidebar-widget .post-search-form .form-control.is-invalid + .search-btn {
  top: 35%;
}
.sidebar-widget .post-search-form .form-control.is-invalid + .search-btn i {
  color: var(--bs-form-invalid-color);
}
.sidebar-widget .post-search-form .form-control.is-valid {
  background-image: none;
}
.sidebar-widget .post-search-form .form-control.is-valid + .search-btn i {
  color: var(--bs-form-valid-color);
}
.sidebar-widget .post-search-form .search-btn {
  color: var(--ed-color-theme-primary);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.sidebar-widget .post-search-form.was-validated .form-control:invalid {
  background-image: none;
}
.sidebar-widget .post-search-form.was-validated .form-control:invalid + .search-btn {
  top: 35%;
}
.sidebar-widget .post-search-form.was-validated .form-control:invalid + .search-btn i {
  color: var(--bs-form-invalid-color);
}
.sidebar-widget .post-search-form.was-validated .form-control:valid {
  background-image: none;
}
.sidebar-widget .post-search-form.was-validated .form-control:valid + .search-btn i {
  color: var(--bs-form-valid-color);
}
.sidebar-widget .widget-title {
  font-size: 30px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 30px;
}
.sidebar-widget .category-list li {
  display: flex;
  align-items: center;
  font-family: var(--ed-ff-body);
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ed-color-border-1);
}
.sidebar-widget .category-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.sidebar-widget .category-list li:hover {
  color: var(--ed-color-theme-primary);
}
.sidebar-widget .category-list li i {
  color: var(--ed-color-theme-primary);
  padding-right: 10px;
}
.sidebar-widget .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  list-style: none;
}
.sidebar-widget .tags li:not(:last-of-type) {
  margin-right: 10px;
}
.sidebar-widget .tags li a {
  background-color: var(--ed-color-common-white);
  padding: 8px 18px;
  font-family: var(--ed-ff-body);
  font-size: 15px;
  font-weight: 400;
  border-radius: 100px;
}
.sidebar-widget .tags li a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.sidebar-widget .sidebar-post {
  background-color: var(--ed-color-grey-1);
  display: grid;
  align-items: center;
  grid-template-columns: 82px 1fr;
  grid-gap: 0px;
}
.sidebar-widget .sidebar-post:not(:last-of-type) {
  margin-bottom: 20px;
}
.sidebar-widget .sidebar-post .sidebar-img-wrap {
  width: 100%;
  max-width: max(100%, 120px);
  height: auto;
  aspect-ratio: 120/110;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-widget .sidebar-post .sidebar-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-widget .sidebar-post .post-content {
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content {
    padding-left: 10px;
  }
}
.sidebar-widget .sidebar-post .post-content .post-meta {
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex-wrap: wrap;
  row-gap: 5px;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content .post-meta {
    column-gap: 5px;
  }
}
.sidebar-widget .sidebar-post .post-content .post-meta li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  line-height: 1;
  font-size: 15px;
}
.sidebar-widget .sidebar-post .post-content .post-meta li:not(:last-of-type) {
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content .post-meta li {
    font-size: 13px;
  }
}
.sidebar-widget .sidebar-post .post-content .post-meta li i {
  font-size: 14px;
  color: var(--ed-color-theme-primary);
}
.sidebar-widget .sidebar-post .post-content .title {
  color: var(--ed-color-heading-primary);
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.4;
}
.sidebar-widget .sidebar-post .post-content .title a {
  background: linear-gradient(var(--ed-color-theme-primary) 0%, var(--ed-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-widget .sidebar-post .post-content .title a:hover {
  color: var(--ed-color-theme-primary);
  background-size: 100% 2px;
}

.avatar-placeholder {
  color: var(--ed-color-text-body) !important;
}

.sticky-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}

/* !END:  Post Details CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.about-img-wrap {
  max-width: 582px;
  width: 100%;
  height: 500px;
  position: relative;
}
@media (max-width: 1200px) {
  .about-img-wrap {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.about-img-wrap .about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 294px;
  width: 100%;
  height: 371px;
  padding: 5px;
  border: 2px solid #DDE1E7;
  border-radius: 0 60px 0 60px;
}
.about-img-wrap .about-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 60px 0 60px;
}
.about-img-wrap .about-img-1 .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-img-wrap .about-img-1 .video-btn a {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
}
.about-img-wrap .about-img-1 .video-btn a i {
  margin-top: 10px;
  line-height: 1;
}
.about-img-wrap .about-img-1 .video-btn a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.about-img-wrap .about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 260px;
  width: 100%;
  height: 352px;
}
.about-img-wrap .about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60px 0 60px 0;
}
.about-img-wrap .about-contact {
  background-color: var(--ed-color-theme-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  grid-gap: 15px;
  max-width: 294px;
  width: 100%;
  padding: 30px;
  border-radius: 0 60px 0 60px;
}
.about-img-wrap .about-contact .icon {
  background-color: var(--ed-color-common-white);
  font-size: 20px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ed-color-theme-primary);
}
.about-img-wrap .about-contact .icon i {
  transform: rotate(-45deg);
}
.about-img-wrap .about-contact .content span {
  color: var(--ed-color-common-white);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
}
.about-img-wrap .about-contact .content a {
  color: var(--ed-color-common-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.about-content .about-btn .ed-primary-btn {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  border: 1px solid #E0E5EB;
}
.about-content .about-btn .ed-primary-btn:before {
  background-color: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
}
.about-content .about-btn .ed-primary-btn:hover {
  color: var(--ed-color-common-white);
}

.about-counter-items {
  max-width: 610px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-bottom: 40px;
}
.about-counter-items .about-counter-item {
  display: grid;
  align-items: center;
  grid-template-columns: 80px 1fr;
  grid-gap: 20px;
}
.about-counter-items .about-counter-item .icon {
  background-color: var(--ed-color-common-white);
  width: 80px;
  height: 80px;
  border: 1px solid #E0E5EB;
  box-shadow: 0px 14px 51px 2px rgba(24, 50, 48, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-counter-items .about-counter-item .content .title {
  color: var(--ed-color-theme-primary);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.about-counter-items .about-counter-item .content .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
}
.about-counter-items .about-counter-item .content .title .number {
  margin-bottom: 2px;
}
.about-counter-items .about-counter-item .content p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.6;
  text-align: left;
}

.about-img-wrap-2 {
  max-width: 577px;
  width: 100%;
  height: 511px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .about-img-wrap-2 {
    margin: 0 auto;
  }
}
.about-img-wrap-2 .about-img-1 {
  max-width: 281px;
  width: 100%;
  height: 402px;
  border-radius: 0 60px 0 60px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.about-img-wrap-2 .about-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-wrap-2 .about-img-2 {
  max-width: 270px;
  width: 100%;
  height: 241px;
  border-radius: 60px 0 60px 0;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}
.about-img-wrap-2 .about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-wrap-2 .about-img-3 {
  max-width: 270px;
  width: 100%;
  height: 245px;
  border-radius: 60px 0 60px 0;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.about-img-wrap-2 .about-img-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-wrap-2 .about-text-box {
  background-color: var(--ed-color-common-white);
  box-shadow: 0px 4px 18px rgba(158, 165, 177, 0.23);
  border-radius: 10px;
  padding: 30px;
  position: absolute;
  bottom: 50px;
  left: 60px;
  z-index: 2;
}
@media only screen and (max-width: 992px) {
  .about-img-wrap-2 .about-text-box {
    left: 20px;
  }
}
.about-img-wrap-2 .about-text-box .about-text-box-title {
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-img-wrap-2 .about-text-box .about-thumb-list-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.about-img-wrap-2 .about-text-box .about-thumb-list-wrap .about-thumb-list {
  display: flex;
  align-items: center;
}
.about-img-wrap-2 .about-text-box .about-thumb-list-wrap .about-thumb-list li {
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.about-img-wrap-2 .about-text-box .about-thumb-list-wrap .about-thumb-list li:not(:last-of-type) {
  margin-right: -20px;
}
.about-img-wrap-2 .about-text-box .about-thumb-list-wrap .about-thumb-list li.number {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  font-weight: 600;
  text-align: center;
  font-size: 14px;
}
.about-img-wrap-2 .about-text-box .about-thumb-list-wrap p {
  color: var(--ed-color-heading-primary);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1;
}
.about-img-wrap-2 .about-text-box .about-thumb-list-wrap p span {
  color: var(--ed-color-theme-primary);
  font-weight: 700;
}

.about-section-3 {
  background-color: #F3F7FB;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right 100%;
  position: relative;
  z-index: 1;
}
.about-section-3 .shapes .shape {
  position: absolute;
  z-index: -1;
}
.about-section-3 .shapes .shape.shape-1 {
  top: 0;
  left: 0;
}
.about-section-3 .shapes .shape.shape-2 {
  bottom: 0;
  left: 50px;
}
.about-section-3 .shapes .shape.shape-3 {
  bottom: 0;
  right: 0;
}

.about-img-wrap-3 {
  max-width: 545px;
  width: 100%;
  height: 575px;
  position: relative;
  border-radius: 15px;
}
@media only screen and (max-width: 992px) {
  .about-img-wrap-3 {
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.about-img-wrap-3 .about-img {
  width: 100%;
  height: 575px;
  position: absolute;
  top: 0;
  left: 0;
}
.about-img-wrap-3 .about-img .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.about-img-wrap-3 .icon-box {
  background-color: var(--ed-color-common-white);
  height: 163px;
  width: 163px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #E0E5EB;
  padding: 30px;
  position: absolute;
  top: 65px;
  right: 0;
}
.about-img-wrap-3 .icon-box .icon {
  height: 105px;
  width: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #E0E5EB;
}

.faq-img-wrap.about-img-wrap-4 {
  max-width: 620px;
  height: 471px;
}
@media only screen and (max-width: 992px) {
  .faq-img-wrap.about-img-wrap-4 {
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.faq-img-wrap.about-img-wrap-4 .faq-img {
  height: 100%;
  max-width: 620px;
  width: 100%;
}
.faq-img-wrap.about-img-wrap-4 .faq-text-box {
  bottom: 50px;
  left: -100px;
}
@media (max-width: 1200px) {
  .faq-img-wrap.about-img-wrap-4 .faq-text-box {
    left: 0;
  }
}

.about-content-4 {
  margin-left: 20px;
}
@media (max-width: 1200px) {
  .about-content-4 {
    margin-left: 0;
  }
}
.about-content-4 .section-heading .section-title span {
  color: var(--ed-color-theme-primary);
}
.about-content-4 .about-items {
  max-width: 590px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-bottom: 40px;
}
.about-content-4 .about-items .about-item {
  display: flex;
  column-gap: 20px;
}
.about-content-4 .about-items .about-item .icon {
  color: var(--ed-color-theme-primary);
  font-size: 20px;
}
.about-content-4 .about-items .about-item .content .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-img-wrap-4 {
  max-width: 620px;
  height: 471px;
}
@media only screen and (max-width: 992px) {
  .about-img-wrap-4 {
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.about-img-wrap-4 .about-img {
  height: 100%;
  max-width: 620px;
  width: 100%;
}

.img-wrap {
  width: 100%;
  height: auto;
  text-align: center;
}

.img-wrap-2 {
  width: 90%;
  height: auto;
  text-align: center;
}

.about-feature {
  background-color: var(--ed-color-grey-1);
}

.about-feature-card {
  position: relative;
  padding-top: 60px;
}
.about-feature-card .icon {
  background-color: var(--ed-color-common-white);
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #E1E9F0;
  box-shadow: 0px 18px 38px rgba(47, 74, 101, 0.11);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.about-feature-card .icon img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.about-feature-card .content {
  background-color: var(--ed-color-common-white);
  padding: 0 20px 30px 20px;
  padding-top: 100px;
  text-align: center;
  border: 1px solid #E1E9F0;
  border-radius: 15px;
}
.about-feature-card .content .title {
  font-size: 22px;
}
.about-feature-card .content p {
  margin-bottom: 0;
}
.about-feature-card:hover .icon {
  background-color: var(--ed-color-theme-primary);
}
.about-feature-card:hover .icon img {
  filter: brightness(0) invert(1);
}

.about-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 30px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--ed-color-border-1);
}
.about-items .about-item {
  display: grid;
  align-items: center;
  grid-template-columns: 60px 1fr;
  grid-gap: 15px;
}
.about-items .about-item .icon {
  background-color: var(--ed-color-common-white);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.about-items .about-item .title {
  color: var(--ed-color-heading-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

.xm-img-wrap {
  width: 100%;
  max-width: max(100%, 290px);
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.xm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-instructors, .our-leadership-team {
  background-color: var(--ed-color-grey-1);
}

.instructors-carousel {
  padding-bottom: 60px;
}
.instructors-carousel .swiper-navigation {
  margin-top: 20px !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 12px;
}
.instructors-carousel .swiper-navigation .swiper-nav {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  border: 1px solid var(--ed-color-theme-primary);
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.instructors-carousel .swiper-navigation .swiper-nav:hover {
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 65%);
  color: var(--ed-color-common-white);
}

.jarallax-img {
  background-position: center;
}

/* !END:  About CSS */
/**----------------------------------------
START: Promo CSS
----------------------------------------*/
.promo-section {
  background-color: #191A1F;
  position: relative;
  z-index: 1;
}
.promo-section .bg-shape-1 {
  background: radial-gradient(80.61% 80.61% at 50% 19.39%, rgba(7, 166, 152, 0.2) 0%, rgba(3, 20, 24, 0) 85.76%);
  filter: blur(125px);
  width: 1784px;
  height: 1541px;
  position: absolute;
  top: -60%;
  left: -60%;
  z-index: -1;
}
.promo-section .bg-shape-2 {
  background: radial-gradient(80.61% 80.61% at 50% 19.39%, rgba(7, 166, 152, 0.2) 0%, rgba(3, 20, 24, 0) 85.76%);
  filter: blur(125px);
  width: 1784px;
  height: 1541px;
  position: absolute;
  bottom: -140%;
  right: -60%;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .promo-section .shapes {
    display: none;
  }
}
.promo-section .shapes .shape {
  position: absolute;
  z-index: -1;
}
.promo-section .shapes .shape.shape-1 {
  top: 100px;
  left: 70px;
}
.promo-section .shapes .shape.shape-2 {
  top: 50px;
  right: 0;
}

.promo-heading {
  margin-bottom: 100px;
}
@media only screen and (max-width: 992px) {
  .promo-heading {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .promo-heading {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .promo-wrap {
    margin-bottom: -50px;
  }
}
.promo-wrap > div {
  padding: 0;
}

.promo-item {
  text-align: center;
  border-right: 1px dashed rgba(255, 255, 255, 0.17);
}
@media only screen and (max-width: 992px) {
  .promo-item {
    border: none;
  }
}
@media only screen and (max-width: 767px) {
  .promo-item {
    margin-bottom: 50px;
  }
}
.promo-item .promo-thumb {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 30px;
}
.promo-item .promo-thumb .icon {
  background-color: var(--ed-color-theme-primary);
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 4px solid var(--ed-color-heading-primary);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-item .promo-thumb .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-item .title {
  font-size: 22px;
  margin-bottom: 20px;
}
.promo-item p {
  margin-bottom: 0;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .promo-item p br {
    display: none;
  }
}
.promo-item.item-3 {
  border: none;
}

.promo-item-2 {
  text-align: center;
  border: 1px solid #E0E5EB;
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
}
@media (max-width: 1200px) {
  .promo-item-2 {
    padding: 30px 20px;
  }
}
.promo-item-2 .number {
  color: rgba(7, 166, 152, 0.15);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 40px;
  left: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
  .promo-item-2 .number {
    font-size: 30px;
    top: 30px;
    left: 20px;
  }
}
.promo-item-2 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  border: 1px solid #E0E5EB;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 25px;
}
.promo-item-2 .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .promo-item-2 .title {
    font-size: 18px;
  }
}
.promo-item-2:hover .number {
  color: var(--ed-color-theme-primary);
}

.promo-section-3 {
  background-color: #162726;
}

.promo-item-3 {
  display: grid;
  align-items: center;
  grid-template-columns: 75px 1fr;
  grid-gap: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .promo-item-3 {
    grid-template-columns: 1fr;
  }
}
.promo-item-3 .icon {
  background-color: rgba(7, 166, 152, 0.1);
  height: 75px;
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.promo-item-3 .content .title {
  font-size: 22px;
  font-weight: 600;
}
.promo-item-3 .content p {
  margin-bottom: 0;
}
.promo-item-3:hover .icon {
  background-color: var(--ed-color-theme-primary);
}

/* !END:  Promo CSS */
/**----------------------------------------
START: Course CSS
----------------------------------------*/
.course-section {
  position: relative;
  z-index: 1;
}
.course-section .shapes .shape {
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .course-section .shapes .shape {
    display: none;
  }
}
.course-section .shapes .shape.shape-1 {
  top: 133px;
  right: 0;
}
.course-section .shapes .shape.shape-2 {
  bottom: 200px;
  left: 0;
}

.feature-course {
  background-color: var(--ed-color-grey-1);
}

.course-item {
  background-color: var(--ed-color-common-white);
  padding-top: 30px;
  border: 1px solid #E0E5EB;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100%;
}
.course-item .course-thumb-wrap {
  padding: 0 30px;
}
@media only screen and (max-width: 992px) {
  .course-item .course-thumb-wrap {
    padding: 0 20px;
  }
}
.course-item .course-thumb-wrap .course-thumb {
  width: 100%;
  max-width: max(100%, 800px);
  aspect-ratio: 4/3;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
@media only screen and (max-width: 767.98px) {
  .course-item .course-thumb-wrap .course-thumb {
    max-width: 100%;
    aspect-ratio: 16/9;
  }
}
.course-item .course-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}
.course-item .course-content {
  padding: 30px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E0E5EB;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .course-item .course-content {
    padding: 30px 20px;
  }
}
.course-item .course-content .offer {
  background-color: rgba(7, 166, 152, 0.1);
  color: var(--ed-color-theme-primary);
  font-size: 14px;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}
.course-item .course-content .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  flex-grow: 1;
}
.course-item .course-content .course-list {
  margin-bottom: 20px;
}
.course-item .course-content .course-list li {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  column-gap: 7px;
}
.course-item .course-content .course-list li:not(:last-of-type) {
  margin-right: 20px;
}
.course-item .course-content .course-list li i {
  font-size: 14px;
}
.course-item .course-content .course-author-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.course-item .course-content .course-author-box .course-author {
  display: grid;
  align-items: center;
  grid-template-columns: 45px 1fr;
  grid-gap: 10px;
}
.course-item .course-content .course-author-box .course-author .author-img {
  width: 100%;
  max-width: 45px;
  height: auto;
  aspect-ratio: 45/45;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-item .course-content .course-author-box .course-author .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.course-item .course-content .course-author-box .course-author .author-info .name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
.course-item .course-content .course-author-box .course-author .author-info span {
  color: var(--ed-color-theme-primary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}
.course-item .course-content .course-author-box .course-review li {
  display: inline-flex;
}
.course-item .course-content .course-author-box .course-review li i {
  color: var(--ed-color-theme-primary);
}
.course-item .course-content .course-author-box .course-review li.point {
  margin-left: 5px;
}
.course-item .bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px 20px 30px;
}
.course-item .bottom-content .price {
  color: var(--ed-color-heading-primary);
  font-size: 20px;
  font-weight: 700;
}
.course-item .bottom-content .offer {
  font-size: 16px;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 100px;
  display: inline-block;
}
.course-item .bottom-content .offer.free {
  background-color: var(--ed-color-theme-primary-rgba-25);
  color: var(--ed-color-theme-primary);
  border: 1px solid var(--ed-color-theme-primary);
}
.course-item .bottom-content .offer.new {
  background-color: rgba(115, 39, 233, 0.25);
  color: rgb(115, 39, 233);
  border: 1px solid rgb(115, 39, 233);
}
.course-item .bottom-content .offer::first-letter {
  text-transform: capitalize;
}
.course-item .bottom-content .course-btn {
  color: var(--ed-color-heading-primary);
  font-size: 16px;
  font-weight: 600;
  padding: 5px 20px;
  border: 1px solid #E0E5EB;
  border-radius: 100px;
}
.course-item .bottom-content .course-btn:hover {
  border: 1px solid var(--ed-color-theme-primary);
}
.course-item:hover .course-thumb img {
  transform: scale(1.03);
}

.course-item-2 {
  padding: 0;
  display: grid;
  align-items: center;
  grid-template-columns: 236px 1fr;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .course-item-2 {
    grid-template-columns: 300px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .course-item-2 {
    grid-template-columns: 1fr;
  }
}
.course-item-2 .course-thumb-wrap {
  padding: 0;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .course-item-2 .course-thumb-wrap {
    height: 350px;
  }
}
.course-item-2 .course-thumb-wrap .course-thumb {
  height: 100%;
  border-radius: 0;
}

.feature-course-2 {
  background-color: #1A2226;
  position: relative;
  z-index: 1;
}
.feature-course-2 .shapes .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.feature-course-2 .shapes .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.course-item.dark-item {
  background-color: #222A2D;
  border: 1px solid #2F373A;
}
.course-item.dark-item .course-content {
  border-bottom: 1px solid #2F373A;
}
.course-item.dark-item .course-content .title {
  color: var(--ed-color-common-white);
}
.course-item.dark-item .course-content .course-list li i {
  color: var(--ed-color-common-white);
}
.course-item.dark-item .course-content .course-author-box .course-author .author-info .name {
  color: var(--ed-color-common-white);
}
.course-item.dark-item .bottom-content .price {
  color: var(--ed-color-common-white);
}
.course-item.dark-item .bottom-content .course-btn {
  color: var(--ed-color-common-white);
  border: 1px solid #2F373A;
}
.course-item.dark-item .bottom-content .course-btn:hover {
  border: 1px solid var(--ed-color-theme-primary);
}
.course-item.dark-item.dark-item-2 {
  background: #162726;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 7px 48px rgba(0, 0, 0, 0.15);
}

.course-nav {
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media (max-width: 1200px) {
  .course-nav {
    justify-content: center;
  }
}
.course-nav .nav-item .nav-link {
  background-color: var(--ed-color-common-white);
  padding: 10px 30px;
  border-radius: 100px;
  border: none;
  color: var(--ed-color-heading-primary);
}
.course-nav .nav-item .nav-link.active {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  border: none;
}

.course-tab-content .tab-pane.active.show > div {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fade-in-bottom;
  animation-name: fade-in-bottom;
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-fill-mode: both;
  transition: all 0.5s ease-in-out;
  transition-duration: 1000ms;
  animation-delay: 0.1s;
}

.course-top .swiper-arrow {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.course-top .swiper-arrow .swiper-nav {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E0E5EB;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.course-top .swiper-arrow .swiper-nav:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  border: 1px solid var(--ed-color-theme-primary);
}

.course-feature-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.course-feature-item .course-feature-img {
  height: 274px;
  width: 100%;
}
.course-feature-item .course-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.course-feature-item .content {
  background-color: var(--ed-color-common-white);
  width: 90%;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 20px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.course-feature-item .content .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.course-feature-item .content span {
  font-size: 14px;
  font-weight: 500;
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.course-feature-item:hover .content span {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.course-details-content {
  border: 1px solid #E0E5EB;
  padding: 30px 0;
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .course-details-content {
    margin-bottom: 24px;
  }
}
.course-details-content .course-details-img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  padding-top: 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .course-details-content .course-details-img {
    padding: 0 20px;
    margin-bottom: 30px;
  }
}
.course-details-content .course-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.course-details-content .course-details-img .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.course-details-content .course-details-img .video-btn a {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  font-size: 30px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-details-content .course-details-img .video-btn img {
  margin-bottom: 5px;
}
.course-details-content .course-details-img .video-btn .ripple {
  height: 100px;
  width: 100px;
}
.course-details-content .course-details-img .video-btn .ripple:before, .course-details-content .course-details-img .video-btn .ripple:after {
  height: 100px;
  width: 100px;
}
.course-details-content .details-inner {
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .course-details-content .details-inner {
    padding: 0 20px;
  }
}
.course-details-content .details-meta {
  margin-bottom: 20px;
}
.course-details-content .details-meta li {
  background-color: var(--ed-color-theme-primary);
  display: inline-flex;
  color: var(--ed-color-common-white);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: 100px;
  line-height: 1;
}
.course-details-content .details-meta li:not(:last-of-type) {
  margin-right: 10px;
}
.course-details-content .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .course-details-content .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .course-details-content .title {
    font-size: 24px;
  }
}
.course-details-content .course-details-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
}
.course-details-content .course-details-list li {
  font-size: 16px;
  font-weight: 500;
  color: var(--ed-color-heading-primary);
  list-style: none;
  position: relative;
  line-height: 1;
}
.course-details-content .course-details-list li:not(:last-of-type) {
  margin-right: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  .course-details-content .course-details-list li:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.course-details-content .course-details-list li:not(:last-of-type):before {
  background-color: #E0E5EB;
  content: "";
  width: 1px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .course-details-content .course-details-list li:not(:last-of-type):before {
    display: none;
  }
}
.course-details-content .course-details-list li i {
  color: var(--ed-color-theme-primary);
  margin-right: 10px;
}
.course-details-content .course-details-list li:not(:last-of-type) {
  margin-right: 20px;
}
.course-details-content .course-details-list li img {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-right: 10px;
}
.course-details-content .course-details-list li span {
  font-weight: 400;
  color: var(--ed-color-theme-primary);
}
.course-details-content .course-details-list li .course-rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
}
.course-details-content .course-details-list li .course-rating-wrapper .star-rating {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #ccc;
  white-space: nowrap;
}
.course-details-content .course-details-list li .course-rating-wrapper .star-rating .star-fill, .course-details-content .course-details-list li .course-rating-wrapper .star-rating .star-empty {
  display: flex;
  gap: 1px;
}
.course-details-content .course-details-list li .course-rating-wrapper .star-rating .star-fill i, .course-details-content .course-details-list li .course-rating-wrapper .star-rating .star-empty i {
  margin-right: 0px !important;
}
.course-details-content .course-details-list li .course-rating-wrapper .star-rating .star-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: var(--ed-color-theme-primary);
  white-space: nowrap;
  width: 0;
}
.course-details-content .course-details-list li .course-rating-wrapper .star-rating .star-fill i {
  margin-right: 0px !important;
}
.course-details-content .course-details-list li .course-rating-wrapper .rating-value {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ed-color-text-body);
}

.course-details-tab {
  margin-top: 40px;
}
.course-details-tab .nav-tabs {
  background-color: var(--ed-color-grey-1);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .nav-tabs {
    flex-direction: column;
    border: none;
  }
}
.course-details-tab .nav-tabs .nav-item {
  display: flex;
  flex: 1 1 0%;
  text-align: center;
  border: none;
}
.course-details-tab .nav-tabs .nav-item:not(:last-of-type) {
  border-right: 1px solid #E0E5EB;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .nav-tabs .nav-item {
    width: 100%;
    border: none;
    border-bottom: 1px solid #E0E5EB;
  }
}
@media only screen and (max-width: 767px) {
  .course-details-tab .nav-tabs .nav-item {
    border-bottom: 1px solid #E0E5EB;
  }
}
.course-details-tab .nav-tabs .nav-item .nav-link {
  color: var(--ed-color-text-body);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  font-size: 16px;
  border: none;
  border-radius: 0;
  padding: 17px 20px;
  position: relative;
  border-top: 1px solid #E0E5EB;
  border-bottom: 1px solid #E0E5EB;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .nav-tabs .nav-item .nav-link {
    border: none;
  }
}
.course-details-tab .nav-tabs .nav-item .nav-link:before {
  background-color: var(--ed-color-theme-primary);
  content: "";
  width: 0;
  height: 3px;
  position: absolute;
  top: -1.5px;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.course-details-tab .nav-tabs .nav-item .nav-link.active {
  background-color: var(--ed-color-grey-1);
  color: var(--ed-color-theme-primary);
}
.course-details-tab .nav-tabs .nav-item .nav-link.active:before {
  width: 100%;
}
.course-details-tab .tab-content .tab-overview {
  padding: 30px;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .tab-content .tab-overview {
    padding: 30px 20px 0 20px;
  }
}
.course-details-tab .tab-content .tab-overview h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}
.course-details-tab .tab-content .tab-overview h3 + ul {
  margin-bottom: 4px;
}
.course-details-tab .tab-content .tab-overview h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.course-details-tab .tab-content .tab-overview h4 + ul {
  margin-bottom: 0px;
}
.course-details-tab .tab-content .tab-overview p {
  margin-bottom: 30px;
}
.course-details-tab .tab-content .tab-overview ul {
  margin: 0px 0px 16px;
  margin-inline-start: 1.5rem !important;
}
.course-details-tab .tab-content .curriculam-area {
  padding: 30px;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .tab-content .curriculam-area {
    padding: 30px 20px 0 20px;
  }
}
.course-details-tab .tab-content .curriculam-area .accordion-item {
  border: 1px solid #E0E5EB;
  border-radius: 10px;
}
.course-details-tab .tab-content .curriculam-area .accordion-item:not(:last-of-type) {
  margin-bottom: 20px;
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-button {
  color: var(--ed-color-heading-primary);
  font-size: 20px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .tab-content .curriculam-area .accordion-item .accordion-button {
    font-size: 18px;
  }
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--ed-color-grey-1);
  border-radius: 10px 10px 0 0;
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body {
  padding: 30px;
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list {
  list-style: none;
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list li {
  font-size: 16px;
  color: var(--ed-color-heading-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list li {
    font-size: 14px;
  }
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list li:not(:last-of-type) {
    padding-bottom: 15px;
    border-bottom: 1px dashed #CED4E2;
  }
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list li span:nth-child(1) i {
  color: var(--ed-color-theme-primary);
  width: 30px;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list li span:nth-child(1) i {
    width: 25px;
  }
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list li span:nth-child(2) i {
  margin-left: 10px;
}
.course-details-tab .tab-content .instructor-wrap {
  display: grid;
  align-items: start;
  grid-template-columns: 320px 1fr;
  padding: 30px;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .tab-content .instructor-wrap {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}
.course-details-tab .tab-content .instructor-wrap .instructor-thumb {
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 300/350;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .tab-content .instructor-wrap .instructor-thumb {
    max-width: 100%;
  }
}
.course-details-tab .tab-content .instructor-wrap .instructor-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.course-details-tab .tab-content .instructor-wrap .instructor-content-wrap {
  display: flex;
  flex-direction: column;
}
.course-details-tab .tab-content .instructor-wrap .instructor-content-wrap .instructor-content .title {
  font-size: 22px;
  margin-bottom: 0;
}
.course-details-tab .tab-content .instructor-wrap .instructor-content-wrap .instructor-content span {
  color: var(--ed-color-theme-primary);
  font-weight: 400;
  display: block;
  margin-top: 5px;
}
.course-details-tab .tab-content .instructor-wrap .instructor-content-wrap .instructor-content .instructor-social-list {
  margin-top: 10px;
  margin-bottom: 20px;
}
.course-details-tab .tab-content .instructor-wrap .instructor-content-wrap .instructor-content .instructor-social-list li {
  display: inline-flex;
}
.course-details-tab .tab-content .instructor-wrap .instructor-content-wrap .instructor-content .instructor-social-list li:not(:last-of-type) {
  margin-right: 5px;
}
.course-details-tab .tab-content .instructor-wrap .instructor-content-wrap .instructor-content .instructor-social-list li a {
  color: var(--ed-color-theme-primary);
  height: 40px;
  width: 40px;
  border: 1px solid #E0E5EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-details-tab .tab-content .instructor-wrap .instructor-content-wrap .instructor-content .instructor-social-list li a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  border: 1px solid var(--ed-color-theme-primary);
}
.course-details-tab .tab-content .instructor-wrap .instructor-content-wrap .instructor-content p {
  font-size: 17px;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .course-details-tab .tab-content .instructor-wrap .instructor-content-wrap .instructor-content p br {
    display: none;
  }
}
.course-details-tab .tab-content .reviews-wrap {
  padding: 30px;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .tab-content .reviews-wrap {
    padding: 30px 20px 0 20px;
  }
}
.course-details-tab .tab-content .reviews-wrap .reviews-list .review-item {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  padding: 30px;
  border: 1px solid var(--ed-color-border-1);
  border-radius: 15px;
}
.course-details-tab .tab-content .reviews-wrap .reviews-list .review-item:not(:last-of-type) {
  margin-bottom: 30px;
}
.course-details-tab .tab-content .reviews-wrap .reviews-list .review-item img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}
.course-details-tab .tab-content .reviews-wrap .reviews-list .review-item .content .content-top {
  display: flex;
  align-items: center;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.course-details-tab .tab-content .reviews-wrap .reviews-list .review-item .content .content-top .name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.course-details-tab .tab-content .reviews-wrap .reviews-list .review-item .content .content-top .name span {
  color: var(--ed-color-text-body);
  font-size: 15px;
  display: block;
  margin-top: 7px;
}
.course-details-tab .tab-content .reviews-wrap .reviews-list .review-item .content .content-top .review-rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
}
.course-details-tab .tab-content .reviews-wrap .reviews-list .review-item .content .content-top .review-rating-wrapper .star-rating {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #ccc;
  white-space: nowrap;
}
.course-details-tab .tab-content .reviews-wrap .reviews-list .review-item .content .content-top .review-rating-wrapper .star-rating .star-fill, .course-details-tab .tab-content .reviews-wrap .reviews-list .review-item .content .content-top .review-rating-wrapper .star-rating .star-empty {
  display: flex;
  gap: 1px;
}
.course-details-tab .tab-content .reviews-wrap .reviews-list .review-item .content .content-top .review-rating-wrapper .star-rating .star-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #FFC92E;
  white-space: nowrap;
  width: 0;
}
.course-details-tab .tab-content .reviews-wrap .reviews-list .review-item .content .content-top .review-rating-wrapper .rating-value {
  display: none;
}
.course-details-tab .tab-content .reviews-wrap .reviews-list .review-item .content p {
  margin-bottom: 0;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section {
  margin-top: 40px;
  padding: 40px;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .tab-content .reviews-wrap .course-review-section {
    padding: 30px 20px;
  }
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .title {
  font-size: 30px;
  font-weight: 600;
}
@media only screen and (max-width: 992px) {
  .course-details-tab .tab-content .reviews-wrap .course-review-section .title {
    font-size: 28px;
  }
}
.course-details-tab .tab-content .reviews-wrap .course-review-section p {
  margin-bottom: 20px;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item {
  position: relative;
  margin-bottom: 24px;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item .form-label {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ed-color-heading-primary);
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item .vertical-rating {
  display: flex;
  align-items: flex-start;
  gap: 1px;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item .vertical-rating i {
  font-size: 1rem;
  color: #FFC92E;
  cursor: pointer;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item .form-control {
  background-color: transparent;
  border: 1px solid #E0E5EB;
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  padding: 13px 20px;
  width: 100%;
  border-radius: 6px;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item .form-control::-webkit-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item .form-control:-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item .form-control::-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item .form-control:-ms-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item .form-control.is-invalid {
  background-image: none;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item .form-control.is-invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item .form-control.is-valid {
  background-image: none;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item .form-control.is-valid + .icon {
  color: var(--bs-form-valid-color);
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item .icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .form-item.message-item .icon {
  top: 24px;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .submit-btn .ed-primary-btn {
  font-weight: 600;
  border-radius: 5px;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .was-validated .form-control:invalid {
  background-image: none;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .was-validated .form-control:invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .was-validated .form-control:valid {
  background-image: none;
}
.course-details-tab .tab-content .reviews-wrap .course-review-section .course-review-form-wrap .was-validated .form-control:valid + .icon {
  color: var(--bs-form-valid-color);
}
.course-details-tab .tab-content .inquiries-wrap {
  padding: 30px;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .tab-content .inquiries-wrap {
    padding: 30px 20px 0 20px;
  }
}
.course-details-tab .tab-content .inquiries-wrap .inquiries-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 12;
}
.course-details-tab .tab-content .inquiries-wrap .inquiries-list .inquiry-question,
.course-details-tab .tab-content .inquiries-wrap .inquiries-list .inquiry-answer {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  padding: 16px;
  border: 1px solid var(--ed-color-border-1);
  border-radius: 15px;
}
.course-details-tab .tab-content .inquiries-wrap .inquiries-list .inquiry-question:not(:last-of-type),
.course-details-tab .tab-content .inquiries-wrap .inquiries-list .inquiry-answer:not(:last-of-type) {
  margin-bottom: 20px;
}
.course-details-tab .tab-content .inquiries-wrap .inquiries-list .inquiry-question .inquiry-date,
.course-details-tab .tab-content .inquiries-wrap .inquiries-list .inquiry-answer .inquiry-date {
  font-weight: 500;
  opacity: 0.7;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}
.course-details-tab .tab-content .inquiries-wrap .inquiries-list .inquiry-question .inquiry-text,
.course-details-tab .tab-content .inquiries-wrap .inquiries-list .inquiry-answer .inquiry-text {
  white-space: pre-wrap;
}
.course-details-tab .tab-content .inquiries-wrap .inquiries-list .inquiry-question {
  align-self: flex-end;
  background-color: #d1e7dd;
  color: #0f5132;
  border-bottom-right-radius: 0;
}
.course-details-tab .tab-content .inquiries-wrap .inquiries-list .inquiry-question P {
  color: #0f5132;
}
.course-details-tab .tab-content .inquiries-wrap .inquiries-list .inquiry-answer {
  align-self: flex-start;
  background-color: #f8d7da;
  color: #842029;
  border-bottom-left-radius: 0;
}
.course-details-tab .tab-content .inquiries-wrap .inquiries-list .inquiry-answer P {
  color: #842029;
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section {
  margin-top: 40px;
  padding: 40px;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section {
    padding: 30px 20px;
  }
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .title {
  font-size: 30px;
  font-weight: 600;
}
@media only screen and (max-width: 992px) {
  .course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .title {
    font-size: 28px;
  }
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section p {
  margin-bottom: 20px;
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .form-item {
  position: relative;
  margin-bottom: 24px;
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .form-item .form-control {
  background-color: transparent;
  border: 1px solid #E0E5EB;
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  padding: 13px 20px;
  width: 100%;
  border-radius: 6px;
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .form-item .form-control::-webkit-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .form-item .form-control:-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .form-item .form-control::-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .form-item .form-control:-ms-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .form-item .form-control.is-invalid {
  background-image: none;
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .form-item .form-control.is-invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .form-item .form-control.is-valid {
  background-image: none;
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .form-item .form-control.is-valid + .icon {
  color: var(--bs-form-valid-color);
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .form-item .icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .form-item.inquiry-item .icon {
  top: 24px;
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .submit-btn .ed-primary-btn {
  font-weight: 600;
  border-radius: 5px;
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .was-validated .form-control:invalid {
  background-image: none;
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .was-validated .form-control:invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .was-validated .form-control:valid {
  background-image: none;
}
.course-details-tab .tab-content .inquiries-wrap .course-inquiry-form-section .course-inquiry-form-wrap .was-validated .form-control:valid + .icon {
  color: var(--bs-form-valid-color);
}

.course-sidebar {
  padding: 30px;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}
.course-sidebar .course-dates {
  margin-bottom: 25px;
  border-bottom: 1px dashed #CED4E2;
}
.course-sidebar .course-dates h4 {
  margin-bottom: 8px;
  padding-bottom: 10px;
  position: relative;
  color: var(--ed-color-common-black);
}
.course-sidebar .course-dates h4:before {
  background: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
  content: "";
  width: 150px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.course-sidebar .course-dates h4::first-letter {
  text-transform: uppercase;
}
.course-sidebar .course-dates .form-check-input[type=radio] {
  border: 2px solid var(--ed-color-theme-primary);
  background-color: transparent;
}
.course-sidebar .course-dates .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem var(--ed-color-theme-primary-rgba-25);
  border-color: var(--ed-color-theme-primary);
}
.course-sidebar .course-dates .form-check-input:checked[type=radio] {
  background-image: "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e";
}
.course-sidebar .course-dates .form-check-input:checked {
  border-color: var(--ed-color-theme-primary);
  background-color: var(--ed-color-theme-primary);
}
.course-sidebar .course-dates .form-check-label {
  font-weight: 600;
  color: var(--ed-color-heading-primary);
}
.course-sidebar:not(:last-of-type) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .course-sidebar {
    padding: 30px 20px;
  }
}
.course-sidebar.price-box .price {
  color: var(--ed-color-heading-primary);
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 25px;
}
.course-sidebar.price-box .price span {
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.course-sidebar.price-box .price span.new {
  background-color: rgba(115, 39, 233, 0.25);
  color: rgb(115, 39, 233);
  border: 1px solid rgb(115, 39, 233);
}
.course-sidebar.price-box .price span.free {
  background-color: var(--ed-color-theme-primary-rgba-25);
  color: var(--ed-color-theme-primary);
  border: 1px solid var(--ed-color-theme-primary);
}
.course-sidebar.price-box .ed-primary-btn {
  width: 100%;
  justify-content: center;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
}
.course-sidebar.price-box .ed-primary-btn.buy-btn {
  background-color: transparent;
  color: var(--ed-color-heading-primary);
  border: 1px solid var(--ed-color-theme-primary);
  margin-top: 10px;
}
.course-sidebar.price-box .ed-primary-btn.buy-btn:before {
  background-color: var(--ed-color-theme-primary);
}
.course-sidebar.price-box .ed-primary-btn.buy-btn:hover {
  color: var(--ed-color-common-white);
}
.course-sidebar .sidebar-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: capitalize;
}
.course-sidebar .course-sidebar-list {
  list-style: none;
}
.course-sidebar .course-sidebar-list li {
  color: #162726;
  font-size: 16px;
  font-weight: 500;
}
.course-sidebar .course-sidebar-list li span {
  color: var(--ed-color-text-body);
  margin-left: 5px;
}
.course-sidebar .course-sidebar-list li i {
  color: var(--ed-color-theme-primary);
  width: 25px;
}
.course-sidebar .course-sidebar-list li:nth-child(1) {
  padding-top: 15px;
  border-top: 1px dashed #CED4E2;
}
.course-sidebar .course-sidebar-list li:not(:last-of-type) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #CED4E2;
}
.course-sidebar .share-btn {
  margin-top: 30px;
}
.course-sidebar .share-btn .ed-primary-btn {
  background-color: var(--ed-color-grey-1);
  width: 100%;
  justify-content: center;
  color: var(--ed-color-theme-primary);
  border-radius: 5px;
  font-weight: 600;
}
.course-sidebar .share-btn .ed-primary-btn i {
  font-size: 18px;
  margin-left: 0;
  margin-right: 10px;
}

.course-rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
}
.course-rating-wrapper .star-rating {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #ccc;
  white-space: nowrap;
}
.course-rating-wrapper .star-rating .star-fill, .course-rating-wrapper .star-rating .star-empty {
  display: flex;
  gap: 1px;
}
.course-rating-wrapper .star-rating .star-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: var(--ed-color-theme-primary);
  white-space: nowrap;
  width: 0;
}
.course-rating-wrapper .rating-value {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ed-color-text-body);
}

.youtube-container {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: 12px;
}
.youtube-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--ed-color-common-white);
}
.youtube-container .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.youtube-container .video-btn a {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  height: 70px;
  width: 70px;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 576px) {
  .youtube-container .video-btn a {
    height: 100px;
    width: 100px;
    font-size: 30px;
  }
}
.youtube-container .video-btn a .ripple {
  height: 70px;
  width: 70px;
}
@media screen and (min-width: 576px) {
  .youtube-container .video-btn a .ripple {
    height: 100px;
    width: 100px;
  }
}
.youtube-container .video-btn a .ripple:before, .youtube-container .video-btn a .ripple:after {
  height: 70px;
  width: 70px;
}
@media screen and (min-width: 576px) {
  .youtube-container .video-btn a .ripple:before, .youtube-container .video-btn a .ripple:after {
    height: 100px;
    width: 100px;
  }
}

.course-search-form {
  position: relative;
}
.course-search-form .form-control {
  padding: 14px 20px;
  padding-left: 30px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-radius: 100px;
}
.course-search-form .form-control.is-invalid {
  background-image: none;
}
.course-search-form .form-control.is-invalid + .ed-primary-btn {
  top: 35%;
}
.course-search-form .form-control.is-invalid + .ed-primary-btn + .icon {
  top: 35%;
  color: var(--bs-form-invalid-color);
}
.course-search-form .form-control.is-invalid + .ed-primary-btn + .icon + div.invalid-feedback {
  color: var(--ed-color-common-white);
}
.course-search-form .form-control.is-valid {
  background-image: none;
}
.course-search-form .form-control.is-valid + .ed-primary-btn + .icon {
  color: var(--bs-form-valid-color);
}
.course-search-form .search-btn {
  color: var(--ed-color-theme-primary);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.course-search-form.was-validated .form-control:invalid {
  background-image: none;
}
.course-search-form.was-validated .form-control:invalid + .ed-primary-btn {
  top: 35%;
}
.course-search-form.was-validated .form-control:invalid + .ed-primary-btn + .icon {
  top: 35%;
  color: var(--bs-form-invalid-color);
}
.course-search-form.was-validated .form-control:invalid + .ed-primary-btn + .icon + div.invalid-feedback {
  color: var(--ed-color-common-white);
}
.course-search-form.was-validated .form-control:valid {
  background-image: none;
}
.course-search-form.was-validated .form-control:valid + .ed-primary-btn + .icon {
  color: var(--bs-form-valid-color);
}

.course-search-form-min {
  position: relative;
}
.course-search-form-min .form-control {
  padding: 14px 20px;
  padding-left: 30px;
  box-shadow: none;
  border-radius: 100px;
  border: 1px solid var(--ed-color-border-1);
}
.course-search-form-min .form-control.is-invalid {
  background-image: none;
}
.course-search-form-min .form-control.is-invalid + .search-btn {
  top: 35%;
}
.course-search-form-min .form-control.is-invalid + .search-btn i {
  color: var(--bs-form-invalid-color);
}
.course-search-form-min .form-control.is-valid {
  background-image: none;
}
.course-search-form-min .form-control.is-valid + .search-btn i {
  color: var(--bs-form-valid-color);
}
.course-search-form-min .search-btn {
  color: var(--ed-color-theme-primary);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.course-search-form-min.was-validated .form-control:invalid {
  background-image: none;
}
.course-search-form-min.was-validated .form-control:invalid + .search-btn {
  top: 35%;
}
.course-search-form-min.was-validated .form-control:invalid + .search-btn i {
  color: var(--bs-form-invalid-color);
}
.course-search-form-min.was-validated .form-control:valid {
  background-image: none;
}
.course-search-form-min.was-validated .form-control:valid + .search-btn i {
  color: var(--bs-form-valid-color);
}

/* !END:  Course CSS */
/**----------------------------------------
START: Counter CSS
----------------------------------------*/
.counter-section {
  background-color: var(--ed-color-theme-primary);
}
@media only screen and (max-width: 992px) {
  .counter-section {
    padding: 70px 0;
  }
}

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

.counter-item {
  text-align: center;
  border-right: 1px solid #21BCAF;
  padding: 120px 0;
}
@media only screen and (max-width: 992px) {
  .counter-item {
    padding: 0;
    border: none;
  }
}
.counter-item .title {
  font-size: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.counter-item .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
}
.counter-item p {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}
.counter-item.item-1 {
  margin-right: auto;
  margin-left: 0;
}
.counter-item.item-4 {
  border-right: none;
}

.counter-card {
  padding: 40px 0px 44px;
  border-radius: 10px;
  border: 1px solid #E0E5EB;
}
.counter-card .title {
  color: var(--ed-color-heading-primary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  font-family: var(--ed-ff-heading);
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter-card .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
}
.counter-card .title .odometer-auto-theme .odometer-digit {
  width: 25px;
}
.counter-card .title .number {
  margin-top: -3px;
}
.counter-card p {
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1;
}

/* !END:  Counter CSS */
/**----------------------------------------
START: Faq CSS
----------------------------------------*/
.faq-img-wrap {
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .faq-img-wrap {
    width: 85%;
    margin: 0 auto;
  }
}
.faq-img-wrap .faq-img {
  max-width: 435px;
  height: 542px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .faq-img-wrap .faq-img {
    max-width: 100%;
    height: 420px;
  }
}
.faq-img-wrap .faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.faq-img-wrap .faq-text-box {
  background-color: var(--ed-color-common-white);
  box-shadow: 0px 4px 18px rgba(158, 165, 177, 0.23);
  border-radius: 10px;
  padding: 30px;
  position: absolute;
  bottom: 100px;
  left: 0;
}
.faq-img-wrap .faq-text-box .faq-thumb-list {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.faq-img-wrap .faq-text-box .faq-thumb-list li {
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--ed-color-common-white);
  border-radius: 50%;
}
.faq-img-wrap .faq-text-box .faq-thumb-list li:not(:last-of-type) {
  margin-right: -30px;
}
.faq-img-wrap .faq-text-box .faq-thumb-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-img-wrap .faq-text-box .faq-thumb-list li.number {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  font-weight: 600;
}

@media only screen and (max-width: 992px) {
  .faq-content {
    margin-top: 40px;
  }
}
.faq-content.content-1 {
  width: 100%;
  padding-inline-end: 24px;
  padding-inline-start: 40px;
}
@media only screen and (max-width: 992px) {
  .faq-content.content-1 {
    padding-inline-start: 0;
    padding-inline-end: 12px;
  }
}
.faq-content .faq-accordion .accordion-item {
  border: none;
}
.faq-content .faq-accordion .accordion-item .accordion-button {
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
  border-bottom: 1px solid transparent;
  font-size: 18px;
  font-weight: 600;
  color: var(--ed-color-heading-primary);
}
.faq-content .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  border-bottom: 1px solid #E0E5EB;
}
.faq-content .faq-accordion .accordion-item .accordion-button span {
  color: var(--ed-color-text-body);
  margin-right: 10px;
}
.faq-content .faq-accordion .accordion-item .accordion-body {
  padding-left: 0;
  padding-right: 0;
}
.faq-content .faq-accordion .accordion-item .accordion-body p {
  color: #6C706F;
}

.faq-img-wrap-2 {
  max-width: 577px;
  width: 100%;
  height: 511px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .faq-img-wrap-2 {
    margin: 0 auto;
  }
}
.faq-img-wrap-2 .faq-img-1 {
  max-width: 281px;
  width: 100%;
  height: 402px;
  border-radius: 0 60px 0 60px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.faq-img-wrap-2 .faq-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-img-wrap-2 .faq-img-2 {
  max-width: 270px;
  width: 100%;
  height: 241px;
  border-radius: 60px 0 60px 0;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}
.faq-img-wrap-2 .faq-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-img-wrap-2 .faq-img-3 {
  max-width: 270px;
  width: 100%;
  height: 245px;
  border-radius: 60px 0 60px 0;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.faq-img-wrap-2 .faq-img-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-img-wrap-2 .faq-text-box {
  background-color: var(--ed-color-common-white);
  box-shadow: 0px 4px 18px rgba(158, 165, 177, 0.23);
  border-radius: 10px;
  padding: 30px;
  position: absolute;
  bottom: 50px;
  left: 60px;
  z-index: 2;
}
.faq-img-wrap-2 .faq-text-box .faq-thumb-list-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.faq-img-wrap-2 .faq-text-box .faq-thumb-list-wrap .faq-thumb-list {
  display: flex;
  align-items: center;
}
.faq-img-wrap-2 .faq-text-box .faq-thumb-list-wrap .faq-thumb-list li {
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--ed-color-common-white);
  border-radius: 50%;
}
.faq-img-wrap-2 .faq-text-box .faq-thumb-list-wrap .faq-thumb-list li:not(:last-of-type) {
  margin-right: -20px;
}
.faq-img-wrap-2 .faq-text-box .faq-thumb-list-wrap .faq-thumb-list li.number {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  font-weight: 600;
}
.faq-img-wrap-2 .faq-text-box .faq-thumb-list-wrap p {
  color: var(--ed-color-heading-primary);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1;
}
.faq-img-wrap-2 .faq-text-box .faq-thumb-list-wrap p span {
  color: var(--ed-color-theme-primary);
  font-weight: 700;
}

/* !END:  Faq CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/
.team-wrap {
  background: #000;
  max-width: 1760px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  border-radius: 15px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .team-wrap {
    padding-right: 0;
    padding-left: 0;
  }
}

.team-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.team-item .team-thumb {
  height: 355px;
  position: relative;
}
.team-item .team-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.team-item .team-thumb:before {
  background: rgba(22, 39, 38, 0.82);
  mix-blend-mode: multiply;
  backdrop-filter: blur(0.5px);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.team-item .team-thumb .team-social {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.team-item .team-thumb .team-social li {
  display: inline-flex;
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item .team-thumb .team-social li:not(:last-of-type) {
  margin-right: 5px;
}
.team-item .team-thumb .team-social li a {
  background-color: var(--ed-color-common-white);
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  color: var(--ed-color-theme-primary);
}
.team-item .team-thumb .team-social li a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.team-item .team-thumb .team-social li:nth-child(2) {
  transition-delay: 150ms;
}
.team-item .team-thumb .team-social li:nth-child(3) {
  transition-delay: 200ms;
}
.team-item .team-thumb .team-social li:nth-child(4) {
  transition-delay: 250ms;
}
.team-item .team-content {
  background-color: var(--ed-color-common-white);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
}
.team-item .team-content .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}
.team-item .team-content span {
  font-size: 16px;
  color: var(--ed-color-theme-primary);
}
.team-item:hover .team-thumb:before {
  visibility: visible;
  opacity: 1;
}
.team-item:hover .team-thumb .team-social li {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.team-container {
  max-width: 1690px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.team-item-2 {
  border: 1px solid #E0E5EB;
  padding: 10px;
  border-radius: 15px;
}
.team-item-2 .team-thumb {
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.team-item-2 .team-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item-2 .team-thumb .team-content {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(45px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 90%;
  transform: translateX(-50%);
  padding: 20px 30px;
}
@media only screen and (max-width: 767px) {
  .team-item-2 .team-thumb .team-content {
    padding: 20px;
  }
}
.team-item-2 .team-thumb .team-content .instructor-info .title {
  color: var(--ed-color-common-white);
  font-weight: 600;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .team-item-2 .team-thumb .team-content .instructor-info .title {
    font-size: 20px;
  }
}
.team-item-2 .team-thumb .team-content .instructor-info span {
  color: var(--ed-color-common-white);
  font-size: 16px;
  font-weight: 400;
}
.team-item-2 .team-thumb .team-content .team-social {
  position: relative;
}
.team-item-2 .team-thumb .team-content .team-social .expand {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-heading-primary);
  font-size: 15px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  cursor: pointer;
}
.team-item-2 .team-thumb .team-content .team-social .expand:hover {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
}
.team-item-2 .team-thumb .team-content .team-social .social-list {
  position: absolute;
  bottom: 55px;
  right: 50%;
  transform: translateX(50%);
  list-style: none;
}
.team-item-2 .team-thumb .team-content .team-social .social-list li {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.1, 0.75, 0.25, 1);
}
.team-item-2 .team-thumb .team-content .team-social .social-list li a {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-heading-primary);
  font-size: 15px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}
.team-item-2 .team-thumb .team-content .team-social .social-list li a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.team-item-2 .team-thumb .team-content .team-social .social-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.team-item-2 .team-thumb .team-content .team-social .social-list li:nth-child(4) {
  transition-delay: 100ms;
}
.team-item-2 .team-thumb .team-content .team-social .social-list li:nth-child(3) {
  transition-delay: 150ms;
}
.team-item-2 .team-thumb .team-content .team-social .social-list li:nth-child(2) {
  transition-delay: 200ms;
}
.team-item-2 .team-thumb .team-content .team-social .social-list li:nth-child(1) {
  transition-delay: 250ms;
}
.team-item-2 .team-thumb .team-content .team-social:hover .social-list li {
  visibility: visible;
  opacity: 1;
}
.team-item-2:hover .team-thumb img {
  transform: scale(1.02);
}

.team-item-3 {
  text-align: center;
  padding: 50px 30px;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}
@media (max-width: 1200px) {
  .team-item-3 {
    padding: 40px 20px;
  }
}
.team-item-3 .team-thumb-wrap {
  height: 192px;
  width: 192px;
  border: 1px solid #E0E5EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item-3 .team-thumb-wrap img {
  height: 152px;
  width: 152px;
  object-fit: cover;
}
.team-item-3 .team-content .title {
  font-size: 22px;
  margin-bottom: 0;
}
.team-item-3 .team-content span {
  color: var(--ed-color-theme-primary);
  font-weight: 400;
  display: block;
  margin-top: 5px;
}
.team-item-3 .social-list {
  margin-top: 20px;
}
.team-item-3 .social-list li {
  display: inline-flex;
}
.team-item-3 .social-list li:not(:last-of-type) {
  margin-right: 5px;
}
.team-item-3 .social-list li a {
  color: var(--ed-color-theme-primary);
  height: 40px;
  width: 40px;
  border: 1px solid #E0E5EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-item-3 .social-list li a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  border: 1px solid var(--ed-color-theme-primary);
}
.team-item-3:hover .team-thumb-wrap {
  border: 1px solid var(--ed-color-theme-primary);
}

.team-item-4 {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}
.team-item-4 .team-thumb {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 300/350;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-item-4 .team-thumb .overlay {
  background: linear-gradient(180deg, rgba(11, 27, 26, 0) 0%, #0B1B1A 89.43%);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item-4 .team-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-item-4 .team-content {
  position: absolute;
  left: 30px;
  bottom: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 5;
}
.team-item-4 .team-content .title {
  color: var(--ed-color-common-white);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.team-item-4 .team-content span {
  font-family: var(--ed-ff-heading);
  color: var(--ed-color-common-white);
  font-size: 14px;
  font-weight: 400;
}
.team-item-4 .team-content .team-social {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 10px;
  padding-top: 20px;
}
.team-item-4 .team-content .team-social li {
  display: inline-flex;
}
.team-item-4 .team-content .team-social li:not(:last-of-type) {
  margin-right: 10px;
}
.team-item-4 .team-content .team-social li a {
  color: var(--ed-color-common-white);
}
.team-item-4 .team-content .team-link {
  display: block;
  margin-top: 8px;
  padding: 12px 40px;
  padding-inline-start: 12px;
  background-color: transparent;
  color: var(--ed-color-common-white);
  border: 1px solid var(--ed-color-common-white);
}
.team-item-4 .team-content .team-link:hover {
  background-color: var(--ed-color-theme-primary);
  border-color: var(--ed-color-theme-primary);
}
.team-item-4:hover .team-thumb .overlay {
  visibility: visible;
  opacity: 1;
}
.team-item-4:hover .team-content {
  bottom: 30px;
  visibility: visible;
  opacity: 1;
}

.team-item-5 {
  padding: 0;
}
.team-item-5 .team-thumb {
  position: relative;
  z-index: 1;
  height: 300px;
  overflow: hidden;
}
.team-item-5 .team-thumb .shape {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.team-item-5 .team-thumb .shape img {
  width: 100%;
  height: 100%;
}
.team-item-5 .team-thumb .team-men {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.team-item-5 .team-thumb .team-men img {
  filter: saturate(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item-5 .team-content {
  padding: 30px 0;
}
.team-item-5:hover .team-thumb .team-men img {
  filter: saturate(1);
}

/* !END:  Page Header CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/
.hero-section {
  background-color: #EFF2F9;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .hero-section {
    padding: 70px 0;
  }
}
.hero-section .shapes .shape {
  position: absolute;
  z-index: -1;
}
.hero-section .shapes .shape.shape-1 {
  bottom: 70px;
  left: 70px;
  animation: about-anim 2s infinite linear alternate-reverse;
}
.hero-section .shapes .shape.shape-2 {
  bottom: 0;
  left: 50%;
}
.hero-section .shapes .shape.shape-3 {
  top: 0;
  left: 0;
}

.hero-content .section-heading .section-title {
  font-size: 50px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .hero-content .section-heading .section-title {
    font-size: 36px;
  }
}
.hero-content .section-heading .section-title span {
  color: var(--ed-color-theme-primary);
  font-weight: 400;
}
.hero-content .hero-btn-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 30px;
  margin-bottom: 40px;
}
.hero-content .hero-btn-wrap .hero-video a {
  color: var(--ed-color-heading-primary);
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  font-weight: 500;
}
.hero-content .hero-btn-wrap .hero-video a i {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.hero-content .hero-author {
  display: flex;
  align-items: center;
  column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 15px;
  margin-bottom: 20px;
}
.hero-content .hero-author ul li {
  display: inline-flex;
  border: 1px solid var(--ed-color-common-white);
  border-radius: 50%;
}
.hero-content .hero-author ul li:not(:last-of-type) {
  margin-right: -20px;
}
.hero-content .hero-author h5 {
  font-size: 16px;
  font-weight: 400;
}
.hero-content .hero-author h5 span {
  color: var(--ed-color-theme-primary);
  margin-right: 5px;
}
.hero-content .bottom-text {
  font-size: 24px;
  font-weight: 600;
}
.hero-content .bottom-text span {
  color: var(--ed-color-theme-primary);
}

.hero-img-wrap {
  max-width: 544px;
  width: 100%;
  height: 550px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-img-wrap {
    margin: 0 auto;
    margin-top: 50px;
  }
}
.hero-img-wrap .hero-img {
  max-width: 464px;
  width: 100%;
  height: 550px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 70px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .hero-img-wrap .hero-img {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero-img-wrap .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-wrap .hero-img-shape {
  position: absolute;
  top: 30%;
  right: -110px;
  transform: translateY(-50%);
  animation: hero-anim 2s infinite linear alternate-reverse;
}
@media only screen and (max-width: 992px) {
  .hero-img-wrap .hero-img-shape {
    right: -50px;
  }
}
.hero-img-wrap .hero-text-element {
  background-color: var(--ed-color-common-white);
  padding: 15px 30px;
  position: absolute;
  bottom: 30%;
  left: -40px;
  border-radius: 10px;
  animation: about-anim 2s infinite linear alternate-reverse;
}
.hero-img-wrap .hero-text-element .title {
  font-family: var(--ed-ff-heading);
  color: var(--ed-color-theme-primary);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}
.hero-img-wrap .hero-text-element .title .odometer-auto-theme {
  line-height: 1;
  font-family: inherit;
}
.hero-img-wrap .hero-text-element p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  color: var(--ed-color-heading-primary);
}

.hero-section-2 {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
.hero-section-2 .hero-bg-wrap {
  height: 790px;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .hero-section-2 .hero-bg-wrap {
    right: -16%;
  }
}
@media (max-width: 1200px) {
  .hero-section-2 .hero-bg-wrap {
    right: -32%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section-2 .hero-bg-wrap {
    display: none;
  }
}
.hero-section-2 .hero-bg-wrap .hero-bg {
  border-bottom-left-radius: 100px;
  overflow: hidden;
}
.hero-section-2 .hero-bg-wrap .hero-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}
.hero-section-2 .hero-bg-wrap .hero-bg-shape img {
  height: 100%;
}
.hero-section-2 .hero-bg-wrap .faq-text-box {
  background-color: var(--ed-color-common-white);
  box-shadow: 0px 4px 18px rgba(158, 165, 177, 0.23);
  border-radius: 10px;
  padding: 30px;
  position: absolute;
  bottom: 25%;
  left: 0px;
  z-index: 2;
  animation: about-anim 2s infinite linear alternate-reverse;
}
@media (max-width: 1600px) {
  .hero-section-2 .hero-bg-wrap .faq-text-box {
    left: 90px;
  }
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap .faq-thumb-list {
  display: flex;
  align-items: center;
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap .faq-thumb-list li {
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--ed-color-common-white);
  border-radius: 50%;
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap .faq-thumb-list li:not(:last-of-type) {
  margin-right: -20px;
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap .faq-thumb-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap .faq-thumb-list li.number {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  font-weight: 600;
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap p {
  color: var(--ed-color-heading-primary);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1;
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap p span {
  color: var(--ed-color-theme-primary);
  font-weight: 700;
}
.hero-section-2 .hero-bg-wrap .hero-text-box {
  background-color: var(--ed-color-common-white);
  display: grid;
  align-items: center;
  grid-template-columns: 45px 1fr;
  grid-gap: 10px;
  padding: 10px;
  position: absolute;
  top: 30%;
  animation: about-anim 1s infinite linear alternate-reverse;
  border: 1px solid #E0E5EB;
  border-radius: 5px;
}
.hero-section-2 .hero-bg-wrap .hero-text-box .icon {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.hero-section-2 .hero-bg-wrap .hero-text-box .content .text-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}
.hero-section-2 .hero-bg-wrap .hero-text-box .content span {
  color: var(--ed-color-text-body);
  font-size: 14px;
}
.hero-section-2 .shapes .shape {
  position: absolute;
}
.hero-section-2 .shapes .shape.shape-1 {
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-section-2 .shapes .shape.shape-2 {
  top: -5%;
  left: -10%;
  z-index: -2;
}

.hero-content-2 {
  padding: 140px 0 220px 0;
}
@media only screen and (max-width: 992px) {
  .hero-content-2 {
    padding: 100px 0;
  }
}
.hero-content-2 .section-heading .section-title {
  font-size: 54px;
}
@media only screen and (max-width: 992px) {
  .hero-content-2 .section-heading .section-title {
    font-size: 40px;
  }
  .hero-content-2 .section-heading .section-title br {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-2 .section-heading .section-title {
    font-size: 36px;
  }
}
.hero-content-2 .desc {
  margin-bottom: 40px;
}
.hero-content-2 .hero-form {
  max-width: 600px;
  width: 100%;
  position: relative;
  margin-bottom: 50px;
}
.hero-content-2 .hero-form .form-control {
  background-color: var(--ed-color-common-white);
  padding: 19px 40px;
  box-shadow: none;
  border: 1px solid #E0E5EB;
  border-radius: 100px;
  border: 1px solid #E0E5EB;
  box-shadow: 0px 11px 41px 3px rgba(23, 67, 63, 0.12);
  padding-left: 50px;
  padding-right: 220px;
}
@media only screen and (max-width: 767px) {
  .hero-content-2 .hero-form .form-control {
    padding-right: 50px;
  }
}
.hero-content-2 .hero-form button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .hero-content-2 .hero-form button {
    position: relative;
    top: 0;
    right: auto;
    left: 0;
    transform: translate(0);
    margin-top: 10px;
    border: 1px solid var(--ed-color-common-white);
  }
}
.hero-content-2 .hero-form .icon {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--ed-color-heading-primary);
}
@media only screen and (max-width: 767px) {
  .hero-content-2 .hero-form .icon {
    top: 28%;
  }
}
.hero-content-2 .about-counter-items .about-counter-item .title {
  color: var(--ed-color-heading-primary);
}

.hero-3 {
  background-color: #0E2C31;
  padding: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-3 .hero-bottom-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 992px) {
  .hero-3 .hero-bottom-shape {
    display: none;
  }
}
.hero-3 .hero-shapes .shape {
  position: absolute;
  z-index: -1;
}
.hero-3 .hero-shapes .shape.shape-1 {
  top: 0;
  right: 0;
  opacity: 0.2;
  width: 100%;
  height: 100%;
}
.hero-3 .hero-shapes .shape.shape-1 img {
  width: 100%;
  height: 100%;
}
.hero-3 .hero-shapes .shape.shape-2 {
  top: 50px;
  left: 0;
  opacity: 0.2;
}
.hero-3 .hero-shapes .shape.shape-3 {
  bottom: 0;
  left: 0;
}
.hero-3 .hero-img-wrap-3 {
  position: absolute;
  top: -60px;
  right: 16%;
  z-index: -1;
}
@media (max-width: 1600px) {
  .hero-3 .hero-img-wrap-3 {
    right: 5%;
  }
}
@media (max-width: 1200px) {
  .hero-3 .hero-img-wrap-3 {
    right: -16%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-3 .hero-img-wrap-3 {
    display: none;
  }
}

.hero-content-3 {
  padding: 170px 0 250px 0;
}
@media only screen and (max-width: 992px) {
  .hero-content-3 {
    padding: 100px 0;
  }
}
.hero-content-3 .section-heading .section-title {
  color: var(--ed-color-common-white);
}
@media only screen and (max-width: 767px) {
  .hero-content-3 .section-heading .section-title {
    font-size: 36px;
    text-shadow: var(--ed-color-common-black) 1px 0 10px;
  }
}
.hero-content-3 p {
  color: var(--ed-color-common-white);
  margin-bottom: 40px;
}
.hero-content-3 ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 35px;
  margin-bottom: 40px;
}
.hero-content-3 ul li {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--ed-color-common-white);
}
.hero-content-3 .hero-btn-wrap .hero-btn-2 {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-heading-primary);
}
.hero-content-3 .hero-btn-wrap .hero-btn-2:before {
  background-color: var(--ed-color-theme-primary);
}
.hero-content-3 .hero-btn-wrap .hero-btn-2:hover {
  color: var(--ed-color-common-white);
}

.hero-img-wrap-3 {
  max-width: 677px;
  width: 100%;
}
.hero-img-wrap-3 .hero-img {
  width: 100%;
}
.hero-img-wrap-3 .hero-img img {
  width: 100%;
  object-fit: cover;
}

.hero-4 {
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  padding: 324px 0 140px 0;
}
@media screen and (min-width: 1400px) {
  .hero-4 {
    background-size: contain;
    background-position: center center;
    background-color: var(--ed-color-theme-primary);
  }
}
@media only screen and (max-width: 992px) {
  .hero-4 {
    padding: 0px;
    padding-top: 350px;
    background-position: 88% top;
  }
}
@media only screen and (max-width: 767px) {
  .hero-4 {
    padding: 0px;
    padding-top: 320px;
    background-position: 86% top;
  }
}
@media only screen and (max-width: 575.98px) {
  .hero-4 {
    padding: 360px 0 40px 0;
  }
}
.hero-4 .shapes .shape.shape-1 {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  left: 20px;
}
.hero-4 .shapes .shape.shape-2 {
  right: 200px;
}
.hero-4 .shapes .shape.shape-3 {
  left: 50px;
}
.hero-4 .shapes .shape.shape-4 {
  top: 0;
  right: 0;
}

.hero-content-4 {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .hero-content-4 .section-heading .section-title {
    font-size: 36px;
  }
}
.hero-content-4 .section-heading .section-title span {
  color: var(--ed-color-common-white);
  font-weight: 200;
}
.hero-content-4 .bottom-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--ed-color-common-white);
  margin: 30px 0 40px 0;
}
@media only screen and (max-width: 767px) {
  .hero-content-4 .bottom-title {
    text-shadow: var(--ed-color-common-black) 1px 0 10px;
  }
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn {
  background-color: transparent;
  border: 1px solid var(--ed-color-common-white);
  padding: 11px 10px 11px 30px;
}
@media only screen and (max-width: 767px) {
  .hero-content-4 .hero-btn-wrap .ed-primary-btn {
    text-shadow: var(--ed-color-common-black) 1px 0 10px;
  }
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn:before {
  background-color: var(--ed-color-common-white);
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn:hover {
  color: var(--ed-color-heading-primary);
}
@media only screen and (max-width: 767px) {
  .hero-content-4 .hero-btn-wrap .ed-primary-btn:hover {
    text-shadow: var(--ed-color-theme-primary) 1px 0 10px;
  }
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn span {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid var(--ed-color-theme-primary);
  margin-left: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn span i {
  margin: 0;
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn.active {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-heading-primary);
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn.active:before {
  background-color: var(--ed-color-theme-primary);
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn.active:hover {
  color: var(--ed-color-common-white);
  border: 1px solid var(--ed-color-common-white);
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn.active:hover span {
  background-color: var(--ed-color-theme-primary);
  border-color: var(--ed-color-common-white);
  color: var(--ed-color-common-white);
}

.hero-img-wrap-2 {
  background-color: var(--ed-color-common-white);
  max-width: 800px;
  width: 100%;
  height: auto;
  aspect-ratio: 800/600;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  position: relative;
  border: 10px solid var(--ed-color-common-white);
}
@media only screen and (max-width: 992px) {
  .hero-img-wrap-2 {
    margin: 0 auto;
  }
}
.hero-img-wrap-2 .hero-img {
  width: 100%;
  height: 100%;
}
.hero-img-wrap-2 .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}
.hero-img-wrap-2 .img-shape {
  position: absolute;
  top: -80px;
  left: -80px;
  z-index: 2;
}
.hero-img-wrap-2 .img-shape-2 {
  position: absolute;
  bottom: -120px;
  right: -120px;
  z-index: -1;
}
.hero-img-wrap-2 .hero-contact-list {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  list-style: none;
}
.hero-img-wrap-2 .hero-contact-list li:not(:last-of-type) {
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .hero-img-wrap-2 .hero-contact-list li:not(:last-of-type) {
    margin-right: 10px;
  }
}
.hero-img-wrap-2 .hero-contact-list li a {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-heading-primary);
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}
.hero-img-wrap-2 .hero-contact-list li a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}

.hero-section-5 {
  background-color: #F0F4F5;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-section-5 .bg-item .hero-shape {
  position: absolute;
  z-index: -1;
}
.hero-section-5 .bg-item .hero-shape.shape-1 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .hero-section-5 .bg-item .hero-shape.shape-1 {
    top: auto;
    bottom: 0;
    transform: translate(0);
  }
}
.hero-section-5 .bg-item .hero-shape.shape-2 {
  top: 0;
  right: 0;
}
.hero-section-5 .bg-item .hero-shape.shape-3 {
  top: 20%;
  left: 7%;
  transform: translateY(-50%);
  animation: hero-anim 2s infinite linear alternate-reverse;
}
@media (max-width: 1200px) {
  .hero-section-5 .bg-item .hero-shape.shape-3 {
    display: none;
  }
}
.hero-section-5 .bg-item .hero-shape.shape-4 {
  top: 15%;
  right: 7%;
  transform: translateY(-50%);
  animation: about-anim 2s infinite linear alternate-reverse;
}
@media (max-width: 1700px) {
  .hero-section-5 .bg-item .hero-shape.shape-4 {
    right: 3%;
  }
}
@media (max-width: 1399px) {
  .hero-section-5 .bg-item .hero-shape.shape-4 {
    display: none;
  }
}
.hero-section-5 .hero-men-wrap .hero-men {
  position: absolute;
  z-index: -1;
}
@media (max-width: 1200px) {
  .hero-section-5 .hero-men-wrap .hero-men {
    display: none;
  }
}
.hero-section-5 .hero-men-wrap .hero-men.men-1 {
  bottom: 0;
  left: 50px;
}
@media (max-width: 1399px) {
  .hero-section-5 .hero-men-wrap .hero-men.men-1 {
    left: 0;
  }
}
.hero-section-5 .hero-men-wrap .hero-men.men-2 {
  bottom: 0;
  right: 30px;
}
@media (max-width: 1600px) {
  .hero-section-5 .hero-men-wrap .hero-men.men-2 {
    right: 0;
  }
}
@media (max-width: 1399px) {
  .hero-section-5 .hero-men-wrap .hero-men.men-2 {
    right: -120px;
  }
}

.hero-content-5 {
  padding: 179px 0;
}
@media only screen and (max-width: 992px) {
  .hero-content-5 {
    padding: 100px 0;
  }
}
.hero-content-5 .title {
  margin-bottom: 10px;
}
@media only screen and (max-width: 992px) {
  .hero-content-5 .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-5 .title {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
.hero-content-5 .title span {
  color: var(--ed-color-theme-primary);
}
.hero-content-5 p {
  margin-bottom: 40px;
}
.hero-content-5 .hero-form {
  max-width: 790px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.hero-content-5 .hero-form .form-control {
  padding: 19px 40px;
  box-shadow: none;
  border: 1px solid #E0E5EB;
  border-radius: 100px;
}
.hero-content-5 .hero-form button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .hero-content-5 .hero-form button {
    position: relative;
    top: 0;
    right: auto;
    left: 0;
    transform: translate(0);
    margin-top: 10px;
  }
}
.hero-content-5 .hero-form .icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--ed-color-heading-primary);
}
.hero-content-5 .bottom-title {
  margin-top: 40px;
  margin-bottom: 0;
}
.hero-content-5 .bottom-title span {
  color: var(--ed-color-theme-primary);
}

@-webkit-keyframes hero-anim {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@-moz-keyframes hero-anim {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@-ms-keyframes hero-anim {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@keyframes hero-anim {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes about-anim {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}
@-moz-keyframes about-anim {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}
@-ms-keyframes about-anim {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}
@keyframes about-anim {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}
/* !END:  Page Header CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/
.content-img-wrap {
  max-width: 634px;
  width: 100%;
  height: 608px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .content-img-wrap {
    margin: 0 auto;
  }
}
.content-img-wrap .content-img-1 {
  max-width: 302px;
  width: 100%;
  height: 480px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 60px 0 60px 0;
  overflow: hidden;
  z-index: 1;
}
.content-img-wrap .content-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-img-wrap .content-img-2 {
  max-width: 302px;
  width: 100%;
  height: 294px;
  overflow: hidden;
  border-radius: 0 60px 0 60px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.content-img-wrap .content-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-img-wrap .content-img-3 {
  max-width: 302px;
  width: 100%;
  height: 294px;
  overflow: hidden;
  border-radius: 60px 0 60px 0;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.content-img-wrap .content-img-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-img-wrap .border-shape {
  max-width: 347px;
  width: 100%;
  height: 552px;
  border: 1px solid var(--ed-color-theme-primary);
  border-radius: 60px 0 60px;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
}

.content-info {
  margin-left: 45px;
}
@media only screen and (max-width: 992px) {
  .content-info {
    margin-left: 0;
    margin-top: 40px;
  }
}

.content-item {
  display: grid;
  align-items: center;
  grid-template-columns: 85px 1fr;
  padding: 30px;
  border: 1px solid #E0E5EB;
  border-radius: 10px;
  grid-gap: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .content-item {
    grid-template-columns: 1fr;
  }
}
.content-item .icon {
  background-color: #ECF3F8;
  height: 85px;
  width: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.content-item .icon img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.content-item .content p {
  margin-bottom: 0;
}
.content-item:hover {
  border: 1px solid transparent;
  box-shadow: 0px 10px 28px rgba(19, 36, 39, 0.13);
}
.content-item:hover .icon {
  background-color: var(--ed-color-theme-primary);
}
.content-item:hover .icon img {
  filter: brightness(0) invert(1);
}

.content-img-wrap-2 {
  background: #FFFFFF;
  box-shadow: 0px 4px 16px #EBEEF3;
  border-radius: 10px;
  padding: 20px;
  max-width: max(100%, 800px);
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .content-img-wrap-2 {
    margin: 0 auto;
  }
}
.content-img-wrap-2 .content-img {
  height: 100%;
  width: 100%;
}
.content-img-wrap-2 .content-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.content-img-wrap-2 .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content-img-wrap-2 .video-btn a {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  height: 100px;
  width: 100px;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.content-img-wrap-2 .video-btn a .ripple {
  height: 100px;
  width: 100px;
}
.content-img-wrap-2 .video-btn a .ripple:before, .content-img-wrap-2 .video-btn a .ripple:after {
  height: 100px;
  width: 100px;
}

.content-info-2 {
  padding-left: 20px;
}
@media only screen and (max-width: 992px) {
  .content-info-2 {
    padding-left: 0;
    margin-top: 40px;
  }
}
.content-info-2 .content-list {
  margin-top: 30px;
  margin-bottom: 40px;
}
.content-info-2 .content-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ed-color-heading-primary);
}
.content-info-2 .content-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.content-info-2 .content-list li i {
  color: var(--ed-color-theme-primary);
}

.custom-media {
  background: #FFFFFF;
  box-shadow: 0px 4px 16px #EBEEF3;
  border-radius: 10px;
  padding: 20px;
  max-width: max(100%, 800px);
  width: 100%;
  height: fit-content;
  aspect-ratio: 4/3;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .custom-media {
    margin: 0 auto;
  }
}
.custom-media .custom-img {
  width: auto;
  max-width: max(100%, 800px);
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-media .custom-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.custom-media .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.custom-media .video-btn a {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  height: 100px;
  width: 100px;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.custom-media .video-btn a .ripple {
  height: 100px;
  width: 100px;
}
.custom-media .video-btn a .ripple:before, .custom-media .video-btn a .ripple:after {
  height: 100px;
  width: 100px;
}

.custom-media-2 {
  background: #FFFFFF;
  box-shadow: 0px 4px 16px #EBEEF3;
  border-radius: 10px;
  padding: 20px;
  max-width: max(100%, 435px);
  width: 100%;
  height: auto;
  aspect-ratio: 435/542;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .custom-media-2 {
    margin: 0 auto;
  }
}
.custom-media-2 .custom-img {
  width: auto;
  max-width: max(100%, 435px);
  height: auto;
  aspect-ratio: 435/542;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-media-2 .custom-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.custom-media-2 .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.custom-media-2 .video-btn a {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  height: 100px;
  width: 100px;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.custom-media-2 .video-btn a .ripple {
  height: 100px;
  width: 100px;
}
.custom-media-2 .video-btn a .ripple:before, .custom-media-2 .video-btn a .ripple:after {
  height: 100px;
  width: 100px;
}

/* !END:  Page Header CSS */
/**----------------------------------------
START: Request CSS
----------------------------------------*/
.request-section {
  background-color: #191A1F;
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.request-section .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  height: 513px;
  max-width: 845px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 1700px) {
  .request-section .bg-img {
    max-width: 700px;
  }
}
@media (max-width: 1600px) {
  .request-section .bg-img {
    max-width: 600px;
  }
}
@media (max-width: 1200px) {
  .request-section .bg-img {
    display: none;
  }
}
.request-section .bg-img:before {
  background-color: var(--ed-color-theme-primary);
  content: "";
  height: 220px;
  width: 100px;
  position: absolute;
  bottom: 100px;
  right: -20px;
  opacity: 0.06;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-radius: 15px;
}
.request-section .shape {
  position: absolute;
  top: 50px;
  right: 30px;
  z-index: -1;
}

.request-content p {
  color: #9FA0A0;
  max-width: 650px;
  width: 100%;
}
.request-content .request-form-wrapper {
  max-width: 650px;
  width: 100%;
  margin-bottom: 30px;
}
.request-content .request-form-wrapper .form-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  flex-wrap: wrap;
  row-gap: 15px;
}
@media (max-width: 1200px) {
  .request-content .request-form-wrapper .form-items {
    justify-content: start;
  }
}
.request-content .request-form-wrapper .form-items .form-item {
  max-width: 300px;
  width: 100%;
}
.request-content .request-form-wrapper .form-items .form-item .form-control {
  background-color: transparent;
  box-shadow: none;
  outline: none;
  border: 1px solid #3D3E44;
  border-radius: 100px;
  color: var(--ed-color-common-white);
  padding: 14px 30px;
}
.request-content .request-form-wrapper .form-items .form-item .form-control::-webkit-input-placeholder {
  color: var(--ed-color-common-white);
}
.request-content .request-form-wrapper .form-items .form-item .form-control:-moz-placeholder {
  color: var(--ed-color-common-white);
}
.request-content .request-form-wrapper .form-items .form-item .form-control::-moz-placeholder {
  color: var(--ed-color-common-white);
}
.request-content .request-form-wrapper .form-items .form-item .form-control:-ms-input-placeholder {
  color: var(--ed-color-common-white);
}

/* !END: Request CSS */
/**----------------------------------------
START: Feature CSS
----------------------------------------*/
.feature-wrap {
  background-color: var(--ed-color-bg-2);
  max-width: 1680px;
  margin: 0 auto;
  width: 100%;
  border-radius: 20px;
}

.feature-item {
  background-color: #1F2026;
  padding: 30px 20px;
  border: 1px solid #24252B;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.feature-item .icon {
  background-color: var(--ed-color-bg-2);
  height: 91px;
  width: 91px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #2E2F36;
}
.feature-item .title {
  font-size: 20px;
  color: var(--ed-color-common-white);
  margin: 25px 0 25px 0;
}
.feature-item .feature-btn {
  color: var(--ed-color-common-white);
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ed-color-common-white);
  border-radius: 50%;
  margin: 0 auto;
}
.feature-item .feature-btn:hover {
  background-color: var(--ed-color-theme-primary);
  border: 1px solid var(--ed-color-theme-primary);
}
.feature-item:hover {
  transform: translateY(-10px);
}

.feature-card {
  background-color: var(--ed-color-common-white);
  border: 1px solid #E0E5EB;
  box-shadow: 0px 13px 58px 4px rgba(25, 30, 29, 0.07);
  border-radius: 10px;
  padding: 60px 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .feature-card {
    padding: 40px 20px;
  }
}
.feature-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  width: 130px;
  margin: 0 auto;
  margin-bottom: 35px;
  border: 1px solid #E0E5EB;
  border-radius: 50%;
}
.feature-card .content .title {
  background: rgb(1, 189, 224);
  background: linear-gradient(135deg, rgb(1, 189, 224) 0%, rgb(29, 213, 183) 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-card .content p {
  margin: 20px 0 30px 0;
}
.feature-card .content .ed-primary-btn {
  background-color: transparent;
  color: var(--ed-color-text-body);
  border: 1px solid #E0E5EB;
}
.feature-card .content .ed-primary-btn:before {
  background-color: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
}
.feature-card .content .ed-primary-btn:hover {
  color: var(--ed-color-common-white);
}
.feature-card:hover {
  transform: translateY(-10px);
}

.event-item {
  border-radius: 15px;
  overflow: hidden;
}
.event-item .event-thumb {
  height: 276px;
  position: relative;
  overflow: hidden;
}
.event-item .event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.event-item .event-thumb .date-wrap {
  position: absolute;
  top: 0;
  left: 0;
}
.event-item .event-thumb .date-wrap .date {
  background-color: var(--ed-color-theme-primary);
  font-size: 35px;
  color: var(--ed-color-common-white);
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  padding: 10px 25px;
  border-radius: 15px 0 15px 0;
}
.event-item .event-thumb .date-wrap .date span {
  display: block;
  font-size: 16px;
}
.event-item .event-content {
  background-color: #F2F4F7;
  padding: 30px;
}
.event-item .event-content .time {
  background-color: rgba(7, 166, 152, 0.1);
  color: var(--ed-color-theme-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 20px;
}
.event-item .event-content .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}
.event-item .event-content .location {
  margin-bottom: 30px;
}
.event-item .event-content .location span {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 400;
}
.event-item .event-content .location span i {
  color: var(--ed-color-theme-primary);
}
.event-item .event-content .ed-primary-btn {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-text-body);
  border: 1px solid #E0E5EB;
}
.event-item .event-content .ed-primary-btn:before {
  background-color: var(--ed-color-theme-primary);
}
.event-item .event-content .ed-primary-btn:hover {
  color: var(--ed-color-common-white);
}
.event-item:hover .event-thumb img {
  transform: scale(1.03);
}

.feature-section-5 {
  background-color: #F0F4F5;
}

.feature-card-2 .icon {
  background-color: #F2F4F7;
}

/* !END: Feature CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/
.cta-section {
  background-color: #161E27;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .cta-section {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 767px) {
  .cta-section {
    padding: 70px 0;
  }
}
.cta-section .cta-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1200px) {
  .cta-section .cta-bg-img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .cta-section .cta-bg-img {
    display: none;
  }
}
.cta-section .cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0);
}
@media (max-width: 1200px) {
  .cta-section .cta-bg-img img {
    object-fit: cover;
  }
}
.cta-section .cta-bg-img:before {
  background: linear-gradient(90deg, #161E27 14.89%, rgba(22, 30, 39, 0.2) 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.cta-section .shapes .shape-1 {
  position: absolute;
  top: 0;
  left: 70px;
  z-index: -1;
}
.cta-section .shapes .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .cta-section .shapes .shape-2 {
    display: none;
  }
}

.cta-content {
  max-width: 871px;
  width: 100%;
}
.cta-content .title {
  color: var(--ed-color-common-white);
  font-size: 40px;
  font-weight: 600;
}
@media only screen and (max-width: 992px) {
  .cta-content .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .cta-content .title {
    font-size: 30px;
  }
}
.cta-content p {
  color: var(--ed-color-common-white);
  margin: 25px 0 35px 0;
}
.cta-content .cta-btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.cta-content .cta-btn-wrap .cta-btn-2 {
  background-color: transparent;
  border: 1px solid var(--ed-color-common-white);
}
.cta-content .cta-btn-wrap .cta-btn-2:before {
  background-color: var(--ed-color-theme-primary);
}
.cta-content .cta-btn-wrap .cta-btn-2:hover {
  border: 1px solid var(--ed-color-theme-primary);
}

.cta-section-3 {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.cta-section-3 .overlay {
  background: rgba(6, 11, 15, 0.35);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.cta-content-3 {
  width: 100%;
  max-width: 100%;
}
.cta-content-3 .section-heading .section-title {
  font-size: 40px;
}
@media only screen and (max-width: 992px) {
  .cta-content-3 .section-heading .section-title {
    font-size: 32px;
  }
}
.cta-content-3 .section-heading .section-text {
  font-size: 18px;
  color: #f8f9fa;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content-3 .cta-btn-wrap {
  justify-content: center;
}
.cta-content-3 .cta-btn i {
  font-size: 14px;
}

/* !END:  Page Header CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/
.testimonial-section {
  background: url(../img/bg-img/testimonials-bg.jpg), var(--ed-color-theme-primary);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.testimonial-section .shapes .shape-1 {
  position: absolute;
  bottom: 0;
  left: 120px;
  z-index: -1;
}
.testimonial-section .shapes .shape-2 {
  position: absolute;
  top: 20%;
  right: 6%;
  z-index: -1;
}
.testimonial-section .section-title {
  color: var(--ed-color-common-white);
}

.testi-item {
  background-color: var(--ed-color-common-white);
  padding: 40px;
  border-radius: 15px;
}
.testi-item .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.testi-item p {
  margin-bottom: 20px;
}
.testi-item .testi-author {
  display: grid;
  align-items: center;
  grid-template-columns: 50px 1fr;
  grid-gap: 15px;
}
.testi-item .testi-author .author-img {
  border-radius: 50%;
  overflow: hidden;
}
.testi-item .testi-author .name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.testi-item .testi-author .name span {
  font-size: 14px;
  color: var(--ed-color-theme-primary);
  line-height: 1;
  display: block;
  margin-top: 5px;
  font-weight: 400;
}

.testimonial-section-2 {
  margin-bottom: -165px;
  position: relative;
  z-index: 2;
}

.testi-carousel {
  padding-bottom: 90px;
}
.testi-carousel .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100%;
}
.testi-carousel .swiper-pagination {
  bottom: 0;
}
.testi-carousel .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  height: 20px;
  width: 20px;
  border: 2px solid #E0E5EB;
  opacity: 1;
  border-radius: 50%;
  position: relative;
}
.testi-carousel .swiper-pagination .swiper-pagination-bullet:before {
  background-color: var(--ed-color-theme-primary);
  content: "";
  height: 7px;
  width: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
}
.testi-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 2px solid var(--ed-color-theme-primary);
  box-shadow: 0 0 8px rgba(118, 90, 255, 0.6);
}
.testi-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  visibility: visible;
  opacity: 1;
}

.testi-item-2 {
  background-color: var(--ed-color-common-white);
  padding: 40px 40px 30px 40px;
  border: 1px solid #E0E5EB;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100%;
}
@media only screen and (max-width: 767px) {
  .testi-item-2 {
    padding: 30px 20px;
  }
}
.testi-item-2 .testi-top-content {
  display: grid;
  align-items: center;
  grid-template-columns: 120px 1fr;
  grid-gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #E0E5EB;
}
@media only screen and (max-width: 992px) {
  .testi-item-2 .testi-top-content {
    grid-template-columns: 1fr;
  }
}
.testi-item-2 .testi-top-content .testi-thumb {
  width: 100%;
  max-width: 120px;
  height: auto;
  aspect-ratio: 120/120;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-item-2 .testi-top-content .testi-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-item-2 .testi-top-content p {
  font-size: 18px;
  margin-bottom: 0;
}
.testi-item-2 .testi-bottom {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  column-gap: 5px;
}
@media screen and (min-width: 1200px) {
  .testi-item-2 .testi-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 0px;
  }
}
.testi-item-2 .testi-bottom .author-info .name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}
.testi-item-2 .testi-bottom .author-info span {
  font-size: 16px;
  color: var(--ed-color-theme-primary);
  font-weight: 400;
}
.testi-item-2 .testi-bottom .testi-review li {
  display: inline-flex;
  color: var(--ed-color-theme-primary);
}
.testi-item-2 .testi-bottom .testi-review li.point {
  margin-left: 5px;
  color: var(--ed-color-text-body);
}

.testimonial-section-3 {
  background-color: #1A2226;
  position: relative;
  z-index: 1;
}
.testimonial-section-3 .shapes .shape {
  position: absolute;
  z-index: -1;
}
.testimonial-section-3 .shapes .shape.shape-1 {
  top: 0;
  left: 0;
}
.testimonial-section-3 .shapes .shape.shape-2 {
  top: 0;
  right: 0;
}

.testi-carousel-wrap-2 {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .testi-carousel-wrap-2 .swiper-arrow {
    display: none;
  }
}
.testi-carousel-wrap-2 .swiper-arrow .swiper-nav {
  color: var(--ed-color-common-white);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ed-color-common-white);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}
.testi-carousel-wrap-2 .swiper-arrow .swiper-nav.swiper-prev {
  left: auto;
  right: -20px;
}

.testi-carousel-2 {
  max-width: 560px;
  width: 100%;
  overflow: hidden;
}

.testi-item-3 {
  background-color: var(--ed-color-common-white);
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  padding: 50px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.testi-item-3:before {
  background-color: rgba(255, 255, 255, 0.1);
  content: "";
  height: 80%;
  width: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  z-index: -1;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .testi-item-3 {
    padding: 30px 20px;
  }
}
.testi-item-3 .title {
  margin-bottom: 15px;
}
.testi-item-3 p {
  margin-bottom: 20px;
}
.testi-item-3 .testi-author {
  display: grid;
  align-items: center;
  grid-template-columns: 50px 1fr;
}
.testi-item-3 .testi-author .testi-author-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.testi-item-3 .testi-author .name {
  font-size: 18px;
  font-weight: 600;
  padding-left: 10px;
  margin-bottom: 0;
}
.testi-item-3 .testi-author .name span {
  color: var(--ed-color-text-body);
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}

.rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
}
.rating-wrapper .star-rating {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #ccc;
  white-space: nowrap;
}
.rating-wrapper .star-rating .star-fill, .rating-wrapper .star-rating .star-empty {
  display: flex;
  gap: 1px;
}
.rating-wrapper .star-rating .star-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: var(--ed-color-theme-primary);
  white-space: nowrap;
  width: 0;
}
.rating-wrapper .rating-value {
  margin-left: 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--ed-color-text-body);
}

.testimonial-section-cxbv {
  position: relative;
  z-index: 1;
}
.testimonial-section-cxbv .section-title {
  color: var(--ed-color-common-black);
}
.testimonial-section-cxbv .testi-item-2 {
  border: 2px solid transparent !important;
  background: linear-gradient(var(--ed-color-common-white) 0 0) padding-box, linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%) border-box !important;
}

/* !END:  Page Header CSS */
/**----------------------------------------
START: Sponsor CSS
----------------------------------------*/
.partners-section {
  background-color: #F3F7FB;
  padding-top: 260px;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
.partners-section .bg-shape {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -29%;
  z-index: -1;
}
.partners-section .bg-shape img {
  width: 100%;
  height: 100%;
}
.partners-section .shape-1 {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .partners-section .shape-1 {
    display: none;
  }
}
.partners-section .shape-2 {
  position: absolute;
  top: 30%;
  right: 0px;
  transform: translateY(-50%);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .partners-section .shape-2 {
    display: none;
  }
}

.partner-item {
  background-color: var(--ed-color-common-white);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E0E5EB;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .partner-item {
    padding: 20px;
  }
}
.partner-item img {
  width: 300px;
  height: auto;
  object-fit: contain;
}

/* !END: Sponsor CSS */
/**----------------------------------------
START: Video CSS
----------------------------------------*/
.video-feature {
  background: var(--ed-color-common-white);
  border: 1px solid #E0E5EB;
  border-radius: 10px;
  padding: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.video-feature .video-thumb {
  position: relative;
  height: 330px;
  margin-bottom: 30px;
}
.video-feature .video-thumb img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-feature .video-thumb .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-feature .video-thumb .video-btn a {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  height: 100px;
  width: 100px;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.video-feature .video-thumb .video-btn a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.video-feature .video-thumb .video-btn a .ripple {
  height: 100px;
  width: 100px;
}
.video-feature .video-thumb .video-btn a .ripple:before, .video-feature .video-thumb .video-btn a .ripple:after {
  height: 100px;
  width: 100px;
}
.video-feature .video-content .title {
  font-size: 30px;
}
@media only screen and (max-width: 992px) {
  .video-feature .video-content .title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 992px) and (max-width: 992px) {
  .video-feature .video-content .title {
    font-size: 22px;
  }
  .video-feature .video-content .title br {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .video-feature .video-content p br {
    display: none;
  }
}
.video-feature:hover {
  box-shadow: 0px 11px 44px 4px rgba(18, 31, 49, 0.1);
}

/* !END: Video CSS */
/**----------------------------------------
START: Event CSS
----------------------------------------*/
.event-section {
  background-color: var(--ed-color-theme-primary);
  position: relative;
  z-index: 1;
}
.event-section .shapes .shape {
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .event-section .shapes .shape {
    display: none;
  }
}
.event-section .shapes .shape.shape-1 {
  top: 60px;
  left: 40px;
}
.event-section .shapes .shape.shape-2 {
  top: 0;
  right: 15%;
}
.event-section .shapes .shape.shape-3 {
  bottom: 0;
  left: 17%;
}
.event-section .shapes .shape.shape-4 {
  top: 35%;
  right: 40px;
}

.event-card {
  background-color: var(--ed-color-common-white);
  display: grid;
  align-items: center;
  grid-template-columns: 192px 1fr;
  grid-gap: 30px;
  padding: 30px;
  border-radius: 10px;
}
@media only screen and (max-width: 992px) {
  .event-card {
    grid-template-columns: 1fr;
  }
}
.event-card .event-thumb {
  max-width: 192px;
  width: 100%;
  height: 211px;
}
.event-card .event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.event-card .event-content .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}
.event-card .event-content .event-list {
  margin-bottom: 20px;
}
.event-card .event-content .event-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.event-card .event-content .ed-primary-btn {
  background-color: rgba(206, 214, 229, 0.15);
  border: 1px solid #C9CFDA;
  color: var(--ed-color-heading-primary);
}
.event-card .event-content .ed-primary-btn:before {
  background-color: var(--ed-color-theme-primary);
  border: 1px solid var(--ed-color-theme-primary);
}
.event-card .event-content .ed-primary-btn:hover {
  color: var(--ed-color-common-white);
}

.event-carousel {
  padding-bottom: 90px;
}
.event-carousel .swiper-pagination {
  bottom: 0;
}
.event-carousel .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  height: 20px;
  width: 20px;
  border: 2px solid var(--ed-color-common-white);
  opacity: 1;
  border-radius: 50%;
  position: relative;
}
.event-carousel .swiper-pagination .swiper-pagination-bullet:before {
  background-color: var(--ed-color-common-white);
  content: "";
  height: 7px;
  width: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
}
.event-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 2px solid var(--ed-color-common-white);
}
.event-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  visibility: visible;
  opacity: 1;
}

.event-details-content {
  background-color: var(--ed-color-grey-1);
  padding: 30px;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .event-details-content {
    padding: 30px 20px;
  }
}
.event-details-content .event-details-img {
  height: 450px;
  margin-bottom: 30px;
}
.event-details-content .event-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.event-details-content .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}
.event-details-content .event-details-list {
  margin-bottom: 40px;
}
.event-details-content .event-details-list li {
  list-style: none;
  display: flex;
  align-items: center;
  align-items: baseline;
  column-gap: 10px;
}
.event-details-content .event-details-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.event-details-content .event-details-list li i {
  color: var(--ed-color-theme-primary);
}
.event-details-content .event-details-list li p {
  margin-bottom: 0;
}
.event-details-content .event-details-list li p span {
  color: var(--ed-color-heading-primary);
  font-weight: 500;
}
.event-details-content .event-map-wrapper {
  height: 350px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 40px;
}
.event-details-content .event-map-wrapper iframe {
  border-radius: 15px;
}
.event-details-content .inner-team-wrap {
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .event-details-content .inner-team-wrap {
    margin-top: -20px;
  }
}
.event-details-content .inner-team-wrap .team-item-3 {
  background-color: var(--ed-color-common-white);
}
.event-details-content .inner-team-wrap .team-item-3 .team-content .social-list li:not(:last-of-type) {
  margin-right: 15px;
}
.event-details-content .inner-team-wrap .team-item-3 .team-content .social-list a {
  color: var(--ed-color-text-body);
  background-color: transparent;
  height: auto;
  width: auto;
  border: none;
}
.event-details-content .inner-team-wrap .team-item-3 .team-content .social-list a:hover {
  background-color: transparent;
}

.event-sidebar {
  background-color: var(--ed-color-grey-1);
}

/* !END: Event CSS */
/**----------------------------------------
START: Popular CSS
----------------------------------------*/
.popular-course {
  margin-bottom: -161px;
}

.popular-item {
  background-color: #F2F4F7;
  position: relative;
  z-index: 1;
  padding: 60px;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .popular-item {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .popular-item {
    padding: 30px 20px;
  }
}
.popular-item .men {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .popular-item .men {
    display: none;
  }
}
.popular-item .shapes .shape {
  position: absolute;
  z-index: -2;
}
.popular-item .shapes .shape.shape-1 {
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .popular-item .shapes .shape.shape-1 {
    display: none;
  }
}
.popular-item .shapes .shape.shape-2 {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
.popular-item .shapes .shape.shape-2 img {
  width: 100%;
  height: 100%;
}
.popular-item span {
  color: var(--ed-color-theme-primary);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.popular-item .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .popular-item .title {
    font-size: 22px;
  }
}

/* !END: Popular CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/
.insta-wrap {
  padding: 0 15px;
}

.insta-item {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}
.insta-item .overlay {
  background-color: var(--ed-color-theme-primary);
  height: 0;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.insta-item .intra-thumb {
  height: 307px;
}
.insta-item .intra-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.insta-item .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.insta-item .icon a {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insta-item:hover .overlay {
  height: 100%;
}
.insta-item:hover .icon {
  transform: translate(-50%, -50%) scale(1);
}

/* !END:  Page Header CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/
.pricing__tab .nav-tabs {
  border: none;
}

.pricing__tab .nav .nav-item .nav-link {
  padding: 0;
  padding-right: 90px;
  background: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--ed-color-heading-primary);
  text-transform: capitalize;
  position: relative;
  outline: none;
  font-size: 16px;
  border: none;
}

.pricing__tab .nav .nav-item .nav-link:focus {
  outline: none;
}

.pricing__tab .nav .nav-item .nav-link::after {
  background-color: var(--ed-color-grey-1);
  position: absolute;
  content: "";
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 54px;
  height: 22px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  border-radius: 11px;
}

.pricing__tab .nav .nav-item .nav-link::before {
  background-color: var(--ed-color-theme-primary);
  position: absolute;
  content: "";
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pricing__tab .nav .nav-item .nav-link.active {
  color: var(--ed-color-theme-primary);
  border: none;
}

.pricing__tab .nav .nav-item .nav-link.active::before {
  right: 49px;
}

.pricing__tab .nav .nav-item:last-child .nav-link {
  padding-right: 0;
}

.pricing__tab .nav .nav-item:last-child .nav-link::after {
  display: none;
}

.pricing__tab .nav .nav-item:last-child .nav-link::before {
  display: none;
}

.pricing-item {
  background-color: var(--ed-color-grey-1);
  padding: 35px 30px;
  border-radius: 15px;
}
.pricing-item .pricing-top {
  background-color: var(--ed-color-common-white);
  border: 1px solid #E0E5EB;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}
.pricing-item .pricing-top .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.pricing-item .pricing-top .price {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
.pricing-item .pricing-top .price span {
  color: var(--ed-color-heading-primary);
  font-size: 14px;
  font-weight: 400;
}
.pricing-item .pricing-top p {
  margin-bottom: 0;
}
.pricing-item .pricing-list {
  list-style: none;
}
.pricing-item .pricing-list li {
  font-size: 16px;
  line-height: 1;
}
.pricing-item .pricing-list li i {
  color: var(--ed-color-theme-primary);
  margin-right: 10px;
}
.pricing-item .pricing-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.pricing-item .pricing-list li.cross i {
  color: var(--ed-color-text-body);
}
.pricing-item .pricing-btn {
  margin-top: 30px;
}
.pricing-item .pricing-btn .ed-primary-btn {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  width: 100%;
  justify-content: center;
  border: 1px solid var(--ed-color-theme-primary);
  font-weight: 600;
}
.pricing-item .pricing-btn .ed-primary-btn:before {
  background-color: var(--ed-color-theme-primary);
}
.pricing-item .pricing-btn .ed-primary-btn:hover {
  color: var(--ed-color-common-white);
}
.pricing-item.active .pricing-top {
  background-color: var(--ed-color-theme-primary);
}
.pricing-item.active .pricing-top .title {
  color: var(--ed-color-common-white);
}
.pricing-item.active .pricing-top .price {
  color: var(--ed-color-common-white);
}
.pricing-item.active .pricing-top .price span {
  color: var(--ed-color-common-white);
}
.pricing-item.active .pricing-top p {
  color: var(--ed-color-common-white);
}
.pricing-item.active .pricing-btn .ed-primary-btn {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}

/* !END:  Page Header CSS */
/**----------------------------------------
START: Shop CSS
----------------------------------------*/
.shop-top .left-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.shop-top .select-control {
  background-color: transparent;
  border: 1px solid var(--ed-color-border-1);
  padding: 14px 30px;
  padding-right: 60px;
  height: auto;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.shop-top .select-control:after {
  border: none;
  height: auto;
  width: auto;
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 700;
  content: "\f0d7";
  color: var(--ed-color-text-body);
  position: absolute;
  top: 63%;
  right: 20px;
  transform: translateY(-50%);
}
.shop-top .select-control .list {
  background-color: var(--ed-color-bg-1);
}
.shop-top .select-control.open:after {
  transform: translateY(-50%);
}

.shop-item {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #E0E5EB;
}
.shop-item .shop-thumb {
  background-color: var(--ed-color-grey-1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 300px;
  border-bottom: 1px solid #E0E5EB;
}
.shop-item .shop-thumb .shop-thumb-inner {
  max-width: 124px;
  height: 188px;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.shop-item .shop-thumb .shop-thumb-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-item .shop-thumb img {
  transform: scale(1);
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.shop-item .shop-thumb .sale {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 5px 20px;
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-block;
  z-index: 2;
  border-radius: 100px;
  border: 1px solid #E0E5EB;
}
.shop-item .shop-thumb .shop-list {
  list-style: none;
  position: absolute;
  top: 30px;
  right: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}
.shop-item .shop-thumb .shop-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.shop-item .shop-thumb .shop-list li a {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-heading-primary);
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.shop-item .shop-thumb .shop-list li a i {
  line-height: 1;
  display: block;
}
.shop-item .shop-thumb .shop-list li a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.shop-item:hover .shop-thumb img {
  transform: scale(1.03);
}
.shop-item:hover .shop-thumb .overlay {
  visibility: visible;
  opacity: 1;
}
.shop-item:hover .shop-thumb .shop-list {
  right: 20px;
  visibility: visible;
  opacity: 1;
}

.shop-content {
  padding: 30px;
  border-top: none;
  border-radius: 0 0 6px 6px;
}
@media only screen and (max-width: 767px) {
  .shop-content {
    padding: 30px 20px;
  }
}
.shop-content .category {
  font-size: 12px;
  font-weight: 400;
  color: var(--ed-color-text-body);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}
.shop-content .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}
.shop-content .review-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
  row-gap: 5px;
}
.shop-content .review-wrap .review {
  list-style: none;
}
.shop-content .review-wrap .review li {
  font-size: 14px;
  display: inline-flex;
  color: #FFC92E;
}
.shop-content .price {
  color: var(--ed-color-theme-primary);
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.shop-content .price .offer {
  margin-top: 0;
  margin-right: 10px;
  text-decoration: line-through;
  color: var(--ed-color-text-body);
}

@media only screen and (max-width: 992px) {
  .product-details-wrap {
    margin-bottom: 40px;
  }
}
.product-details-wrap .product-slider-wrap {
  display: grid;
  grid-template-columns: 112px 1fr;
  grid-gap: 24px;
}
@media only screen and (max-width: 767px) {
  .product-details-wrap .product-slider-wrap {
    grid-template-columns: 1fr;
  }
}
.product-details-wrap .product-gallary {
  position: relative;
  margin: 0;
  height: 100%;
}
.product-details-wrap .product-gallary .sale {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 100px;
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 2;
}
.product-details-wrap .product-gallary .gallary-item {
  background-color: var(--ed-color-grey-1);
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .product-details-wrap .product-gallary .gallary-item {
    height: 500px;
  }
}
.product-details-wrap .product-gallary .gallary-item .gallary-item-thumb {
  max-width: 307px;
  height: 466px;
}
@media only screen and (max-width: 767px) {
  .product-details-wrap .product-gallary .gallary-item .gallary-item-thumb {
    max-width: 250px;
    height: 400px;
    margin-top: 50px;
  }
}
.product-details-wrap .product-gallary .gallary-item .gallary-item-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.product-details-wrap .product-gallary .gallary-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-details-wrap .product-gallary-thumb {
  height: 375px;
}
@media only screen and (max-width: 767px) {
  .product-details-wrap .product-gallary-thumb {
    max-width: 100%;
    padding: 0 15px;
    left: 0;
  }
}
.product-details-wrap .product-gallary-thumb .thumb-item {
  height: 112px;
  width: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DEE0E3;
  cursor: pointer;
}
.product-details-wrap .product-gallary-thumb .thumb-item .thumb-item-inner {
  height: 80px;
  width: 70px;
}
.product-details-wrap .product-gallary-thumb .thumb-item .thumb-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-details-wrap .product-gallary-thumb .thumb-item img {
  width: auto;
  height: auto;
  object-fit: inherit;
}
.product-details-wrap .product-gallary-thumb .swiper-slide-thumb-active .thumb-item {
  border: 1px solid var(--ed-color-theme-primary);
}

.product-info {
  padding-left: 20px;
}
@media only screen and (max-width: 992px) {
  .product-info {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .product-info {
    padding-top: 40px;
  }
}
.product-info .category {
  color: var(--ed-color-theme-primary);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: block;
}
.product-info .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media only screen and (max-width: 992px) {
  .product-info .title {
    font-size: 24px;
  }
}
.product-info .rating-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.product-info .rating-wrap .rating {
  display: flex;
  align-items: center;
  list-style: none;
}
.product-info .rating-wrap .rating li {
  color: #FFC92E;
}
.product-info .rating-wrap .rating li:not(:last-of-type) {
  margin-right: 2px;
}
.product-info .rating-wrap span {
  color: var(--ed-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
}
.product-info .price {
  font-size: 22px;
  nav-down: 600;
  margin-bottom: 30px;
}
.product-info .price span {
  font-weight: 400;
  color: var(--ed-color-text-body);
  text-decoration: line-through;
  margin-left: 10px;
}
.product-info .product-desc-wrap {
  border-top: 1px solid var(--ed-color-border-1);
  border-bottom: 1px solid var(--ed-color-border-1);
  padding: 20px 0;
  margin-bottom: 20px;
}
.product-info .product-desc-wrap .desc {
  margin-bottom: 0;
  margin-bottom: 10px;
}
.product-info .product-desc-wrap .view-text {
  font-size: 16px;
  color: var(--ed-color-heading-primary);
}
.product-info .product-desc-wrap .view-text i {
  margin-right: 10px;
}
.product-info .item-left-line {
  margin-bottom: 30px;
}
.product-info .item-left-line .line {
  background: #EBEBEB;
  height: 4px;
  width: 100%;
  position: relative;
  margin-top: 10px;
}
.product-info .item-left-line .line:before {
  background-color: var(--ed-color-theme-primary);
  content: "";
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.product-info .details-list {
  list-style: none;
}
.product-info .details-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--ed-color-heading-primary);
}
.product-info .details-list li i {
  width: 20px;
}
.product-info .details-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.product-info .product-btn {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin: 30px 0;
}
.product-info .product-btn input {
  background-color: var(--ed-color-theme-primary);
  color: #fff;
  width: 100%;
  height: 45px;
  line-height: 45px;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  text-align: center;
}
.product-info .product-btn .cart-btn-wrap-2 {
  width: 100%;
}
.product-info .product-btn .cart-btn-wrap-2 .cart-btn {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-heading-primary);
  border: 2px solid var(--ed-color-heading-primary);
  width: 100%;
  border-radius: 100px;
  padding: 15px 30px;
  text-align: center;
  justify-content: center;
}
.product-info .product-btn .cart-btn-wrap-2 .cart-btn:before {
  display: none;
}
.product-info .product-btn .cart-btn-wrap-2 .cart-btn:hover {
  background-color: var(--ed-color-heading-primary);
  color: var(--ed-color-common-white);
}
.product-info .shop-details-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 30px;
}
.product-info .product-meta {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.product-info .product-meta li a {
  color: var(--ed-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
}
.product-info .product-meta li a:hover {
  color: var(--ed-color-theme-primary);
}

.reviews-wrap {
  padding-right: 20px;
}
@media only screen and (max-width: 992px) {
  .reviews-wrap {
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.reviews-wrap .reviews-list .review-item {
  display: grid;
  align-items: center;
  grid-template-columns: 90px 1fr;
  grid-gap: 15px;
  padding: 30px;
  border: 1px solid var(--ed-color-border-1);
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .reviews-wrap .reviews-list .review-item {
    grid-template-columns: 1fr;
  }
}
.reviews-wrap .reviews-list .review-item:not(:last-of-type) {
  margin-bottom: 30px;
}
.reviews-wrap .reviews-list .review-item img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}
.reviews-wrap .reviews-list .review-item .content .content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.reviews-wrap .reviews-list .review-item .content .content-top .name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.reviews-wrap .reviews-list .review-item .content .content-top .name span {
  color: var(--ed-color-text-body);
  font-size: 15px;
  display: block;
  margin-top: 7px;
}
.reviews-wrap .reviews-list .review-item .content .content-top ul {
  list-style: none;
}
.reviews-wrap .reviews-list .review-item .content .content-top ul li {
  display: inline-flex;
  color: #FFC92E;
}
.reviews-wrap .reviews-list .review-item .content .content-top ul li:not(:last-of-type) {
  margin-right: 2px;
}
.reviews-wrap .reviews-list .review-item .content p {
  margin-bottom: 0;
}

.review-form-wrap .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.review-form-wrap .publish {
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}
.review-form-wrap .review-box {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.review-form-wrap .review-box span {
  color: var(--ed-color-heading-primary);
}
.review-form-wrap .review-box .review {
  list-style: none;
}
.review-form-wrap .review-box .review li {
  display: inline-flex;
  color: #FFC92E;
}
.review-form-wrap .review-box .review li:not(:last-of-type) {
  margin-right: 2px;
}
.review-form-wrap .review-form {
  background-color: transparent;
  padding: 0;
  border: none;
  margin-top: 40px;
}
.review-form-wrap .checkbox-wrap {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.review-form-wrap .checkbox-wrap input {
  width: 15px;
  height: 15px;
  accent-color: var(--ed-color-theme-primary);
}
.review-form-wrap .checkbox-wrap label {
  color: var(--ed-color-text-body);
  cursor: pointer;
  margin-left: 10px;
}
.review-form-wrap .submit-btn .rr-primary-btn {
  padding: 15px 35px;
}

.tab-navigation {
  border-bottom: 1px solid var(--ed-color-border-1);
  padding-bottom: 30px;
}

.tab-navigation button {
  color: var(--ed-color-text-body);
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  letter-spacing: 0;
  padding: 0;
  margin-right: 30px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tab-navigation button.active,
.tab-navigation button:hover {
  color: var(--ed-color-heading-primary);
}

/*** 7.2 - Tab Description ***/
.shop-tab-content .tab-pane {
  margin-top: 40px;
}
.shop-tab-content .tab-pane .desc-wrap {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: 1fr 535px;
}
@media only screen and (max-width: 992px) {
  .shop-tab-content .tab-pane .desc-wrap {
    grid-template-columns: 1fr;
  }
}
.shop-tab-content .tab-pane .desc-wrap .right-content img {
  height: 220px;
  max-width: 535px;
  width: 100%;
  object-fit: cover;
}

.description-meta {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 10px;
}

.description-meta li span {
  color: var(--ed-color-theme-primary);
  font-weight: 600;
  margin-right: 5px;
}

/*** 7.3 - Tab Additional Information ***/
.product-table {
  background-color: var(--ed-color-grey-1);
  margin: 0;
  margin-top: 40px;
  --bs-table-bg: transparent;
}
.product-table:not(caption) > * > * {
  border-bottom: 1px solid var(--ed-color-border-1);
}

.product-table > :not(:last-child) > :last-child > * {
  border-color: var(--ed-color-border-1);
}

.product-table tbody tr td,
.product-table thead tr th {
  text-align: center;
}

.product-table tbody tr td:not(:last-of-type),
.product-table thead tr th:not(:last-of-type) {
  border-right: 1px solid var(--ed-color-border-1);
}

.product-table tbody tr td:not(:last-of-type) {
  border-bottom: 1px solid var(--ed-color-border-1);
}

.product-table thead tr th {
  color: var(--ed-color-theme-primary);
}

.product-table tbody tr td {
  color: var(--ed-color-heading-primary);
  padding: 15px 0;
}

/*** 7.4 - Tab Review ***/
.review .comment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.review .comment-list > li {
  background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.3) 50%, rgba(105, 85, 180, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 30px;
  align-items: center;
  padding: 40px;
}

.review .comment-list .comment-thumb img {
  border-radius: 50%;
}

.review .comment-list .comment-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review .comment-list .comment-text h3 span {
  font-size: 14px;
  font-weight: 600;
  color: #ddd;
  display: block;
}

.review .comment-list .comment-text p {
  margin: 0;
}

/* !END: Shop CSS */
/**----------------------------------------
    START: Checkout Page CSS
----------------------------------------*/
.checkout-forms {
  padding: 40px;
  margin-top: 0;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}
.checkout-forms .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0px;
}
.checkout-forms p {
  margin-bottom: 28px;
}
.checkout-forms .form-item {
  position: relative;
  margin-bottom: 24px;
}
.checkout-forms .form-item .form-control {
  background-color: transparent;
  border: 1px solid #E0E5EB;
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  padding: 13px 20px;
  margin-bottom: 0px;
  width: 100%;
  border-radius: 6px;
}
.checkout-forms .form-item .form-control::-webkit-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.checkout-forms .form-item .form-control:-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.checkout-forms .form-item .form-control::-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.checkout-forms .form-item .form-control:-ms-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.checkout-forms .form-item .form-control.is-invalid {
  background-image: none;
}
.checkout-forms .form-item .form-control.is-invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.checkout-forms .form-item .form-control.is-valid {
  background-image: none;
}
.checkout-forms .form-item .form-control.is-valid + .icon {
  color: var(--bs-form-valid-color);
}
.checkout-forms .form-item .icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.checkout-forms .form-item.address-item .icon {
  top: 24px !important;
}
.checkout-forms .form-check {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.checkout-forms .form-check .form-check-input[type=checkbox] {
  border: 2px solid var(--ed-color-theme-primary);
  background-color: transparent;
}
.checkout-forms .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem var(--ed-color-theme-primary-rgba-25);
  border-color: var(--ed-color-theme-primary);
}
.checkout-forms .form-check .form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.checkout-forms .form-check .form-check-input:checked {
  border-color: var(--ed-color-theme-primary);
  background-color: var(--ed-color-theme-primary);
}
.checkout-forms .form-check .form-check-label {
  position: relative;
  top: 3px;
  font-weight: normal;
  color: var(--ed-color-text-body);
  cursor: pointer;
}
.checkout-forms .form-check .form-check-label a {
  color: var(--ed-color-theme-primary-rgb);
}
.checkout-forms .form-check .form-check-label a:hover {
  color: var(--ed-color-theme-secondary-rgb);
}
.checkout-forms .form-check.block-display {
  display: block;
}
.checkout-forms .form-check.block-display .form-check-label {
  top: initial;
}
.checkout-forms .ed-primary-btn[type=submit] {
  font-weight: 600;
  border-radius: 4px;
  justify-content: center;
  width: 100%;
}
.checkout-forms hr {
  color: var(--ed-color-border-1);
  border: 1px solid var(--ed-color-border-1);
}
.checkout-forms .was-validated .form-control:invalid {
  background-image: none;
}
.checkout-forms .was-validated .form-control:invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.checkout-forms .was-validated .form-control:valid {
  background-image: none;
}
.checkout-forms .was-validated .form-control:valid + .icon {
  color: var(--bs-form-valid-color);
}

.checkout-order-details-warp {
  background-color: var(--ed-color-grey-1);
  padding: 40px;
  margin-top: 0;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}
.checkout-order-details-warp .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0px;
}
.checkout-order-details-warp p {
  margin-bottom: 28px;
}
.checkout-order-details-warp .order-table-wrap {
  overflow-y: auto;
}
.checkout-order-details-warp .order-table-wrap table thead {
  border: none;
  border-bottom: 1px solid var(--ed-color-border-1);
}
.checkout-order-details-warp .order-table-wrap table thead tr th {
  background-color: var(--ed-color-grey-1);
  color: var(--ed-color-heading-primary);
  border-bottom: none;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  text-align: start;
  padding: 12px 0px;
  padding-bottom: 16px;
}
.checkout-order-details-warp .order-table-wrap table thead tr th.order-course-price {
  text-align: end;
}
.checkout-order-details-warp .order-table-wrap table tbody {
  border: none;
  border-bottom: 1px solid var(--ed-color-border-1);
}
.checkout-order-details-warp .order-table-wrap table tbody tr {
  vertical-align: top;
}
.checkout-order-details-warp .order-table-wrap table tbody tr td {
  background-color: var(--ed-color-grey-1);
  color: var(--ed-color-heading-primary);
  font-weight: 500;
  padding: 12px 0px;
}
.checkout-order-details-warp .order-table-wrap table tbody tr td.order-course-item .order-details-wrap {
  text-align: start;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  column-gap: 8px;
}
.checkout-order-details-warp .order-table-wrap table tbody tr td.order-course-item .order-details-wrap .course-thumb-wrap {
  width: 120px;
  max-width: 120px;
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-order-details-warp .order-table-wrap table tbody tr td.order-course-item .order-details-wrap .course-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-order-details-warp .order-table-wrap table tbody tr td.order-course-item .course-titles .course-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.4;
}
.checkout-order-details-warp .order-table-wrap table tbody tr td.order-course-item .course-titles .category-title {
  color: var(--ed-color-theme-primary);
  font-size: 14px;
  font-weight: 400;
  display: block;
  line-height: 1;
}
.checkout-order-details-warp .order-table-wrap table tbody tr td.order-course-price {
  text-align: end;
}
.checkout-order-details-warp .order-table-wrap table tbody tr td.order-course-price span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
}
.checkout-order-details-warp .order-table-wrap table tfoot {
  border: none;
  border-top: 1px solid var(--ed-color-border-1);
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td {
  background-color: var(--ed-color-grey-1);
  color: var(--ed-color-heading-primary);
  border-bottom: none;
  text-align: start;
  padding: 12px 0px;
  padding-top: 0px;
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td.order-total-title {
  padding-top: 16px;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td.order-total-price {
  padding-top: 16px;
  text-align: end;
  color: var(--ed-color-theme-primary);
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .form-label {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .form-check {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .form-check .form-check-input[type=checkbox],
.checkout-order-details-warp .order-table-wrap table tfoot tr td .form-check .form-check-input[type=radio] {
  border: 2px solid var(--ed-color-theme-primary);
  background-color: transparent;
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem var(--ed-color-theme-primary-rgba-25);
  border-color: var(--ed-color-theme-primary);
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .form-check .form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .form-check .form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .form-check .form-check-input:checked {
  border-color: var(--ed-color-theme-primary);
  background-color: var(--ed-color-theme-primary);
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .form-check .form-check-label {
  font-size: 16px;
  text-transform: none;
  position: relative;
  top: 3px;
  font-weight: normal;
  color: var(--ed-color-text-body);
  cursor: pointer;
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .form-check .form-check-label a {
  color: var(--ed-color-theme-primary-rgb);
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .form-check .form-check-label a:hover {
  color: var(--ed-color-theme-secondary-rgb);
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .form-check.block-display {
  display: block;
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .form-check.block-display .form-check-label {
  top: initial;
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .cards-img {
  margin: 8px 0px;
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .ssl-secure {
  margin: 8px 0px;
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 16px;
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .ssl-secure .ssl-details {
  text-align: start;
  font-size: 16px;
  font-weight: 500;
}
.checkout-order-details-warp .order-table-wrap table tfoot tr td .order-btn {
  width: 100%;
  justify-content: center;
}
.checkout-order-details-warp .order-table-wrap table tfoot tr:last-child td {
  padding-bottom: 0px;
}

/* !END: Checkout Page CSS */
/**----------------------------------------
    START: Cart CSS
----------------------------------------*/
.cart-section-title {
  margin-bottom: 16px;
}
.cart-section-title .main-title {
  text-transform: capitalize;
}
.cart-section-title .items-count {
  font-weight: 400;
}

.cart-select-all {
  border: 1px solid var(--ed-color-border-1);
  border-radius: 15px;
  display: flex;
  margin-bottom: 24px;
  padding: 12px 16px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cart-select-all .form-check {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.cart-select-all .form-check .form-check-input[type=checkbox] {
  border: 2px solid var(--ed-color-theme-primary);
  background-color: transparent;
}
.cart-select-all .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem var(--ed-color-theme-primary-rgba-25);
  border-color: var(--ed-color-theme-primary);
}
.cart-select-all .form-check .form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.cart-select-all .form-check .form-check-input:checked {
  border-color: var(--ed-color-theme-primary);
  background-color: var(--ed-color-theme-primary);
}
.cart-select-all .form-check .form-check-label {
  position: relative;
  top: 3px;
  font-weight: 500;
  color: var(--ed-color-heading-primary);
  font-size: 18px;
}
.cart-select-all .cart-items-delete {
  font-weight: 400;
  padding: 8px 12px;
  color: var(--bs-danger-text-emphasis);
  background-color: var(--bs-danger-bg-subtle);
  border: 1px solid var(--bs-danger-text-emphasis);
}
.cart-select-all .cart-items-delete i {
  margin-inline-start: 8px;
  margin-inline-end: 8px;
  margin-top: 0px;
}

.cart-table {
  background-color: var(--ed-color-grey-1);
  border: 1px solid var(--ed-color-border-1);
  border-radius: 15px;
  overflow-y: auto;
}
@media only screen and (max-width: 992px) {
  .cart-table table {
    width: 900px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table table {
    width: 100%;
  }
}
.cart-table thead {
  border: none;
  border-bottom: 1px solid var(--ed-color-border-1);
}
.cart-table thead tr th {
  background-color: var(--ed-color-grey-1);
  color: var(--ed-color-heading-primary);
  border-bottom: none;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: start;
  padding: 12px 12px;
}
.cart-table thead tr th.cart-course-price {
  text-align: center;
  padding-inline-end: 16px;
}
.cart-table tbody {
  border: none;
  border-bottom: 1px solid var(--ed-color-border-1);
}
.cart-table tbody tr {
  vertical-align: top;
}
.cart-table tbody tr td {
  background-color: var(--ed-color-grey-1);
  color: var(--ed-color-heading-primary);
  font-weight: 500;
  padding: 12px 0px;
  padding-inline-start: 16px;
}
.cart-table tbody tr td.cart-course-remove {
  text-align: start;
  color: var(--ed-color-heading-primary);
  vertical-align: middle;
}
.cart-table tbody tr td.cart-course-remove .form-check-input[type=checkbox] {
  border: 2px solid var(--ed-color-theme-primary);
  background-color: transparent;
}
.cart-table tbody tr td.cart-course-remove .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem var(--ed-color-theme-primary-rgba-25);
  border-color: var(--ed-color-theme-primary);
}
.cart-table tbody tr td.cart-course-remove .form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.cart-table tbody tr td.cart-course-remove .form-check-input:checked {
  border-color: var(--ed-color-theme-primary);
  background-color: var(--ed-color-theme-primary);
}
.cart-table tbody tr td.cart-course-item .course-details-wrap {
  text-align: start;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}
.cart-table tbody tr td.cart-course-item .course-details-wrap .course-thumb-wrap {
  width: 140px;
  max-width: 140px;
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-table tbody tr td.cart-course-item .course-details-wrap .course-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-table tbody tr td.cart-course-item .course-titles .course-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}
.cart-table tbody tr td.cart-course-item .course-titles .category-title {
  color: var(--ed-color-theme-primary);
  display: block;
  line-height: 1;
}
.cart-table tbody tr td.cart-course-item .course-titles .course-specifics {
  margin-bottom: 10px;
}
.cart-table tbody tr td.cart-course-item .course-titles .course-specifics li {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  column-gap: 7px;
}
.cart-table tbody tr td.cart-course-item .course-titles .course-specifics li:not(:last-of-type) {
  margin-right: 20px;
}
.cart-table tbody tr td.cart-course-item .course-titles .course-specifics li i {
  font-size: 14px;
}
.cart-table tbody tr td.cart-course-item .course-titles .course-instructor {
  display: grid;
  align-items: center;
  grid-template-columns: 45px 1fr;
  grid-gap: 12px;
}
.cart-table tbody tr td.cart-course-item .course-titles .course-instructor .instructor-img {
  width: 100%;
  max-width: 45px;
  height: auto;
  aspect-ratio: 45/45;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-table tbody tr td.cart-course-item .course-titles .course-instructor .instructor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.cart-table tbody tr td.cart-course-item .course-titles .course-instructor .instructor-info .name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
.cart-table tbody tr td.cart-course-item .course-titles .course-instructor .instructor-info span {
  color: var(--ed-color-theme-primary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}
.cart-table tbody tr td.cart-course-item .course-rating-date-wrap .course-rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 12px;
}
.cart-table tbody tr td.cart-course-item .course-rating-date-wrap .course-rating-wrapper .star-rating {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #ccc;
  white-space: nowrap;
}
.cart-table tbody tr td.cart-course-item .course-rating-date-wrap .course-rating-wrapper .star-rating .star-fill, .cart-table tbody tr td.cart-course-item .course-rating-date-wrap .course-rating-wrapper .star-rating .star-empty {
  display: flex;
  gap: 1px;
}
.cart-table tbody tr td.cart-course-item .course-rating-date-wrap .course-rating-wrapper .star-rating .star-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: var(--ed-color-theme-primary);
  white-space: nowrap;
  width: 0;
}
.cart-table tbody tr td.cart-course-item .course-rating-date-wrap .course-rating-wrapper .rating-value {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ed-color-text-body);
}
.cart-table tbody tr td.cart-course-item .course-rating-date-wrap .course-date {
  font-size: 16px;
  font-weight: 500;
  color: var(--ed-color-heading-primary);
}
.cart-table tbody tr td.cart-course-item .course-rating-date-wrap .course-date i {
  color: var(--ed-color-theme-primary);
  margin-inline-end: 8px;
}
.cart-table tbody tr td.cart-course-price {
  text-align: center;
  padding-inline-end: 16px;
}
.cart-table tbody tr td.cart-course-price span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
}
.cart-table tbody tr td.cart-course-price .cart-one-item-delete {
  font-weight: 400;
  padding: 8px 12px;
  color: var(--bs-danger-text-emphasis);
  background-color: var(--bs-danger-bg-subtle);
  border: 1px solid var(--bs-danger-text-emphasis);
}
.cart-table tbody tr td.cart-course-price .cart-one-item-delete i {
  margin-inline-start: 8px;
  margin-inline-end: 8px;
  margin-top: 0px;
}

.coupon-wrap {
  background-color: var(--ed-color-grey-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
  padding: 30px;
}
.coupon-wrap .coupon-details {
  display: grid;
  grid-template-columns: 295px 1fr;
  align-items: center;
  grid-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .coupon-wrap .coupon-details {
    grid-template-columns: 1fr;
  }
}
.coupon-wrap .coupon-details .form-control {
  background-color: var(--ed-color-common-white);
  box-shadow: none;
  font-size: 14px;
  border: 1px solid transparent;
  color: var(--ed-color-text-body);
  padding: 14px 20px;
  border-radius: 0;
}
.coupon-wrap .coupon-details .form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: var(--ed-color-text-body);
}
.coupon-wrap .coupon-details .form-control:-moz-placeholder {
  font-size: 14px;
  color: var(--ed-color-text-body);
}
.coupon-wrap .coupon-details .form-control::-moz-placeholder {
  font-size: 14px;
  color: var(--ed-color-text-body);
}
.coupon-wrap .coupon-details .form-control:-ms-input-placeholder {
  font-size: 14px;
  color: var(--ed-color-text-body);
}
.coupon-wrap .coupon-details .rr-primary-btn {
  font-size: 14px;
  padding: 17px 30px;
  border: none;
}
.coupon-wrap .coupon-details {
  background-color: transparent;
  color: var(--ed-color-heading-primary);
  font-size: 14px;
  padding: 17px 30px;
  border: 1px solid var(--ed-color-border-1);
  text-transform: uppercase;
}
.coupon-wrap .coupon-details:before {
  background-color: var(--ed-color-theme-primary);
}
.coupon-wrap .coupon-details:hover {
  color: var(--ed-color-common-white);
  border: 1px solid var(--ed-color-theme-primary);
}

.cart-help {
  font-weight: 500;
  font-size: 18px;
  padding: 15px 0px;
}
.cart-help a {
  color: var(--ed-color-theme-primary);
  text-transform: capitalize;
  background: linear-gradient(var(--ed-color-theme-primary) 0%, var(--ed-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cart-help a:hover {
  color: var(--ed-color-theme-primary);
  background-size: 100% 2px;
}
@media only screen and (max-width: 992px) {
  .cart-help {
    margin-top: 24px;
  }
}

.checkout-wrapper {
  background-color: var(--ed-color-grey-1);
  max-width: 600px;
  width: 100%;
  border: 1px solid var(--ed-color-border-1);
  border-radius: 15px;
  padding: 24px 0;
  margin-top: 24px;
}
.checkout-wrapper .checkout-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 15px;
  padding: 0px 35px;
}
.checkout-wrapper .checkout-item:not(:last-of-type) {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ed-color-border-1);
}
.checkout-wrapper .checkout-item .title {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
}
.checkout-wrapper .checkout-item .price {
  color: var(--ed-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
}
.checkout-wrapper .checkout-item.checkout-title .title {
  color: var(--ed-color-heading-primary);
  font-weight: 600;
  text-transform: capitalize;
  font-size: 20px;
}
.checkout-wrapper .checkout-item.checkout-total .title {
  color: var(--ed-color-heading-primary);
  font-weight: 600;
  text-transform: capitalize;
  font-size: 20px;
}
.checkout-wrapper .checkout-item.checkout-total .price {
  color: var(--ed-color-heading-primary);
  font-size: 18px;
  font-weight: 700;
}

.checkout-proceed {
  margin-top: 24px;
}

/* !END: Cart CSS */
/**----------------------------------------
START: Course Category CSS
----------------------------------------*/
.course-category {
  background-color: var(--ed-color-grey-1);
}

.category-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 17px;
}
.category-items:not(:last-of-type) {
  margin-bottom: 17px;
}
.category-items .category-item:not(:last-of-type) {
  margin-right: 17px;
}
.category-items .category-item a {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-heading-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  padding: 7.5px 30px 7.5px 5px;
  display: inline-flex;
  align-items: center;
  column-gap: 15px;
  border-radius: 100px;
  border: 1px solid #E0E5EB;
}
@media only screen and (max-width: 767px) {
  .category-items .category-item a {
    font-size: 14px;
    padding: 7.5px 20px 7.5px 5px;
  }
}
.category-items .category-item a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.category-items .category-item a span {
  background-color: var(--ed-color-grey-1);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.category-items .category-item a span img {
  height: 30px;
  width: 30px;
}

/* !END: Course Category CSS */
/**----------------------------------------
START: Home 6 CSS
----------------------------------------*/
.header-6 .shape {
  position: absolute;
  bottom: -34px;
  left: 0;
  width: 100%;
  height: 41px;
}
@media only screen and (max-width: 992px) {
  .header-6 .shape {
    display: none;
  }
}
.header-6 .shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-6 .top-bar {
  background-color: var(--ed-color-theme-primary);
}
.header-6 .top-bar .top-bar-inner .top-bar-left ul li a {
  color: var(--ed-color-common-white);
}
.header-6 .top-bar .top-bar-inner .top-bar-right .register-box {
  padding-right: 0;
  margin-right: 0;
  border: none;
}
.header-6 .top-bar .top-bar-inner .top-bar-right .register-box a {
  color: var(--ed-color-common-white);
}
.header-6 .top-bar .top-bar-inner .top-bar-right .register-box a:hover {
  color: var(--ed-color-common-white);
}
.header-6 .primary-header .primary-header-inner .header-menu-wrap ul li {
  margin: 0 20px;
}
.header-6 .primary-header .primary-header-inner .header-menu-wrap ul li a {
  text-transform: capitalize;
}
.header-6 .primary-header .primary-header-inner .header-menu-wrap ul li:first-child {
  margin-left: 0;
}
.header-6 .primary-header .primary-header-inner .header-menu-wrap ul li:last-child {
  margin-right: 0;
}
.header-6 .primary-header .primary-header-inner .header-menu-wrap ul .menu-item-has-children {
  padding-right: 0;
}
.header-6 .primary-header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:after {
  display: none;
}
.header-6 .primary-header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
  padding-right: 0;
}

.hero-section-6 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-section-6 .bg-item .hero-bg-img {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
@media (max-width: 1200px) {
  .hero-section-6 .bg-item .hero-bg-img {
    top: 0;
  }
}
.hero-section-6 .bg-item .hero-bg-img img {
  width: 96%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1399px) {
  .hero-section-6 .bg-item .hero-bg-img img {
    object-fit: cover;
  }
}
@media (max-width: 1200px) {
  .hero-section-6 .bg-item .hero-bg-img img {
    width: 100%;
  }
}
.hero-section-6 .bg-item .bg-overlay {
  background: linear-gradient(90deg, #07A698 30.56%, rgba(5, 47, 43, 0) 81.23%);
  transform: matrix(-1, 0, 0, 1, 0, 0);
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -72px;
  z-index: -1;
}
@media (max-width: 1200px) {
  .hero-section-6 .bg-item .bg-overlay {
    background-color: #07A698;
    width: 100%;
    right: 0;
    opacity: 0.8;
  }
}
.hero-section-6 .bg-item .shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
.hero-section-6 .bg-item .shape-2 {
  position: absolute;
  bottom: -20px;
  left: 0;
}
@media only screen and (max-width: 992px) {
  .hero-section-6 .bg-item .shape-2 {
    display: none;
  }
}
.hero-section-6 .bg-item .shape-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-content.hero-content-6 {
  padding: 200px 0 260px 0;
}
@media only screen and (max-width: 992px) {
  .hero-content.hero-content-6 {
    padding: 150px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content.hero-content-6 {
    padding: 100px 0;
  }
}
.hero-content.hero-content-6 .section-heading .section-title {
  color: var(--ed-color-common-white);
}
@media (max-width: 1399px) {
  .hero-content.hero-content-6 .section-heading .section-title br {
    display: none;
  }
}
@media (max-width: 1200px) {
  .hero-content.hero-content-6 .section-heading .section-title br {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content.hero-content-6 .section-heading .section-title br {
    display: none;
  }
}
.hero-content.hero-content-6 .hero-btn-wrap {
  margin-bottom: 0;
}
.hero-content.hero-content-6 .hero-btn-wrap .video-btn a {
  color: var(--ed-color-common-white);
}

.kid-content-section {
  padding-top: 75px;
}

.service-section-6 {
  position: relative;
  z-index: 1;
}
.service-section-6 .bg-shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.service-item-6 {
  background-color: var(--ed-color-common-white);
  padding: 20px;
  border-radius: 15px;
}
.service-item-6 .service-thumb {
  height: 230px;
  border-radius: 15px;
  margin-bottom: 30px;
}
.service-item-6 .service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.service-item-6 .service-content .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
.service-item-6 .service-content p {
  margin-bottom: 15px;
}
.service-item-6 .service-content .read-more {
  color: var(--ed-color-theme-primary);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.service-item-6 .service-content .read-more i {
  font-size: 14px;
  margin-top: 2px;
}

.course-item-6 .course-thumb {
  position: relative;
}
.course-item-6 .course-thumb img {
  transform: scale(1);
}
.course-item-6 .course-thumb .join-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.course-item-6 .course-thumb .join-btn a {
  background-color: var(--ed-color-common-white);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 100px;
  line-height: 1;
}
.course-item-6 .course-thumb .overlay {
  background-color: var(--ed-color-theme-primary);
  width: 0;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.course-item-6 .course-content {
  border-bottom: 0;
  margin-bottom: 10px;
}
.course-item-6:hover .course-thumb .overlay {
  width: 100%;
}
.course-item-6:hover .course-thumb img {
  transform: scale(1);
}
.course-item-6:hover .course-thumb .join-btn {
  transform: translate(-50%, -50%) scale(1);
}

.team-section-7 {
  position: relative;
  z-index: 1;
}
.team-section-7 .bg-shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.team-item-6 {
  height: 500px;
  position: relative;
}
.team-item-6 .team-thumb {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
}
.team-item-6 .team-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item-6 .team-content {
  background-color: var(--ed-color-common-white);
  width: 90%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 35px 0;
  border-radius: 15px;
}
.team-item-6 .team-content .title {
  font-size: 22px;
  margin-bottom: 0;
}
.team-item-6 .team-content span {
  color: var(--ed-color-text-body);
  font-weight: 400;
  display: block;
  margin-top: 5px;
}
.team-item-6 .team-content .social-list {
  margin-top: 20px;
}
.team-item-6 .team-content .social-list li {
  display: inline-flex;
}
.team-item-6 .team-content .social-list li:not(:last-of-type) {
  margin-right: 5px;
}
.team-item-6 .team-content .social-list li a {
  color: var(--ed-color-theme-primary);
  height: 40px;
  width: 40px;
  border: 1px solid #E0E5EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-item-6 .team-content .social-list li a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  border: 1px solid var(--ed-color-theme-primary);
}
.team-item-6:hover .team-thumb img {
  transform: scale(1.03);
}

.testimonial-section-6 {
  position: relative;
  z-index: 1;
}
.testimonial-section-6 .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.testi-carousel-4 {
  padding-bottom: 100px;
}
.testi-carousel-4 .swiper-pagination {
  bottom: 0;
}
.testi-carousel-4 .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  height: 20px;
  width: 20px;
  border: 2px solid #E0E5EB;
  opacity: 1;
  border-radius: 50%;
  position: relative;
}
.testi-carousel-4 .swiper-pagination .swiper-pagination-bullet:before {
  background-color: var(--ed-color-theme-primary);
  content: "";
  height: 7px;
  width: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
}
.testi-carousel-4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 2px solid var(--ed-color-theme-primary);
}
.testi-carousel-4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  visibility: visible;
  opacity: 1;
}

.testi-item-4 p {
  margin-bottom: 0;
}
.testi-item-4 .testi-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dashed #E0E5EB;
}
@media only screen and (max-width: 767px) {
  .testi-item-4 .testi-bottom {
    flex-wrap: wrap;
    row-gap: 15px;
  }
}
.testi-item-4 .testi-bottom .testi-review {
  list-style: none;
  display: flex;
  align-items: center;
}
.testi-item-4 .testi-bottom .testi-review li {
  color: #FFB539;
}

.event-card-2 {
  border: 1px solid #E3EAF3;
  grid-template-columns: 200px 1fr;
}
@media only screen and (max-width: 767px) {
  .event-card-2 {
    padding: 30px 20px;
    grid-template-columns: 1fr;
  }
}
.event-card-2 .event-thumb {
  height: 170px;
  max-width: 200px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .event-card-2 .event-thumb {
    max-width: 100%;
  }
}
.event-card-2 .event-content .event-list {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin: 0;
  margin-bottom: 0;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .event-card-2 .event-content .event-list {
    flex-wrap: wrap;
    row-gap: 5px;
  }
}
.event-card-2 .event-content .event-list li {
  font-size: 14px;
}
.event-card-2 .event-content .event-bottom {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
@media (max-width: 1200px) {
  .event-card-2 .event-content .event-bottom {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
.event-card-2 .event-content .event-bottom .ed-primary-btn {
  padding: 15px 30px;
}
.event-card-2 .event-content .event-bottom .event-author {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.event-card-2 .event-content .event-bottom .event-author .author-thumb {
  height: 40px;
  width: 40px;
}
.event-card-2 .event-content .event-bottom .event-author .author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.register-wrap {
  background: var(--ed-color-common-white);
  box-shadow: 0px 8px 40px rgba(15, 27, 49, 0.12);
  border-radius: 10px;
  padding: 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .register-wrap {
    padding: 80px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .register-wrap {
    padding: 50px 20px;
  }
}
.register-wrap .shape {
  position: absolute;
  bottom: -20px;
  left: 56%;
  transform: translateX(-50%);
  z-index: -1;
}
.register-wrap .section-heading {
  position: relative;
  z-index: 5;
}
@media (max-width: 1200px) {
  .register-wrap .section-heading .section-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .register-wrap .section-heading .section-title {
    font-size: 28px;
  }
}
.register-wrap .section-heading .section-title br {
  display: block;
}
.register-wrap .section-heading .section-title span {
  color: var(--ed-color-theme-primary);
}
.register-wrap .register-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 576px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .register-wrap .register-img {
    display: none;
  }
}
.register-wrap .register-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.blog-section-6 {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .blog-section-6 {
    background-color: #EBF2F2;
  }
}
.blog-section-6 .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.footer-6 {
  position: relative;
  z-index: 1;
  margin-top: -28px;
}
@media only screen and (max-width: 992px) {
  .footer-6 {
    padding-top: 100px;
    margin-top: -60px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-6 {
    padding-top: 70px;
    margin-top: 0px;
    background-color: #162726;
  }
}
.footer-6 .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .footer-6 .bg-img {
    display: none;
  }
}

/* !END: Home 6 CSS */
/**----------------------------------------
START: Home 6 CSS
----------------------------------------*/
.hero-7 {
  background: #F0FEFF;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .hero-7 .hero-img-wrap-7 {
    display: none;
  }
}
.hero-7 .hero-img-wrap-7 .hero-img-1 {
  position: absolute;
  top: 100px;
  right: 100px;
  max-width: 305px;
  height: 305px;
}
@media (max-width: 1600px) {
  .hero-7 .hero-img-wrap-7 .hero-img-1 {
    right: 20px;
  }
}
@media (max-width: 1399px) {
  .hero-7 .hero-img-wrap-7 .hero-img-1 {
    max-width: 250px;
    height: 250px;
  }
}
.hero-7 .hero-img-wrap-7 .hero-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.hero-7 .hero-img-wrap-7 .hero-img-2 {
  position: absolute;
  bottom: 100px;
  left: 100px;
  max-width: 305px;
  height: 305px;
}
@media (max-width: 1600px) {
  .hero-7 .hero-img-wrap-7 .hero-img-2 {
    left: 20px;
  }
}
@media (max-width: 1399px) {
  .hero-7 .hero-img-wrap-7 .hero-img-2 {
    max-width: 250px;
    height: 250px;
  }
}
.hero-7 .hero-img-wrap-7 .hero-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.hero-content-7 {
  padding: 120px 0;
}
.hero-content-7 .section-heading .section-title br {
  display: block;
}
.hero-content-7 .hero-form {
  margin: 0 auto;
}
.hero-content-7 .about-counter-items {
  max-width: 908px;
  margin: 0 auto;
  margin-top: 70px;
}
@media (max-width: 1600px) {
  .hero-content-7 .about-counter-items {
    max-width: 850px;
  }
}
@media (max-width: 1200px) {
  .hero-content-7 .about-counter-items {
    max-width: 900px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-content-7 .about-counter-items {
    max-width: 600px;
  }
}
.hero-content-7 .about-counter-items .about-counter-item .content p {
  text-align: left;
}
@media only screen and (max-width: 992px) {
  .hero-content-7 .about-counter-items .about-counter-item:nth-child(3) {
    display: none;
  }
}

.category-wrap > div {
  padding: 0;
}
@media only screen and (max-width: 992px) {
  .category-wrap > div {
    padding: 0 15px;
  }
}
.category-wrap > div:nth-child(1) .category-item-2 {
  padding-right: 40px;
  padding-bottom: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 1200px) {
  .category-wrap > div:nth-child(1) .category-item-2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .category-wrap > div:nth-child(1) .category-item-2 {
    padding: 0;
    border: none;
  }
}
.category-wrap > div:nth-child(2) .category-item-2 {
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
@media only screen and (max-width: 992px) {
  .category-wrap > div:nth-child(2) .category-item-2 {
    padding: 0;
    border: none;
  }
}
.category-wrap > div:nth-child(3) .category-item-2 {
  padding-left: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .category-wrap > div:nth-child(3) .category-item-2 {
    padding: 0;
    border: none;
  }
}
.category-wrap > div:nth-child(4) .category-item-2 {
  padding-right: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 1200px) {
  .category-wrap > div:nth-child(4) .category-item-2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .category-wrap > div:nth-child(4) .category-item-2 {
    padding: 0;
    border: none;
  }
}
.category-wrap > div:nth-child(5) .category-item-2 {
  padding-right: 40px;
  padding-left: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
@media only screen and (max-width: 992px) {
  .category-wrap > div:nth-child(5) .category-item-2 {
    padding: 0;
    border: none;
  }
}
.category-wrap > div:nth-child(6) .category-item-2 {
  padding-top: 40px;
  padding-left: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media only screen and (max-width: 992px) {
  .category-wrap > div:nth-child(6) .category-item-2 {
    padding: 0;
    border: none;
  }
}

.category-item-2 {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 30px;
}
@media (max-width: 1200px) {
  .category-item-2 {
    grid-template-columns: 1fr;
  }
}
.category-item-2 .icon {
  background-color: var(--ed-color-common-white);
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.category-item-2 .icon img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.category-item-2 .content .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.category-item-2 .content p {
  color: #6C706F;
}
.category-item-2 .content .learn-more {
  color: var(--ed-color-theme-primary);
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.category-item-2 .content .learn-more i {
  font-size: 14px;
  margin-top: 2px;
}
.category-item-2:hover .icon {
  background-color: var(--ed-color-theme-primary);
}
.category-item-2:hover .icon img {
  filter: invert(1) brightness(5);
}

.footer-insta-area {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 10px;
  max-width: 1760px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  padding-top: 80px;
  margin-bottom: 80px;
}
@media (max-width: 1200px) {
  .footer-insta-area {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
  }
}
@media only screen and (max-width: 992px) {
  .footer-insta-area {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .footer-insta-area {
    grid-template-columns: 1fr;
  }
}
.footer-insta-area .footer-insta-item {
  position: relative;
  z-index: 1;
  height: 285px;
  max-width: 285px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.footer-insta-area .footer-insta-item .insta-img {
  width: 100%;
  height: 100%;
}
.footer-insta-area .footer-insta-item .insta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-insta-area .footer-insta-item .overlay {
  background-color: #07A698;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-insta-area .footer-insta-item .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-insta-area .footer-insta-item .icon a {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.footer-insta-area .footer-insta-item .icon a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.footer-insta-area .footer-insta-item:hover .overlay {
  visibility: visible;
  opacity: 0.64;
}
.footer-insta-area .footer-insta-item:hover .icon {
  transform: translate(-50%, -50%) scale(1);
}

/* !END: Home 6 CSS */
/**----------------------------------------
START: Home 8 CSS
----------------------------------------*/
.header-7 .top-bar {
  background-color: #1F2C30;
}

.hero-section-8 {
  position: relative;
  z-index: 1;
  padding: 0;
}
.hero-section-8 .bg-shapes .bg-shape-1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  z-index: -1;
}
.hero-section-8 .bg-shapes .bg-shape-1 img {
  width: 100%;
}
.hero-section-8 .bg-shapes .bg-shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  z-index: -1;
}
.hero-section-8 .bg-shapes .bg-shape-2 img {
  width: 100%;
}
.hero-section-8 .bg-shapes .bg-shape-3 {
  position: absolute;
  top: 0;
  right: -102px;
  height: 115%;
  z-index: -1;
  transform: rotate(2deg);
}
.hero-section-8 .bg-shapes .bg-shape-3 img {
  height: 100%;
}
@media (max-width: 1700px) {
  .hero-section-8 .bg-shapes .bg-shape-3 {
    right: -325px;
  }
}
@media (max-width: 1600px) {
  .hero-section-8 .bg-shapes .bg-shape-3 {
    right: -275px;
  }
}
@media (max-width: 1399px) {
  .hero-section-8 .bg-shapes .bg-shape-3 {
    display: none;
  }
}
.hero-section-8 .hero-img-wrap-8 {
  height: 1237px;
  width: 1200px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  right: -14%;
  transform: translateY(-50%);
}
@media (max-width: 1800px) {
  .hero-section-8 .hero-img-wrap-8 {
    right: -16%;
  }
}
@media (max-width: 1700px) {
  .hero-section-8 .hero-img-wrap-8 {
    right: -20%;
  }
}
@media (max-width: 1700px) {
  .hero-section-8 .hero-img-wrap-8 {
    right: -30%;
  }
}
@media (max-width: 1399px) {
  .hero-section-8 .hero-img-wrap-8 {
    right: -50%;
  }
}
@media (max-width: 1200px) {
  .hero-section-8 .hero-img-wrap-8 {
    right: -65%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section-8 .hero-img-wrap-8 {
    display: none;
  }
}
.hero-section-8 .hero-img-wrap-8 img {
  width: 80%;
  height: 82%;
  object-fit: cover;
  object-position: 65% 150px;
}
@media (max-width: 1800px) {
  .hero-section-8 .hero-img-wrap-8 img {
    width: 82%;
    height: 82%;
  }
}
@media (max-width: 1700px) {
  .hero-section-8 .hero-img-wrap-8 img {
    object-position: 85% 150px;
  }
}
@media (max-width: 1399px) {
  .hero-section-8 .hero-img-wrap-8 img {
    object-position: 100% 150px;
  }
}
.hero-section-8 .hero-items {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: end;
  row-gap: 20px;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1200px) {
  .hero-section-8 .hero-items {
    left: 63%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section-8 .hero-items {
    display: none;
  }
}
.hero-section-8 .hero-items .hero-item {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-heading-primary);
  display: inline-block;
  align-items: center;
  padding: 15px 30px;
  border-radius: 100px;
}
.hero-section-8 .hero-items .hero-item img {
  margin-right: 10px;
}
.hero-section-8 .hero-items .hero-item span {
  column-gap: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
  .hero-section-8 .shapes {
    display: none;
  }
}
.hero-section-8 .shapes .shape.shape-1 {
  left: 0;
  bottom: 20px;
}
.hero-section-8 .shapes .shape.shape-2 {
  top: 30px;
  left: 40%;
  bottom: auto;
}
.hero-section-8 .shapes .shape.shape-3 {
  top: 30px;
  left: 70px;
}

.hero-content-8 {
  padding: 170px 0;
}
@media only screen and (max-width: 992px) {
  .hero-content-8 {
    padding: 120px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-8 {
    padding: 100px 0;
  }
}
@media (max-width: 1200px) {
  .hero-content-8 .section-heading .section-title {
    font-size: 40px;
  }
  .hero-content-8 .section-heading .section-title br {
    display: block;
  }
}
@media only screen and (max-width: 992px) {
  .hero-content-8 .section-heading .section-title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-8 .section-heading .section-title {
    font-size: 36px;
  }
  .hero-content-8 .section-heading .section-title br {
    display: none;
  }
}

.cat-item {
  background-color: var(--ed-color-grey-1);
  padding: 40px 20px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: auto;
  min-height: 100%;
}
.cat-item .shape {
  background: var(--ed-color-theme-secondary);
  filter: blur(50px);
  height: 157px;
  width: 157px;
  border-radius: 50%;
  position: absolute;
  top: -55px;
  right: -45px;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.cat-item .icon {
  background-color: var(--ed-color-common-white);
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.cat-item .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 1;
}
.cat-item span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.cat-item:hover .shape {
  top: -65px;
  right: -55px;
  visibility: visible;
  opacity: 1;
}

.service-promo {
  background-color: #143532;
}
.service-promo .service-promo-container {
  max-width: 1755px;
}

.service-promo-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 24px;
}
@media (max-width: 1200px) {
  .service-promo-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .service-promo-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .service-promo-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.service-promo-item {
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
.service-promo-item .icon {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.service-promo-item .content .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ed-color-common-white);
}
.service-promo-item .content span {
  color: var(--ed-color-common-white);
}

.about-section-8 {
  position: relative;
  z-index: 1;
}
.about-section-8 .bg-round-shape {
  border: 60px solid rgba(7, 166, 152, 0.07);
  height: 563px;
  width: 563px;
  border-radius: 50%;
  position: absolute;
  top: -200px;
  right: 95px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .about-section-8 .bg-round-shape {
    display: none;
  }
}

.about-img-wrap-8 {
  max-width: 736px;
  width: 100%;
  height: 694px;
  position: relative;
}
.about-img-wrap-8 .about-img-1 {
  max-width: 308px;
  width: 100%;
  height: 266px;
  border: 8px solid var(--ed-color-common-white);
  border-radius: 15px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.about-img-wrap-8 .about-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-wrap-8 .about-img-2 {
  max-width: 677px;
  width: 100%;
  height: 513px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 15px;
  overflow: hidden;
}
.about-img-wrap-8 .about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-wrap-8 .round-shape {
  height: 277px;
  width: 277px;
  border: 45px solid var(--ed-color-theme-primary);
  border-radius: 50%;
  position: absolute;
  top: 130px;
  left: -100px;
}

.about-wrap-8 {
  position: relative;
}

.about-content-8 {
  background-color: var(--ed-color-common-white);
  max-width: 720px;
  width: 100%;
  box-shadow: 0px 4px 80px 2px rgba(15, 21, 33, 0.1);
  border-radius: 15px;
  padding: 80px;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1200px) {
  .about-content-8 {
    max-width: 600px;
    padding: 50px 40px;
  }
}
@media only screen and (max-width: 992px) {
  .about-content-8 {
    position: relative;
    margin-top: 40px;
    box-shadow: inherit;
    padding: 0 15px;
  }
}
.about-content-8 .about-tab .nav-tabs {
  border: none;
}
@media only screen and (max-width: 767px) {
  .about-content-8 .about-tab .nav-tabs {
    row-gap: 10px;
  }
}
.about-content-8 .about-tab .nav-tabs .nav-item {
  border: none;
}
.about-content-8 .about-tab .nav-tabs .nav-item:not(:last-of-type) {
  margin-right: 10px;
}
.about-content-8 .about-tab .nav-tabs .nav-item .nav-link {
  background-color: rgba(7, 166, 152, 0.04);
  color: var(--ed-color-theme-primary);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(7, 166, 152, 0.16);
  padding: 14px 30px;
  border-radius: 100px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .about-content-8 .about-tab .nav-tabs .nav-item .nav-link {
    font-size: 14px;
  }
}
.about-content-8 .about-tab .nav-tabs .nav-item .nav-link.active {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.about-content-8 .about-tab .tab-content {
  margin-top: 30px;
}
.about-content-8 .about-tab .tab-content .tab-pane p {
  margin-bottom: 25px;
}
.about-content-8 .about-tab .tab-content .tab-pane .about-list li {
  display: flex;
  align-items: center;
  column-gap: 15px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ed-color-heading-primary);
}
.about-content-8 .about-tab .tab-content .tab-pane .about-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.about-content-8 .about-tab .tab-content .tab-pane .about-list li span {
  font-size: 16px;
  font-weight: 600;
  color: var(--ed-color-theme-primary);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 166, 152, 0.19);
  border-radius: 50%;
}

.feature-course-top.heading-space {
  align-items: end;
}
.feature-course-top .nav-tabs {
  margin-bottom: 10px;
  column-gap: 0;
}
@media only screen and (max-width: 767px) {
  .feature-course-top .nav-tabs {
    margin-top: 30px;
  }
}
.feature-course-top .nav-tabs .nav-item:not(:last-of-type) {
  margin-right: 40px;
}
@media only screen and (max-width: 992px) {
  .feature-course-top .nav-tabs .nav-item:not(:last-of-type) {
    margin-right: 20px;
  }
}
.feature-course-top .nav-tabs .nav-item .nav-link {
  background-color: transparent;
  padding: 0;
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.feature-course-top .nav-tabs .nav-item .nav-link.active {
  color: var(--ed-color-theme-primary);
}

.video-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.video-section .round-shape {
  height: 750px;
  width: 750px;
  border: 120px solid var(--ed-color-theme-primary);
  border-radius: 50%;
  position: absolute;
  bottom: -200px;
  left: -120px;
  z-index: -1;
  opacity: 0.07;
}
@media only screen and (max-width: 767px) {
  .video-section .round-shape {
    display: none;
  }
}

.video-wrap {
  background: var(--ed-color-common-white);
  box-shadow: 0px 9px 25px rgba(17, 23, 46, 0.1);
  border-radius: 20px;
  padding: 10px 10px 30px 10px;
  position: relative;
  z-index: 1;
}
.video-wrap .shape-1 {
  height: 415px;
  width: 415px;
  border: 60px solid var(--ed-color-theme-primary);
  border-radius: 50%;
  position: absolute;
  top: -190px;
  right: -190px;
  opacity: 0.07;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .video-wrap .shape-1 {
    display: none;
  }
}
.video-wrap .video-img {
  height: 530px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .video-wrap .video-img {
    height: 350px;
  }
}
.video-wrap .video-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.video-wrap .video-img .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-wrap .video-img .video-btn a {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  height: 100px;
  width: 100px;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.video-wrap .video-img .video-btn a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.video-wrap .video-img .video-btn a .ripple {
  height: 100px;
  width: 100px;
}
.video-wrap .video-img .video-btn a .ripple:before, .video-wrap .video-img .video-btn a .ripple:after {
  height: 100px;
  width: 100px;
}
.video-wrap .video-items {
  display: flex;
  align-items: center;
  padding-left: 30px;
  margin-top: 40px;
}
@media (max-width: 1200px) {
  .video-wrap .video-items {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .video-wrap .video-items {
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 20px;
    align-items: baseline;
  }
}
.video-wrap .video-items .video-item {
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
}
@media only screen and (max-width: 992px) {
  .video-wrap .video-items .video-item {
    column-gap: 10px;
  }
}
.video-wrap .video-items .video-item:not(:last-of-type) {
  margin-right: 70px;
  padding-right: 70px;
  border-right: 1px solid #DEE8E7;
}
@media (max-width: 1200px) {
  .video-wrap .video-items .video-item:not(:last-of-type) {
    margin-right: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 992px) {
  .video-wrap .video-items .video-item:not(:last-of-type) {
    margin-right: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .video-wrap .video-items .video-item:not(:last-of-type) {
    margin-right: 0;
    padding-right: 0;
    border: none;
  }
}
.video-wrap .video-items .video-item .icon {
  background-color: #DFF2F1;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.video-wrap .video-items .video-item .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .video-wrap .video-items .video-item .title {
    font-size: 15px;
  }
}

.course-carousel-area {
  position: relative;
  z-index: 1;
}
.course-carousel-area .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.course-carousel-2 {
  overflow: visible;
}

.course-carousel-top .swiper-arrow {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.course-carousel-top .swiper-arrow .swiper-nav {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.course-carousel-top .swiper-arrow .swiper-nav:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}

.testi-8 {
  background-color: #F3F7FB;
}

.content-wrap-8 {
  position: relative;
  z-index: 1;
}
.content-wrap-8 .shape {
  position: absolute;
  bottom: -60px;
  left: -60px;
  z-index: -1;
}

.content-img-8 {
  height: 374px;
  max-width: 555px;
  width: 100%;
  border-radius: 15px;
  border: 7px solid var(--ed-color-common-white);
  box-shadow: 0px 11px 38px rgba(32, 49, 47, 0.12);
}
.content-img-8 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
@media only screen and (max-width: 992px) {
  .content-img-8 {
    margin-bottom: 30px;
  }
}

.content-info-8 {
  padding-left: 40px;
}
.content-info-8 p {
  max-width: 565px;
  width: 100%;
}

.choose-us {
  position: relative;
  z-index: 1;
}
.choose-us .bg-shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.choose-us-wrap {
  position: relative;
  z-index: 1;
}
.choose-us-wrap .line {
  background: linear-gradient(90deg, rgba(7, 166, 152, 0) 0%, #07A698 50.39%, rgba(7, 166, 152, 0) 99.69%);
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 992px) {
  .choose-us-wrap .line {
    display: none;
  }
}

.choose-use-item {
  background-color: var(--ed-color-common-white);
  display: flex;
  column-gap: 20px;
  padding: 30px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: 100px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .choose-use-item {
    margin-top: 0;
  }
}
.choose-use-item .line-shape {
  background: linear-gradient(360deg, rgba(7, 166, 152, 0) 0%, #07A698 100%);
  height: 94px;
  width: 4px;
  position: absolute;
  top: -94px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 992px) {
  .choose-use-item .line-shape {
    display: none;
  }
}
.choose-use-item .line-shape .top-round {
  background-color: var(--ed-color-common-white);
  height: 20px;
  width: 20px;
  border: 5px solid var(--ed-color-theme-primary);
  border-radius: 50%;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.choose-use-item .line-shape .bottom-round {
  background-color: transparent;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.choose-use-item .line-shape .bottom-round:before {
  background-color: var(--ed-color-theme-primary);
  content: "";
  height: 5px;
  width: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.choose-use-item .icon {
  color: var(--ed-color-theme-primary);
  font-size: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.choose-use-item .content .title,
.choose-use-item .content p {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
  .choose-use-item .content p br {
    display: none;
  }
}
.choose-use-item:hover {
  background-color: var(--ed-color-theme-primary);
}
.choose-use-item:hover .icon {
  color: var(--ed-color-common-white);
}
.choose-use-item:hover .content .title {
  color: var(--ed-color-common-white);
}
.choose-use-item:hover .content p {
  color: var(--ed-color-common-white);
}
.choose-use-item:hover .line-shape .bottom-round {
  background-color: var(--ed-color-theme-primary);
}
.choose-use-item:hover .line-shape .bottom-round:before {
  background-color: var(--ed-color-common-white);
}
.choose-use-item.item-2 {
  margin-top: 170px;
}
@media only screen and (max-width: 992px) {
  .choose-use-item.item-2 {
    margin-top: 0;
  }
}
.choose-use-item.item-2 .line-shape {
  height: 165px;
  top: -165px;
}

/* !END: Home 8 CSS */
/**----------------------------------------
START: Home 9 CSS
----------------------------------------*/
.header-9 {
  background-color: transparent;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 992px) {
  .header-9 {
    background-color: var(--ed-color-common-white);
    position: relative;
  }
}
.header-9 .primary-header .primary-header-inner {
  padding: 0 30px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 11px 39px rgba(15, 39, 37, 0.13);
}
@media only screen and (max-width: 992px) {
  .header-9 .primary-header .primary-header-inner {
    padding: 20px 0;
    box-shadow: none;
  }
}
.header-9 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li a {
  padding: 34px 0;
}
.header-9 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li ul {
  top: 94px;
}
.header-9 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li ul li a {
  padding: 15px 0;
}
.header-9 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li ul li:hover a {
  padding-left: 12px;
}
.header-9 .primary-header.fixed .primary-header-inner {
  box-shadow: none;
}

.hero-section-9 {
  background-color: var(--ed-color-common-white);
  position: relative;
  z-index: 1;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .hero-section-9 {
    background-color: #dcf2f1;
    border-top: 1px solid var(--ed-color-border-1);
  }
}
@media only screen and (max-width: 992px) {
  .hero-section-9 .shapes .shape {
    display: none;
  }
}
.hero-section-9 .shapes .shape.shape-1 {
  top: 50px;
  right: 0;
  left: auto;
  bottom: auto;
  z-index: 4;
}
.hero-section-9 .shapes .shape.shape-2 {
  bottom: auto;
  left: auto;
  right: 0;
  z-index: 1;
}
.hero-section-9 .shapes .shape.shape-4 {
  top: 202px;
  left: 39%;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .hero-section-9 .shapes .shape.shape-4 {
    display: none;
  }
}

.hero-wrap-9 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-wrap-9 .hero-img-wrap-9 {
  max-width: 755px;
  width: 100%;
  height: 989px;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1200px) {
  .hero-wrap-9 .hero-img-wrap-9 {
    position: relative;
    height: 880px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .hero-wrap-9 .hero-img-wrap-9 {
    display: none;
  }
}
.hero-wrap-9 .hero-img-wrap-9 .hero-img {
  position: absolute;
  bottom: 30px;
  left: 0;
  max-width: 754px;
  width: 100%;
  height: 958px;
  z-index: 5;
}
@media (max-width: 1200px) {
  .hero-wrap-9 .hero-img-wrap-9 .hero-img {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero-wrap-9 .hero-img-wrap-9 .hero-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-wrap-9 .hero-img-wrap-9 .hero-img-shape-1 {
  position: absolute;
  bottom: 98px;
  right: 0;
  z-index: -1;
}
.hero-wrap-9 .hero-img-wrap-9 .hero-img-shape-2 {
  position: absolute;
  bottom: 59px;
  left: 149px;
  z-index: 2;
}

.hero-content-9 {
  padding: 330px 0 230px 0;
  position: relative;
  z-index: 5;
}
@media (max-width: 1200px) {
  .hero-content-9 {
    padding: 200px 0 40px 0;
  }
}
@media only screen and (max-width: 992px) {
  .hero-content-9 {
    padding: 100px 0 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-9 {
    padding: 80px 0 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-9 .section-heading {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-9 .section-heading .section-title {
    font-size: 32px;
  }
}
.hero-content-9 .hero-btn-wrap {
  margin-bottom: 55px;
}
@media only screen and (max-width: 767px) {
  .hero-content-9 .hero-btn-wrap {
    margin-bottom: 30px;
  }
}
.hero-content-9 .hero-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 35px;
  margin-bottom: 0px;
}
.hero-content-9 .hero-list li {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--ed-color-heading-primary);
}
.hero-content-9 .hero-list li i {
  color: var(--ed-color-theme-primary);
}

.language-course {
  background-color: #143532;
  position: relative;
  z-index: 1;
  padding-top: 170px;
  margin-top: -160px;
  clip-path: polygon(0 15%, 100% 1%, 100% 100%, 0% 100%);
}
@media (max-width: 1200px) {
  .language-course {
    margin-top: 0;
    clip-path: inherit;
    padding-top: 120px;
  }
}
@media only screen and (max-width: 992px) {
  .language-course {
    padding-top: 80px;
  }
}
.language-course .shapes .shape {
  position: absolute;
  z-index: -1;
}
.language-course .shapes .shape.shape-1 {
  bottom: 0;
  right: 0;
}
.language-course .shapes .shape.shape-2 {
  top: 60px;
  left: 0;
}
@media only screen and (max-width: 992px) {
  .language-course .shapes .shape.shape-2 {
    display: none;
  }
}
.language-course .shapes .shape.shape-3 {
  top: -30px;
  right: 0;
}
@media only screen and (max-width: 992px) {
  .language-course .shapes .shape.shape-3 {
    display: none;
  }
}

.lang-course-item {
  background-color: var(--ed-color-common-white);
  padding: 25px;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .lang-course-item {
    padding: 20px 15px;
  }
}
.lang-course-item .course-thumb {
  height: 120px;
  width: 100%;
  margin-bottom: 20px;
}
.lang-course-item .course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.lang-course-item .course-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.lang-course-item .course-content .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
.lang-course-item .course-content .title span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #6C706F;
  margin-top: 7px;
}
.lang-course-item .course-content .arrow-btn a {
  background-color: #DFEFEE;
  color: var(--ed-color-theme-primary);
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.lang-course-item .course-content .arrow-btn a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.lang-course-item:hover {
  transform: translateY(-5px);
}

.lang-exam-area {
  position: relative;
  z-index: 1;
}
.lang-exam-area .bg-shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.lang-exam-carousel-wrap {
  position: relative;
}
@media only screen and (max-width: 992px) {
  .lang-exam-carousel-wrap .swiper-arrow {
    display: none;
  }
}
.lang-exam-carousel-wrap .swiper-arrow .swiper-nav {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -120px;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 1600px) {
  .lang-exam-carousel-wrap .swiper-arrow .swiper-nav {
    left: -80px;
  }
}
@media (max-width: 1399px) {
  .lang-exam-carousel-wrap .swiper-arrow .swiper-nav {
    left: 0;
  }
}
.lang-exam-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
  left: auto;
  right: -120px;
}
@media (max-width: 1600px) {
  .lang-exam-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
    right: -80px;
  }
}
@media (max-width: 1399px) {
  .lang-exam-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
    right: 0px;
  }
}

.lang-exam-item {
  display: grid;
  align-items: center;
  grid-template-columns: 617px 1fr;
  grid-gap: 50px;
  background: var(--ed-color-common-white);
  box-shadow: 0px 23px 62px rgba(40, 47, 55, 0.09);
  border-radius: 20px;
  padding: 20px;
}
@media (max-width: 1200px) {
  .lang-exam-item {
    grid-template-columns: 500px 1fr;
  }
}
@media only screen and (max-width: 992px) {
  .lang-exam-item {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
.lang-exam-item .lang-exam-img {
  height: 354px;
  max-width: 617px;
  width: 100%;
  border-radius: 20px;
}
@media only screen and (max-width: 992px) {
  .lang-exam-item .lang-exam-img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .lang-exam-item .lang-exam-img {
    height: 300px;
  }
}
.lang-exam-item .lang-exam-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.lang-exam-item .content .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}
.lang-exam-item .content span {
  color: var(--ed-color-heading-primary);
  font-size: 18px;
  font-weight: 500;
}
.lang-exam-item .content .lang-exam-list {
  margin: 20px 0;
}
.lang-exam-item .content .lang-exam-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
}
.lang-exam-item .content .lang-exam-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.lang-exam-item .content .lang-exam-list li i {
  color: var(--ed-color-theme-primary);
}

.upcoming-courses-item {
  background: var(--ed-color-common-white);
  box-shadow: 0px 5px 40px rgba(15, 39, 37, 0.1);
  border-radius: 10px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100%;
}
.upcoming-courses-item.no-shadow {
  box-shadow: none !important;
  border: 1px solid #E0E5EB;
}
.upcoming-courses-item .upcoming-course-img {
  width: 100%;
  max-width: max(100%, 800px);
  aspect-ratio: 4/3;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767.98px) {
  .upcoming-courses-item .upcoming-course-img {
    max-width: 100%;
    aspect-ratio: 16/9;
  }
}
.upcoming-courses-item .upcoming-course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.upcoming-courses-item .upcoming-course-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.upcoming-courses-item .upcoming-course-content span {
  color: var(--ed-color-theme-primary);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.upcoming-courses-item .upcoming-course-content .title {
  flex-grow: 1;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.upcoming-courses-item .upcoming-course-content .upcoming-course-details {
  list-style: none;
  margin-bottom: 20px;
}
.upcoming-courses-item .upcoming-course-content .upcoming-course-details li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.upcoming-courses-item .upcoming-course-content .upcoming-course-details li:not(:last-of-type) {
  margin-bottom: 10px;
}
.upcoming-courses-item .upcoming-course-content .upcoming-course-details li.price {
  color: var(--ed-color-theme-primary);
  font-weight: 700;
}
.upcoming-courses-item .upcoming-course-content .upcoming-course-details li i {
  color: var(--ed-color-theme-primary);
}

.about-section-9 {
  background-color: #F2F4F7;
  position: relative;
  z-index: 1;
}
.about-section-9 .bottom-shape {
  background: rgba(7, 166, 152, 0.1);
  filter: blur(105px);
  width: 100%;
  height: 151px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-top-left-radius: 20%;
  border-top-right-radius: 20%;
}
@media only screen and (max-width: 767px) {
  .about-section-9 .shapes {
    display: none;
  }
}
.about-section-9 .shapes .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.about-section-9 .shapes .shape-2 {
  position: absolute;
  top: 0;
  right: 30px;
  z-index: -1;
}
.about-section-9 .shapes .shape-3 {
  position: absolute;
  bottom: 33%;
  right: 60px;
  z-index: -1;
}

.about-img-9 {
  height: 485px;
  max-width: 483px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .about-img-9 {
    margin-bottom: 40px;
    height: 420px;
  }
}
@media only screen and (max-width: 767px) {
  .about-img-9 {
    height: 350px;
  }
}
.about-img-9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-content-9 .about-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 30px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--ed-color-border-1);
}
.about-content-9 .about-items .about-item {
  display: grid;
  align-items: center;
  grid-template-columns: 60px 1fr;
  grid-gap: 15px;
}
.about-content-9 .about-items .about-item .icon {
  background-color: var(--ed-color-common-white);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.about-content-9 .about-items .about-item .title {
  color: var(--ed-color-heading-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

.cat-item-2 {
  background-color: var(--ed-color-common-white);
  padding: 60px 40px;
}
@media only screen and (max-width: 767px) {
  .cat-item-2 {
    padding: 40px 20px;
  }
}
.cat-item-2 .shape {
  top: -210px;
  right: -150px;
  height: 288px;
  width: 288px;
  background: var(--ed-color-theme-secondary);
  filter: blur(125px);
}
.cat-item-2 .icon {
  margin-bottom: 20px;
}
.cat-item-2 .title {
  font-size: 22px;
  margin-bottom: 15px;
}
.cat-item-2:hover .shape {
  top: -185px;
  right: -150px;
}

.testi-9 {
  background-color: var(--ed-color-theme-primary);
  position: relative;
  z-index: 1;
}
.testi-9 .shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.testi-item-9 {
  background-color: var(--ed-color-common-white);
}
.testi-item-9 .testi-top-content {
  grid-template-columns: 1fr;
}
.testi-item-9 .testi-top-content p {
  color: var(--ed-color-heading-primary);
  font-size: 20px;
  font-weight: 500;
}
.testi-item-9 .testi-bottom .author-info-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 50px 1fr;
  grid-gap: 15px;
}
.testi-item-9 .testi-bottom .author-info-wrap .author-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.testi-item-9 .testi-bottom .author-info-wrap .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testi-item-9 .testi-bottom .author-info-wrap .author-info .name {
  font-size: 16px;
  font-weight: 500;
}
.testi-item-9 .testi-bottom .author-info-wrap .author-info span {
  font-size: 14px;
}

.post-card-9 {
  box-shadow: 0px 5px 40px rgba(15, 39, 37, 0.1);
  border: none;
}
.post-card-9 .post-content-wrap .post-content {
  padding: 30px 30px;
}
.post-card-9 .post-content-wrap .post-meta {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px dashed var(--ed-color-border-1);
}
.post-card-9 .post-content-wrap .read-more {
  color: var(--ed-color-heading-primary);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.post-card-9 .post-content-wrap .read-more i {
  background-color: var(--ed-color-theme-primary);
  height: 30px;
  width: 30px;
  color: var(--ed-color-common-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-card-9-2 {
  padding: 0;
  grid-gap: 0;
  box-shadow: 0px 5px 40px rgba(15, 39, 37, 0.1);
  border: none;
}
.post-card-9-2 .post-thumb {
  height: 215px;
}
.post-card-9-2 .post-content-wrap .post-content {
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  .post-card-9-2 .post-content-wrap .post-content {
    padding: 30px 20px;
  }
}
.post-card-9-2 .post-content-wrap .post-content .title {
  padding-bottom: 0;
  border: none;
  margin-bottom: 15px;
}
.post-card-9-2 .post-content-wrap .post-content p {
  margin-bottom: 20px;
}
.post-card-9-2 .post-content-wrap .ed-primary-btn {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.post-card-9-2 .post-content-wrap .ed-primary-btn:before {
  background-color: rgba(255, 255, 255, 0.2);
}

.subscribe-section {
  background-color: #E2F2F1;
  position: relative;
  z-index: 1;
}
.subscribe-section .shapes .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.subscribe-section .shapes .shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}
.subscribe-section .shapes .shape-2 img {
  height: 100%;
}

.subscrie-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 20px;
}
@media (max-width: 1200px) {
  .subscrie-wrap {
    justify-content: center;
  }
}
.subscrie-wrap .section-heading .section-title {
  font-size: 36px;
}
.subscrie-wrap .section-heading .section-title br {
  display: block;
}
@media (max-width: 1200px) {
  .subscrie-wrap .section-heading .section-title {
    text-align: center;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .subscrie-wrap .section-heading .section-title {
    font-size: 28px;
  }
}
.subscrie-wrap .subscribe-form-wrap {
  max-width: 628px;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .subscrie-wrap .subscribe-form-wrap {
    text-align: center;
  }
}
.subscrie-wrap .subscribe-form-wrap .form-control {
  background-color: var(--ed-color-common-white);
  box-shadow: none;
  border: 1px solid var(--ed-color-border-1);
  border-radius: 100px;
  padding: 22px 250px 22px 30px;
}
@media only screen and (max-width: 767px) {
  .subscrie-wrap .subscribe-form-wrap .form-control {
    padding-right: 30px;
  }
}
.subscrie-wrap .subscribe-form-wrap button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .subscrie-wrap .subscribe-form-wrap button {
    position: relative;
    top: 0;
    transform: inherit;
    right: 0;
    margin-top: 15px;
  }
}

/* !END: Home 9 CSS */
/**----------------------------------------
START: My Story CSS
----------------------------------------*/
.bsb-timeline-1 .timeline {
  margin-inline-start: 20px;
  z-index: 1;
}
.bsb-timeline-1 .timeline:after {
  width: 5px;
  background-color: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
}
.bsb-timeline-1 .timeline-item {
  z-index: 1;
}
.bsb-timeline-1 .timeline-item:before {
  content: none !important;
}
.bsb-timeline-1 .timeline-item .timeline-icon {
  align-items: center;
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C!--%20License%3A%20MIT.%20Made%20by%20phosphor%3A%20https%3A%2F%2Fgithub.com%2Fphosphor-icons%2Fphosphor-icons%20--%3E%0A%3Csvg%20fill%3D%22%23ffffff%22%20width%3D%2280px%22%20height%3D%2280px%22%20stroke%3D%22%233840e5%22%20stroke-width%3D%2215%22%20viewBox%3D%220%200%20256%20256%22%20id%3D%22Flat%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Cpath%20d%3D%22M228%2C80.668V175.332a16.0255%2C16.0255%2C0%2C0%2C1-8.12695%2C13.9292l-84%2C47.47852a16.08782%2C16.08782%2C0%2C0%2C1-15.7461%2C0l-84-47.478A16.02688%2C16.02688%2C0%2C0%2C1%2C28%2C175.332V80.668a16.0255%2C16.0255%2C0%2C0%2C1%2C8.127-13.9292l84-47.47852a16.08654%2C16.08654%2C0%2C0%2C1%2C15.7461%2C0l84%2C47.478A16.02688%2C16.02688%2C0%2C0%2C1%2C228%2C80.668Z%22%2F%3E%0A%3C%2Fsvg%3E");
  display: flex;
  height: 80px;
  justify-content: center;
  left: -39px;
  position: absolute;
  top: -3px;
  width: 80px;
  z-index: 10;
}
.bsb-timeline-1 .timeline-item .timeline-icon i {
  font-size: 32px;
  background-color: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bsb-timeline-1 .timeline-item .timeline-subtitle {
  background-color: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 20%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-inline-start: 20px;
  margin-top: 8px;
}
.bsb-timeline-1 .timeline-item .timeline-title {
  margin-inline-start: 20px;
}
.bsb-timeline-1 .timeline-item .timeline-content .timeline-list-title {
  margin-top: 30px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  color: var(--ed-color-common-black);
}
.bsb-timeline-1 .timeline-item .timeline-content .timeline-list-title:before {
  background: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
  content: "";
  width: 150px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.bsb-timeline-1 .timeline-item .timeline-content dl {
  margin: 0;
  padding: 0;
}
.bsb-timeline-1 .timeline-item .timeline-content dl dt {
  position: relative;
  color: var(--ed-color-theme-primary);
  /*
  padding-inline-start: 18px;
  &:before {
      content: '\f00c';
      font-family: 'FontAwesome';
      position: absolute;
      top: 0;
      left: 0;
      font-size: 15px;
      background-color: var(--ed-color-theme-primary);
      background: linear-gradient(135deg, var(--ed-color-theme-secondary) 0%, var(--ed-color-theme-primary) 90%);
      background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  */
}
.bsb-timeline-1 .timeline-item .timeline-content dl dd {
  margin-bottom: 12px;
}

.my-story-img-wrap {
  width: auto;
  max-width: max(100%, 450px);
  height: auto;
  aspect-ratio: 450/600;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my-story-img-2-wrap {
  width: 100%;
  max-width: max(100%, 800px);
  height: auto;
  aspect-ratio: 800/600;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-story-img-2-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logos-carousel {
  padding-bottom: 60px;
}
.logos-carousel .swiper-slide {
  width: 150px !important;
  height: 150px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logos-carousel .swiper-slide .logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logos-carousel .swiper-navigation {
  margin-top: 20px !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 12px;
}
.logos-carousel .swiper-navigation .swiper-nav {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  border: 1px solid var(--ed-color-theme-primary);
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.logos-carousel .swiper-navigation .swiper-nav:hover {
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 65%);
  color: var(--ed-color-common-white);
}

.logo-item {
  background-color: var(--ed-color-common-white);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 12px;
  background: linear-gradient(var(--ed-color-common-white) 0 0) padding-box, linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%) border-box !important;
  width: 100%;
  max-width: max(100%, 150px);
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .logo-item {
    padding: 4px;
  }
}
.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  /*
  filter: grayscale(100%);
  transition: 
      filter 0.5s ease-in-out, 
      transform 0.5s ease-in-out;
  transform-origin: center center;
  transform: scale(1);
  */
}
.logo-item:hover img, .logo-item:focus-within img {
  /*filter: grayscale(0%);*/
  transform: scale(1.05);
}
.logo-item:has(:hover) img {
  /*filter: grayscale(0%);*/
  transform: scale(1.05);
}
.logo-item.hover img {
  /*filter: grayscale(0%);*/
  transform: scale(1.05);
}

.gallery-border {
  border: 2px solid transparent;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(var(--ed-color-common-white) 0 0) padding-box, linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%) border-box !important;
}
.gallery-border .image-container {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: 12px;
}
.gallery-border .image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--ed-color-common-white);
}
.gallery-border .image-container .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gallery-border .image-container .video-btn a {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  height: 70px;
  width: 70px;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 576px) {
  .gallery-border .image-container .video-btn a {
    height: 100px;
    width: 100px;
    font-size: 30px;
  }
}
.gallery-border .image-container .video-btn a .ripple {
  height: 70px;
  width: 70px;
}
@media screen and (min-width: 576px) {
  .gallery-border .image-container .video-btn a .ripple {
    height: 100px;
    width: 100px;
  }
}
.gallery-border .image-container .video-btn a .ripple:before, .gallery-border .image-container .video-btn a .ripple:after {
  height: 70px;
  width: 70px;
}
@media screen and (min-width: 576px) {
  .gallery-border .image-container .video-btn a .ripple:before, .gallery-border .image-container .video-btn a .ripple:after {
    height: 100px;
    width: 100px;
  }
}

/* !END: My Story CSS */
/**----------------------------------------
START: CXBV CSS
----------------------------------------*/
.cxbv-section-one {
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
}

.cxbv-video-wrap .cxbv-video-img-wrap {
  width: auto;
  max-width: max(100%, 480px);
  height: auto;
  aspect-ratio: 480/430;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cxbv-video-wrap .cxbv-video-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cxbv-video-wrap .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cxbv-video-wrap .video-btn a {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  height: 70px;
  width: 70px;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 576px) {
  .cxbv-video-wrap .video-btn a {
    height: 100px;
    width: 100px;
    font-size: 30px;
  }
}
.cxbv-video-wrap .video-btn a .ripple {
  height: 70px;
  width: 70px;
}
@media screen and (min-width: 576px) {
  .cxbv-video-wrap .video-btn a .ripple {
    height: 100px;
    width: 100px;
  }
}
.cxbv-video-wrap .video-btn a .ripple:before, .cxbv-video-wrap .video-btn a .ripple:after {
  height: 70px;
  width: 70px;
}
@media screen and (min-width: 576px) {
  .cxbv-video-wrap .video-btn a .ripple:before, .cxbv-video-wrap .video-btn a .ripple:after {
    height: 100px;
    width: 100px;
  }
}

.cxbv-content .cxbv-content-title {
  margin-top: 30px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  color: var(--ed-color-common-black);
}
.cxbv-content .cxbv-content-title:before {
  background: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
  content: "";
  width: 150px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.cxbv-content P:first-letter {
  text-transform: uppercase;
}
.cxbv-content .cxbv-content-list ul {
  margin-inline-start: 15px;
  padding: 0;
  list-style: none;
}
.cxbv-content .cxbv-content-list ul li {
  position: relative;
  text-transform: lowercase;
  color: var(--ed-color-theme-primary);
  padding-inline-start: 25px;
  margin-bottom: 8px;
}
.cxbv-content .cxbv-content-list ul li:first-letter {
  text-transform: uppercase;
}
.cxbv-content .cxbv-content-list ul li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  background-image: linear-gradient(275deg, var(--ed-color-theme-primary) 4%, var(--ed-color-theme-secondary) 96%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cxbv-content .cxbv-content-list dl {
  margin-inline-start: 15px;
  padding: 0;
}
.cxbv-content .cxbv-content-list dl dt {
  text-transform: capitalize;
  color: var(--ed-color-theme-primary);
}
.cxbv-content .cxbv-content-list dl dd {
  text-transform: lowercase;
  margin-bottom: 8px;
}
.cxbv-content .cxbv-content-list dl dd:first-letter {
  text-transform: uppercase;
}

.cxbv-img-wrap {
  width: auto;
  max-width: max(100%, 340px);
  height: auto;
  aspect-ratio: 800/600;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .cxbv-img-wrap {
    max-width: 100%;
  }
}
.cxbv-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.cxbv-carousel-area {
  position: relative;
  z-index: 1;
}
.cxbv-carousel-area .bg-img {
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.cxbv-carousel-area .cxbv-carousel-top {
  margin-bottom: 20px !important;
}
.cxbv-carousel-area .swiper-arrow {
  margin-bottom: 20px !important;
  display: flex;
  flex-direction: row;
  justify-content: end;
  column-gap: 12px;
}
.cxbv-carousel-area .swiper-arrow .swiper-nav {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  border: 1px solid var(--ed-color-theme-primary);
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cxbv-carousel-area .swiper-arrow .swiper-nav:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.cxbv-carousel-area .cxbv-carousel {
  overflow: visible;
}
.cxbv-carousel-area .cxbv-carousel .cxbv-item {
  border: 1px solid #E0E5EB;
  border-radius: 10px;
}
.cxbv-carousel-area .cxbv-carousel .cxbv-item .cxbv-thumb-wrap .cxbv-thumb {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.cxbv-carousel-area .cxbv-carousel .cxbv-item .cxbv-thumb-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cxbv-carousel-area .cxbv-carousel .cxbv-item .cxbv-thumb-wrap .cxbv-content {
  position: absolute;
  z-index: 10;
  background: rgb(207, 99, 250);
  background: linear-gradient(180deg, var(--ed-color-theme-secondary-rgba-75) 0%, rgba(0, 0, 0, 0.2) 80%);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: auto;
  padding: 40px;
  padding-bottom: 15px;
}
.cxbv-carousel-area .cxbv-carousel .cxbv-item .cxbv-thumb-wrap .cxbv-content .cxbv-content-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: auto;
}
.cxbv-carousel-area .cxbv-carousel .cxbv-item .cxbv-thumb-wrap .cxbv-content .cxbv-content-wrap .cxbv-title {
  color: var(--ed-color-common-white);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  height: 55px;
}
.cxbv-carousel-area .cxbv-carousel .cxbv-item .cxbv-thumb-wrap .cxbv-content .cxbv-content-wrap .cxbv-title a {
  color: var(--ed-color-common-white);
}
.cxbv-carousel-area .cxbv-carousel .cxbv-item .cxbv-thumb-wrap .cxbv-content .cxbv-content-wrap .cxbv-title a:hover {
  color: var(--ed-color-common-white);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.65);
}
.cxbv-carousel-area .cxbv-carousel .cxbv-item .cxbv-thumb-wrap .cxbv-content .cxbv-content-wrap .cxbv-details {
  color: var(--ed-color-common-white);
  font-size: 14px;
  flex-grow: 1;
  height: 100px;
  margin: 0px;
  padding: 0px;
}
.cxbv-carousel-area .cxbv-carousel .cxbv-item .cxbv-thumb-wrap .cxbv-content .cxbv-content-wrap .cxbv-btn {
  color: var(--ed-color-common-white);
  white-space: nowrap;
  width: fit-content;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 20px;
  border: 1px solid #E0E5EB;
  border-radius: 100px;
  margin-top: auto;
}
.cxbv-carousel-area .cxbv-carousel .cxbv-item .cxbv-thumb-wrap .cxbv-content .cxbv-content-wrap .cxbv-btn:hover {
  border: 1px solid var(--ed-color-theme-primary);
  color: var(--ed-color-theme-primary);
  background-color: var(--ed-color-common-white);
}
.cxbv-carousel-area .cxbv-carousel .cxbv-item:hover .cxbv-thumb img {
  transform: scale(1.1);
}

.gslide-media {
  border-radius: 12px;
}

[aria-hidden=true] {
  visibility: hidden !important;
  pointer-events: none;
}

.glightbox-content h3 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  color: var(--ed-color-common-black);
}
.glightbox-content h3:before {
  background: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
  content: "";
  width: 150px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.glightbox-content P:first-letter {
  text-transform: uppercase;
}

/* !END: CXBV CSS */
/**----------------------------------------
START: XM CSS
----------------------------------------*/
.xm-content .xm-content-title {
  margin-top: 30px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  color: var(--ed-color-common-black);
}
.xm-content .xm-content-title:before {
  background: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
  content: "";
  width: 150px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.xm-content P:first-letter {
  text-transform: uppercase;
}
.xm-content .xm-content-list ul {
  margin-inline-start: 15px;
  padding: 0;
  list-style: none;
}
.xm-content .xm-content-list ul li {
  position: relative;
  text-transform: lowercase;
  color: var(--ed-color-theme-primary);
  padding-inline-start: 25px;
  margin-bottom: 8px;
}
.xm-content .xm-content-list ul li:first-letter {
  text-transform: uppercase;
}
.xm-content .xm-content-list ul li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  background-image: linear-gradient(275deg, var(--ed-color-theme-primary) 4%, var(--ed-color-theme-secondary) 96%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.xm-content .xm-content-list dl {
  margin-inline-start: 15px;
  padding: 0;
}
.xm-content .xm-content-list dl dt {
  text-transform: capitalize;
  color: var(--ed-color-theme-primary);
}
.xm-content .xm-content-list dl dd {
  text-transform: lowercase;
  margin-bottom: 8px;
}
.xm-content .xm-content-list dl dd:first-letter {
  text-transform: uppercase;
}
.xm-content .ed-primary-btn {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-heading-primary);
  border: 1px solid #E0E5EB;
  font-weight: 500;
  margin-top: 8px;
}
.xm-content .ed-primary-btn:before {
  background-color: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
}
.xm-content .ed-primary-btn:hover {
  color: var(--ed-color-common-white);
}

.xm-img-warp {
  width: 94%;
  max-width: max(94%, 800px);
  height: auto;
  aspect-ratio: 800/600;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991.98px) {
  .xm-img-warp {
    width: 100%;
    max-width: max(100%, 800px);
  }
}
.xm-img-warp img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.xm-img-warp-2 {
  width: 100%;
  max-width: max(100%, 1080px);
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.xm-img-warp-2 img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

.content-list {
  margin-bottom: 40px;
}
.content-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ed-color-heading-primary);
}
.content-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.content-list li i {
  color: var(--ed-color-theme-primary);
}

.xm-carousel {
  width: 100%;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow-x: hidden;
}
.xm-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}
.xm-carousel .swiper-slide .xm-item {
  max-width: 350px;
  width: 100%;
  border: 1px solid #E0E5EB;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.xm-carousel .swiper-slide .xm-item .xm-thumb-wrap .xm-thumb {
  width: 100%;
  max-width: 350px;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.xm-carousel .swiper-slide .xm-item .xm-thumb-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.xm-carousel .swiper-slide .xm-item .xm-thumb-wrap .xm-content {
  position: absolute;
  z-index: 10;
  background: rgb(207, 99, 250);
  background: linear-gradient(180deg, var(--ed-color-theme-secondary-rgba-50) 0%, rgba(0, 0, 0, 0.2) 80%);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: auto;
  padding: 20px;
}
@media only screen and (max-width: 992px) {
  .xm-carousel .swiper-slide .xm-item .xm-thumb-wrap .xm-content {
    padding: 10px;
  }
}
.xm-carousel .swiper-slide .xm-item .xm-thumb-wrap .xm-content .xm-content-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: auto;
}
.xm-carousel .swiper-slide .xm-item .xm-thumb-wrap .xm-content .xm-content-wrap .xm-title {
  color: var(--ed-color-common-white);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  height: 25px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .xm-carousel .swiper-slide .xm-item .xm-thumb-wrap .xm-content .xm-content-wrap .xm-title {
    height: 50px;
  }
}
.xm-carousel .swiper-slide .xm-item .xm-thumb-wrap .xm-content .xm-content-wrap .xm-title a {
  color: var(--ed-color-common-white);
}
.xm-carousel .swiper-slide .xm-item .xm-thumb-wrap .xm-content .xm-content-wrap .xm-title a:hover {
  color: var(--ed-color-common-white);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.65);
}
.xm-carousel .swiper-slide .xm-item .xm-thumb-wrap .xm-content .xm-content-wrap .xm-details {
  color: var(--ed-color-common-white);
  font-size: 14px;
  flex-grow: 1;
  height: 100px;
  margin: 0px;
  padding: 0px;
}
.xm-carousel .swiper-slide .xm-item .xm-thumb-wrap .xm-content .xm-content-wrap .xm-btn {
  color: var(--ed-color-common-white);
  width: 120px;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 20px;
  border: 1px solid #E0E5EB;
  border-radius: 100px;
  margin-top: auto;
}
.xm-carousel .swiper-slide .xm-item .xm-thumb-wrap .xm-content .xm-content-wrap .xm-btn:hover {
  border: 1px solid var(--ed-color-theme-primary);
  color: var(--ed-color-theme-primary);
  background-color: var(--ed-color-common-white);
}
.xm-carousel .swiper-slide .xm-item:hover .xm-thumb img {
  transform: scale(1.1);
}
.xm-carousel .xm-carousel-pagination {
  margin-top: 35px;
  text-align: center;
  justify-content: center;
}
.xm-carousel .xm-carousel-pagination .swiper-pagination-bullet-active {
  background-color: var(--ed-color-theme-primary);
}

/* Zoom effect on active slide */
.swiper-slide-active .xm-item {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .swiper-slide-active .xm-item {
    transform: scale(1.2);
  }
}

.goverlay {
  background-color: #6a70ec;
}

.gslide-media {
  border-radius: 12px;
}

[aria-hidden=true] {
  visibility: hidden !important;
  pointer-events: none;
}

.glightbox-content h3 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  color: var(--ed-color-common-black);
}
.glightbox-content h3:before {
  background: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
  content: "";
  width: 150px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.glightbox-content h5 {
  margin-top: 25px;
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glightbox-content P:first-letter {
  text-transform: uppercase;
}
.glightbox-content ul {
  margin-inline-start: 15px;
  padding: 0;
  list-style: none;
}
.glightbox-content ul li {
  position: relative;
  text-transform: lowercase;
  color: var(--ed-color-theme-primary);
  padding-inline-start: 25px;
  margin-bottom: 8px;
}
.glightbox-content ul li:first-letter {
  text-transform: uppercase;
}
.glightbox-content ul li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  background-image: linear-gradient(275deg, var(--ed-color-theme-primary) 4%, var(--ed-color-theme-secondary) 96%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* !END: XM CSS */
/**----------------------------------------
START: Terms & Conditions CSS
----------------------------------------*/
.terms-centent h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
  text-transform: inherit;
  position: relative;
}
.terms-centent h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  color: var(--ed-color-common-black);
}
.terms-centent h4:before {
  background: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
  content: "";
  width: 150px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

P {
  margin-bottom: 30px;
}
P:first-letter {
  text-transform: uppercase;
}

/* !END: Terms & Conditions CSS */
/**----------------------------------------
START: Privacy Policy CSS
----------------------------------------*/
.privacy-centent h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
  text-transform: inherit;
  position: relative;
}
.privacy-centent h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  color: var(--ed-color-common-black);
}
.privacy-centent h4:before {
  background: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
  content: "";
  width: 150px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

P {
  margin-bottom: 30px;
}
P:first-letter {
  text-transform: uppercase;
}

/* !END: Privacy Policy CSS */
/**----------------------------------------
START: Academy CSS
----------------------------------------*/
.academy-img {
  width: 100%;
  max-width: max(100%, 800px);
  aspect-ratio: 4/3;
  height: auto;
  overflow: hidden;
}
@media only screen and (max-width: 767.98px) {
  .academy-img {
    max-width: 100%;
    aspect-ratio: 16/9;
  }
}
@media only screen and (max-width: 992px) {
  .academy-img {
    margin-top: 40px;
  }
}
.academy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.academy-img-2 {
  width: auto;
  max-width: max(100%, 800px);
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.academy-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-item-2 {
  background-color: var(--ed-color-common-white);
  padding: 60px 40px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: auto;
  min-height: 100%;
}
@media only screen and (max-width: 767px) {
  .about-item-2 {
    padding: 40px 20px;
  }
}
.about-item-2 .shape {
  background: var(--ed-color-theme-secondary);
  filter: blur(50px);
  height: 157px;
  width: 157px;
  border-radius: 50%;
  position: absolute;
  top: -55px;
  right: -45px;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.about-item-2 .icon {
  background-color: var(--ed-color-common-white);
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.about-item-2 .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 1;
}
.about-item-2 span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.about-item-2:hover .shape {
  top: -65px;
  right: -55px;
  visibility: visible;
  opacity: 1;
}

.about-item-3 .shape {
  top: -210px;
  right: -150px;
  height: 288px;
  width: 288px;
  background: var(--ed-color-theme-secondary);
  filter: blur(125px);
}
.about-item-3 .icon {
  margin-bottom: 20px;
}
.about-item-3 .title {
  font-size: 22px;
  margin-bottom: 15px;
}
.about-item-3:hover .shape {
  top: -185px;
  right: -150px;
}

.instructors-carousel {
  padding-bottom: 60px;
}
.instructors-carousel .swiper-navigation {
  margin-top: 20px !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 12px;
}
.instructors-carousel .swiper-navigation .swiper-nav {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  border: 1px solid var(--ed-color-theme-primary);
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.instructors-carousel .swiper-navigation .swiper-nav:hover {
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 65%);
  color: var(--ed-color-common-white);
}

.leadership-carousel {
  padding-bottom: 60px;
}
.leadership-carousel .swiper-navigation {
  margin-top: 20px !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 12px;
}
.leadership-carousel .swiper-navigation .swiper-nav {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  border: 1px solid var(--ed-color-theme-primary);
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.leadership-carousel .swiper-navigation .swiper-nav:hover {
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 65%);
  color: var(--ed-color-common-white);
}

.partners-carousel {
  padding-bottom: 60px;
}
.partners-carousel .swiper-navigation {
  margin-top: 20px !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 12px;
}
.partners-carousel .swiper-navigation .swiper-nav {
  background-color: var(--ed-color-common-white);
  color: var(--ed-color-theme-primary);
  border: 1px solid var(--ed-color-theme-primary);
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.partners-carousel .swiper-navigation .swiper-nav:hover {
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 65%);
  color: var(--ed-color-common-white);
}

.academy-faq-img {
  width: auto;
  max-width: max(100%, 435px);
  height: auto;
  aspect-ratio: 435/542;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline-start: 24px;
}
.academy-faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.jarallax-img {
  background-position: center;
}

/* !END: Academy CSS */
/**----------------------------------------
START: Login/Register CSS
----------------------------------------*/
.account-forms {
  padding: 40px;
  margin-top: 0;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}
.account-forms .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0px;
}
.account-forms p {
  margin-bottom: 28px;
}
.account-forms .form-switcher {
  margin-bottom: 28px;
}
.account-forms .form-switcher button:first-of-type {
  margin-inline-end: 8px;
}
.account-forms .form-switcher .ed-primary-btn {
  cursor: default;
}
.account-forms .form-item {
  position: relative;
  margin-bottom: 24px;
}
.account-forms .form-item .form-control {
  background-color: transparent;
  border: 1px solid #E0E5EB;
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  padding: 13px 20px;
  margin-bottom: 0px;
  width: 100%;
  border-radius: 6px;
}
.account-forms .form-item .form-control::-webkit-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.account-forms .form-item .form-control:-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.account-forms .form-item .form-control::-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.account-forms .form-item .form-control:-ms-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.account-forms .form-item .form-control.is-invalid {
  background-image: none;
}
.account-forms .form-item .form-control.is-invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.account-forms .form-item .form-control.is-valid {
  background-image: none;
}
.account-forms .form-item .form-control.is-valid + .icon {
  color: var(--bs-form-valid-color);
}
.account-forms .form-item .icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.account-forms .form-check {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.account-forms .form-check .form-check-input[type=checkbox] {
  border: 2px solid var(--ed-color-theme-primary);
  background-color: transparent;
}
.account-forms .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem var(--ed-color-theme-primary-rgba-25);
  border-color: var(--ed-color-theme-primary);
}
.account-forms .form-check .form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.account-forms .form-check .form-check-input:checked {
  border-color: var(--ed-color-theme-primary);
  background-color: var(--ed-color-theme-primary);
}
.account-forms .form-check .form-check-label {
  position: relative;
  top: 3px;
  font-weight: 600;
  color: var(--ed-color-heading-primary);
  cursor: pointer;
}
.account-forms .form-check.block-display {
  display: block;
}
.account-forms .form-check.block-display .form-check-label {
  top: initial;
}
.account-forms .form-group {
  position: relative;
  margin-bottom: 24px;
}
.account-forms .form-group .form-label {
  position: absolute;
}
.account-forms a {
  color: var(--ed-color-theme-primary-rgb);
}
.account-forms a:hover {
  color: var(--ed-color-theme-secondary-rgb);
}
.account-forms .ed-primary-btn[type=submit] {
  font-weight: 600;
  border-radius: 4px;
  justify-content: center;
  width: 100%;
}
.account-forms hr {
  color: var(--ed-color-border-1);
  border: 1px solid var(--ed-color-border-1);
}

.account-forms .was-validated .form-control:invalid {
  background-image: none;
}
.account-forms .was-validated .form-control:invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.account-forms .was-validated .form-control:valid {
  background-image: none;
}
.account-forms .was-validated .form-control:valid + .icon {
  color: var(--bs-form-valid-color);
}

.account-imgs {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 600/800;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid #E0E5EB;
  padding: 20px;
}
.account-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.goverlay.terms-overlay {
  background-color: #01bde0;
}

.account-terms.ginlined-content {
  display: flex !important;
  flex-direction: column;
}
.account-terms .terms-ceontent {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: max-content;
}
.account-terms .terms-ceontent h3 {
  margin-bottom: 16px;
  padding-bottom: 8px;
  position: relative;
  text-transform: uppercase;
  color: var(--ed-color-common-black);
}
.account-terms .terms-ceontent h3:before {
  background: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
  content: "";
  width: 150px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.account-terms .terms-ceontent h5 {
  margin-top: 25px;
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.account-terms .terms-ceontent P:first-letter {
  text-transform: uppercase;
}
.account-terms .terms-ceontent ul {
  margin-inline-start: 15px;
  padding: 0;
  list-style: none;
}
.account-terms .terms-ceontent ul li {
  position: relative;
  text-transform: lowercase;
  color: var(--ed-color-theme-primary);
  padding-inline-start: 25px;
  margin-bottom: 8px;
}
.account-terms .terms-ceontent ul li:first-letter {
  text-transform: uppercase;
}
.account-terms .terms-ceontent ul li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  background-image: linear-gradient(275deg, var(--ed-color-theme-primary) 4%, var(--ed-color-theme-secondary) 96%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.account-terms .terms-buttons {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--ed-color-border-1);
}
.account-terms .terms-buttons button {
  z-index: 1000000 !important;
}

/* !END: Login/Register CSS */
/**----------------------------------------
START: In House CSS
----------------------------------------*/
.in-house-form-warp {
  padding: 40px;
  margin-top: 0;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}
.in-house-form-warp .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0px;
}
.in-house-form-warp p {
  margin-bottom: 28px;
}
.in-house-form-warp .form-item {
  position: relative;
  margin-bottom: 24px;
}
.in-house-form-warp .form-item .form-control {
  background-color: transparent;
  border: 1px solid #E0E5EB;
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  padding: 13px 20px;
  margin-bottom: 0px;
  width: 100%;
  border-radius: 6px;
}
.in-house-form-warp .form-item .form-control::-webkit-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.in-house-form-warp .form-item .form-control:-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.in-house-form-warp .form-item .form-control::-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.in-house-form-warp .form-item .form-control:-ms-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.in-house-form-warp .form-item .form-control.is-invalid {
  background-image: none;
}
.in-house-form-warp .form-item .form-control.is-invalid::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%23dc3545" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}
.in-house-form-warp .form-item .form-control.is-invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.in-house-form-warp .form-item .form-control.is-valid {
  background-image: none;
}
.in-house-form-warp .form-item .form-control.is-valid::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%23198754" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}
.in-house-form-warp .form-item .form-control.is-valid + .icon {
  color: var(--bs-form-valid-color);
}
.in-house-form-warp .form-item .icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.in-house-form-warp .form-item.message-item .icon {
  top: 24px !important;
}
.in-house-form-warp .ed-primary-btn[type=submit] {
  font-weight: 600;
  border-radius: 4px;
  justify-content: center;
  width: 100%;
}
.in-house-form-warp hr {
  color: var(--ed-color-border-1);
  border: 1px solid var(--ed-color-border-1);
}
.in-house-form-warp .was-validated .form-control:invalid {
  background-image: none;
}
.in-house-form-warp .was-validated .form-control:invalid::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%23dc3545" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}
.in-house-form-warp .was-validated .form-control:invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.in-house-form-warp .was-validated .form-control:valid {
  background-image: none;
}
.in-house-form-warp .was-validated .form-control:valid::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%23198754" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}
.in-house-form-warp .was-validated .form-control:valid + .icon {
  color: var(--bs-form-valid-color);
}

.in-house-img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 600/800;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid #E0E5EB;
  padding: 20px;
}
.in-house-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* !END: In House CSS CSS */
/**----------------------------------------
START: Leadership Member CSS
----------------------------------------*/
.leadership-content .leadership-img {
  width: auto;
  max-width: 100%;
  height: auto;
  aspect-ratio: 300/350;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.leadership-content .leadership-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.leadership-content .leadership-brief h3 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  color: var(--ed-color-common-black);
}
.leadership-content .leadership-brief h3::before {
  background: var(--ed-color-theme-primary);
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 50%);
  content: "";
  width: 150px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.leadership-content .leadership-brief h4 {
  margin-top: 25px;
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.leadership-content .leadership-brief ul {
  display: block;
  padding: 0;
  margin: 0;
  margin-bottom: 16px;
  list-style: none;
}
.leadership-content .leadership-brief ul li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.leadership-content .leadership-brief ul li::before {
  content: "";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f00c";
  display: inline-block;
  font-size: 16px;
  color: var(--ed-color-theme-primary);
}
.leadership-content .leadership-brief ul .li:not(:last-of-type) {
  margin-bottom: 10px;
}
.leadership-content .leadership-details h4 {
  margin-top: 25px;
  background: linear-gradient(135deg, var(--ed-color-theme-primary) 0%, var(--ed-color-theme-secondary) 25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.leadership-content .leadership-details ul {
  display: block;
  padding: 0;
  margin: 0;
  margin-bottom: 16px;
  list-style: none;
}
.leadership-content .leadership-details ul li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.leadership-content .leadership-details ul li::before {
  content: "";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f00c";
  display: inline-block;
  font-size: 16px;
  color: var(--ed-color-theme-primary);
}
.leadership-content .leadership-details ul .li:not(:last-of-type) {
  margin-bottom: 10px;
}

/* !END: Leadership Member CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error-content .error-img-wrap {
  width: auto;
  max-width: 600px;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.error-content .error-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* !END: XM CSS */
/**----------------------------------------
START: Student Area CSS
----------------------------------------*/
.course-card-wrap {
  margin-bottom: -24px;
}
.course-card-wrap .course-card {
  display: grid;
  align-items: center;
  grid-template-columns: 370px 1fr;
  grid-gap: 36px;
  padding: 40px 45px;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 992px) {
  .course-card-wrap .course-card {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}
.course-card-wrap .course-card .course-thumb {
  width: 100%;
  max-width: max(100%, 800px);
  aspect-ratio: 4/3;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}
.course-card-wrap .course-card .course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.course-card-wrap .course-card .course-content .course-details {
  margin-bottom: 10px;
}
.course-card-wrap .course-card .course-content .course-details li {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  column-gap: 7px;
}
.course-card-wrap .course-card .course-content .course-details li:not(:last-of-type) {
  margin-right: 20px;
}
.course-card-wrap .course-card .course-content .course-details li i {
  font-size: 14px;
}
.course-card-wrap .course-card .course-content .course-rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 10px;
}
.course-card-wrap .course-card .course-content .course-rating-wrapper .star-rating {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #ccc;
  white-space: nowrap;
}
.course-card-wrap .course-card .course-content .course-rating-wrapper .star-rating .star-fill, .course-card-wrap .course-card .course-content .course-rating-wrapper .star-rating .star-empty {
  display: flex;
  gap: 1px;
}
.course-card-wrap .course-card .course-content .course-rating-wrapper .star-rating .star-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: var(--ed-color-theme-primary);
  white-space: nowrap;
  width: 0;
}
.course-card-wrap .course-card .course-content .course-rating-wrapper .rating-value {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ed-color-text-body);
}
.course-card-wrap .course-card .course-content .course-category-title {
  margin-bottom: 10px;
  color: var(--ed-color-theme-primary);
  display: block;
  line-height: 1;
}
.course-card-wrap .course-card .course-content .course-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.4;
  flex-grow: 1;
}
.course-card-wrap .course-card .course-content .course-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.course-card-wrap .course-card .course-content .course-bottom .course-instructor {
  display: grid;
  align-items: center;
  grid-template-columns: 45px 1fr;
  grid-gap: 12px;
}
.course-card-wrap .course-card .course-content .course-bottom .course-instructor .instructor-img {
  width: 100%;
  max-width: 45px;
  height: auto;
  aspect-ratio: 45/45;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-card-wrap .course-card .course-content .course-bottom .course-instructor .instructor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.course-card-wrap .course-card .course-content .course-bottom .course-instructor .instructor-info .name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
.course-card-wrap .course-card .course-content .course-bottom .course-instructor .instructor-info span {
  color: var(--ed-color-theme-primary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}
.course-card-wrap .course-card .course-content .course-bottom .course-btn {
  display: block;
  color: var(--ed-color-heading-primary);
  font-size: 16px;
  font-weight: 600;
  padding: 5px 20px;
  border: 1px solid #E0E5EB;
  border-radius: 100px;
}
.course-card-wrap .course-card .course-content .course-bottom .course-btn:hover {
  border: 1px solid var(--ed-color-theme-primary);
}

.purchase-history-wrap {
  margin-bottom: -24px;
}

.notifications-wrap {
  margin-bottom: -24px;
}

.student-sidebar-widget {
  background-color: var(--ed-color-grey-1);
  padding: 40px 30px;
  border: 1px solid var(--ed-color-border-1);
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .student-sidebar-widget {
    padding: 30px 20px;
  }
}
.student-sidebar-widget:not(:last-of-type) {
  margin-bottom: 50px;
}
.student-sidebar-widget .course-search-box-form {
  position: relative;
}
.student-sidebar-widget .course-search-box-form .form-control {
  padding: 14px 20px;
  padding-left: 30px;
  box-shadow: none;
  border-radius: 100px;
  border: 1px solid var(--ed-color-border-1);
}
.student-sidebar-widget .course-search-box-form .form-control.is-invalid {
  background-image: none;
}
.student-sidebar-widget .course-search-box-form .form-control.is-invalid + .search-btn {
  top: 35%;
}
.student-sidebar-widget .course-search-box-form .form-control.is-invalid + .search-btn i {
  color: var(--bs-form-invalid-color);
}
.student-sidebar-widget .course-search-box-form .form-control.is-valid {
  background-image: none;
}
.student-sidebar-widget .course-search-box-form .form-control.is-valid + .search-btn i {
  color: var(--bs-form-valid-color);
}
.student-sidebar-widget .course-search-box-form .search-btn {
  color: var(--ed-color-theme-primary);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.student-sidebar-widget .course-search-box-form.was-validated .form-control:invalid {
  background-image: none;
}
.student-sidebar-widget .course-search-box-form.was-validated .form-control:invalid + .search-btn {
  top: 35%;
}
.student-sidebar-widget .course-search-box-form.was-validated .form-control:invalid + .search-btn i {
  color: var(--bs-form-invalid-color);
}
.student-sidebar-widget .course-search-box-form.was-validated .form-control:valid {
  background-image: none;
}
.student-sidebar-widget .course-search-box-form.was-validated .form-control:valid + .search-btn i {
  color: var(--bs-form-valid-color);
}
.student-sidebar-widget .suggested-courses-swiper .swiper-arrow, .student-sidebar-widget .upcoming-courses-swiper .swiper-arrow {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.student-sidebar-widget .suggested-courses-swiper .swiper-arrow .swiper-nav, .student-sidebar-widget .upcoming-courses-swiper .swiper-arrow .swiper-nav {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 5px 5px 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.student-sidebar-widget .suggested-courses-swiper .swiper-arrow .swiper-nav.swiper-next, .student-sidebar-widget .upcoming-courses-swiper .swiper-arrow .swiper-nav.swiper-next {
  left: auto;
  right: 0;
  border-radius: 5px 0 0 5px;
}
.student-sidebar-widget .suggested-courses-swiper:hover .swiper-arrow, .student-sidebar-widget .upcoming-courses-swiper:hover .swiper-arrow {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: visible;
  opacity: 1;
}

.profile-info-form-warp, .billing-info-form-warp, .change-password-form-warp, .reset-password-form-warp {
  padding: 40px;
  margin-top: 0;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}
.profile-info-form-warp .title, .billing-info-form-warp .title, .change-password-form-warp .title, .reset-password-form-warp .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0px;
}
.profile-info-form-warp p, .billing-info-form-warp p, .change-password-form-warp p, .reset-password-form-warp p {
  margin-bottom: 28px;
}
.profile-info-form-warp .form-item, .billing-info-form-warp .form-item, .change-password-form-warp .form-item, .reset-password-form-warp .form-item {
  position: relative;
  margin-bottom: 24px;
}
.profile-info-form-warp .form-item .form-control, .billing-info-form-warp .form-item .form-control, .change-password-form-warp .form-item .form-control, .reset-password-form-warp .form-item .form-control {
  background-color: transparent;
  border: 1px solid #E0E5EB;
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  padding: 13px 20px;
  margin-bottom: 0px;
  width: 100%;
  border-radius: 6px;
}
.profile-info-form-warp .form-item .form-control::-webkit-input-placeholder, .billing-info-form-warp .form-item .form-control::-webkit-input-placeholder, .change-password-form-warp .form-item .form-control::-webkit-input-placeholder, .reset-password-form-warp .form-item .form-control::-webkit-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.profile-info-form-warp .form-item .form-control:-moz-placeholder, .billing-info-form-warp .form-item .form-control:-moz-placeholder, .change-password-form-warp .form-item .form-control:-moz-placeholder, .reset-password-form-warp .form-item .form-control:-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.profile-info-form-warp .form-item .form-control::-moz-placeholder, .billing-info-form-warp .form-item .form-control::-moz-placeholder, .change-password-form-warp .form-item .form-control::-moz-placeholder, .reset-password-form-warp .form-item .form-control::-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.profile-info-form-warp .form-item .form-control:-ms-input-placeholder, .billing-info-form-warp .form-item .form-control:-ms-input-placeholder, .change-password-form-warp .form-item .form-control:-ms-input-placeholder, .reset-password-form-warp .form-item .form-control:-ms-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.profile-info-form-warp .form-item .form-control.is-invalid, .billing-info-form-warp .form-item .form-control.is-invalid, .change-password-form-warp .form-item .form-control.is-invalid, .reset-password-form-warp .form-item .form-control.is-invalid {
  background-image: none;
}
.profile-info-form-warp .form-item .form-control.is-invalid::-webkit-calendar-picker-indicator, .billing-info-form-warp .form-item .form-control.is-invalid::-webkit-calendar-picker-indicator, .change-password-form-warp .form-item .form-control.is-invalid::-webkit-calendar-picker-indicator, .reset-password-form-warp .form-item .form-control.is-invalid::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%23dc3545" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}
.profile-info-form-warp .form-item .form-control.is-invalid + .icon, .billing-info-form-warp .form-item .form-control.is-invalid + .icon, .change-password-form-warp .form-item .form-control.is-invalid + .icon, .reset-password-form-warp .form-item .form-control.is-invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.profile-info-form-warp .form-item .form-control.is-valid, .billing-info-form-warp .form-item .form-control.is-valid, .change-password-form-warp .form-item .form-control.is-valid, .reset-password-form-warp .form-item .form-control.is-valid {
  background-image: none;
}
.profile-info-form-warp .form-item .form-control.is-valid::-webkit-calendar-picker-indicator, .billing-info-form-warp .form-item .form-control.is-valid::-webkit-calendar-picker-indicator, .change-password-form-warp .form-item .form-control.is-valid::-webkit-calendar-picker-indicator, .reset-password-form-warp .form-item .form-control.is-valid::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%23198754" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}
.profile-info-form-warp .form-item .form-control.is-valid + .icon, .billing-info-form-warp .form-item .form-control.is-valid + .icon, .change-password-form-warp .form-item .form-control.is-valid + .icon, .reset-password-form-warp .form-item .form-control.is-valid + .icon {
  color: var(--bs-form-valid-color);
}
.profile-info-form-warp .form-item .icon, .billing-info-form-warp .form-item .icon, .change-password-form-warp .form-item .icon, .reset-password-form-warp .form-item .icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.profile-info-form-warp .form-item.message-item .icon, .billing-info-form-warp .form-item.message-item .icon, .change-password-form-warp .form-item.message-item .icon, .reset-password-form-warp .form-item.message-item .icon {
  top: 24px !important;
}
.profile-info-form-warp .form-item.address-item .icon, .billing-info-form-warp .form-item.address-item .icon, .change-password-form-warp .form-item.address-item .icon, .reset-password-form-warp .form-item.address-item .icon {
  top: 24px !important;
}
.profile-info-form-warp .ed-primary-btn[type=submit], .billing-info-form-warp .ed-primary-btn[type=submit], .change-password-form-warp .ed-primary-btn[type=submit], .reset-password-form-warp .ed-primary-btn[type=submit] {
  font-weight: 600;
  border-radius: 4px;
  justify-content: center;
  width: 100%;
}
.profile-info-form-warp hr, .billing-info-form-warp hr, .change-password-form-warp hr, .reset-password-form-warp hr {
  color: var(--ed-color-border-1);
  border: 1px solid var(--ed-color-border-1);
}
.profile-info-form-warp .was-validated .form-control:invalid, .billing-info-form-warp .was-validated .form-control:invalid, .change-password-form-warp .was-validated .form-control:invalid, .reset-password-form-warp .was-validated .form-control:invalid {
  background-image: none;
}
.profile-info-form-warp .was-validated .form-control:invalid::-webkit-calendar-picker-indicator, .billing-info-form-warp .was-validated .form-control:invalid::-webkit-calendar-picker-indicator, .change-password-form-warp .was-validated .form-control:invalid::-webkit-calendar-picker-indicator, .reset-password-form-warp .was-validated .form-control:invalid::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%23dc3545" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}
.profile-info-form-warp .was-validated .form-control:invalid + .icon, .billing-info-form-warp .was-validated .form-control:invalid + .icon, .change-password-form-warp .was-validated .form-control:invalid + .icon, .reset-password-form-warp .was-validated .form-control:invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.profile-info-form-warp .was-validated .form-control:valid, .billing-info-form-warp .was-validated .form-control:valid, .change-password-form-warp .was-validated .form-control:valid, .reset-password-form-warp .was-validated .form-control:valid {
  background-image: none;
}
.profile-info-form-warp .was-validated .form-control:valid::-webkit-calendar-picker-indicator, .billing-info-form-warp .was-validated .form-control:valid::-webkit-calendar-picker-indicator, .change-password-form-warp .was-validated .form-control:valid::-webkit-calendar-picker-indicator, .reset-password-form-warp .was-validated .form-control:valid::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%23198754" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}
.profile-info-form-warp .was-validated .form-control:valid + .icon, .billing-info-form-warp .was-validated .form-control:valid + .icon, .change-password-form-warp .was-validated .form-control:valid + .icon, .reset-password-form-warp .was-validated .form-control:valid + .icon {
  color: var(--bs-form-valid-color);
}

.profile-info-img, .billing-info-img, .change-password-img, .reset-password-img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 600/800;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid #E0E5EB;
  padding: 20px;
}
.profile-info-img img, .billing-info-img img, .change-password-img img, .reset-password-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* !END: Student Area CSS */
/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.footer-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.footer-top {
  /*
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(40px);
  */
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  padding: 80px;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media (max-width: 1200px) {
  .footer-top {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .footer-top {
    padding: 40px 20px;
  }
}
.footer-top .title {
  color: var(--ed-color-common-white);
  font-size: 30px;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 1200px) {
  .footer-top .title {
    text-align: center;
  }
}
.footer-top .footer-form-wrap .newsletter-form {
  display: flex;
  align-items: start;
  justify-content: center;
  column-gap: 10px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.footer-top .footer-form-wrap .newsletter-form .form-item {
  position: relative;
}
.footer-top .footer-form-wrap .newsletter-form .form-item .form-control {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--ed-color-common-white);
  width: 440px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
  padding: 12px 30px;
  border-radius: 100px;
  padding-left: 55px;
}
.footer-top .footer-form-wrap .newsletter-form .form-item .form-control::-webkit-input-placeholder {
  color: var(--ed-color-common-white);
}
.footer-top .footer-form-wrap .newsletter-form .form-item .form-control:-moz-placeholder {
  color: var(--ed-color-common-white);
}
.footer-top .footer-form-wrap .newsletter-form .form-item .form-control::-moz-placeholder {
  color: var(--ed-color-common-white);
}
.footer-top .footer-form-wrap .newsletter-form .form-item .form-control:-ms-input-placeholder {
  color: var(--ed-color-common-white);
}
@media only screen and (max-width: 767px) {
  .footer-top .footer-form-wrap .newsletter-form .form-item .form-control {
    width: 100%;
  }
}
.footer-top .footer-form-wrap .newsletter-form .form-item .form-control.is-invalid {
  background-image: none;
}
.footer-top .footer-form-wrap .newsletter-form .form-item .form-control.is-invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.footer-top .footer-form-wrap .newsletter-form .form-item .form-control.is-invalid + .icon + div.invalid-feedback {
  text-align: start;
  padding-inline-start: 32px;
  color: var(--ed-color-common-white);
}
.footer-top .footer-form-wrap .newsletter-form .form-item .form-control.is-valid {
  background-image: none;
}
.footer-top .footer-form-wrap .newsletter-form .form-item .form-control.is-valid + .icon {
  color: var(--bs-form-valid-color);
}
.footer-top .footer-form-wrap .newsletter-form .form-item .icon {
  color: var(--ed-color-common-white);
  position: absolute;
  top: 52%;
  left: 30px;
  transform: translateY(-50%);
}
.footer-top .footer-form-wrap .newsletter-form .ed-primary-btn {
  background-color: rgba(255, 255, 255, 0.2);
}
.footer-top .footer-form-wrap .newsletter-form .ed-primary-btn:hover {
  background-color: rgb(232, 240, 254);
  color: var(--ed-color-theme-primary);
}
.footer-top .footer-form-wrap .newsletter-form .was-validated .form-control:invalid {
  background-image: none;
}
.footer-top .footer-form-wrap .newsletter-form .was-validated .form-control:invalid + .icon {
  top: 33%;
  color: var(--bs-form-invalid-color);
}
.footer-top .footer-form-wrap .newsletter-form .was-validated .form-control:valid {
  background-image: none;
}
.footer-top .footer-form-wrap .newsletter-form .was-validated .form-control:valid + .icon {
  color: var(--bs-form-valid-color);
}
.footer-top .footer-form-wrap .alert-success h4 {
  color: var(--bs-success-text-emphasis) !important;
}
.footer-top .footer-form-wrap .alert-danger h4 {
  color: var(--bs-danger-text-emphasis) !important;
}
.footer-top .footer-form-wrap .alert-warning h4 {
  color: var(--bs-warning-text-emphasis) !important;
}

.footer-wrap {
  margin-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .footer-wrap {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}
.footer-widget .widget-header {
  color: var(--ed-color-common-white);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
  padding-bottom: 15px;
  position: relative;
}
.footer-widget .widget-header:before {
  background-color: var(--ed-color-common-white);
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer-widget .widget-header.logo {
  margin-bottom: 0;
}
.footer-widget .widget-header.logo:before {
  display: none;
}
.footer-widget p {
  color: rgb(255, 255, 255);
}
.footer-widget .footer-contact .number {
  font-size: 22px;
  font-weight: 600;
  display: block;
}
.footer-widget .footer-contact .number i {
  color: var(--ed-color-common-white);
  margin-right: 15px;
}
.footer-widget .footer-contact .number a {
  color: var(--ed-color-common-white);
}
.footer-widget .footer-contact .number a:hover {
  color: var(--ed-color-text-link-hover);
  text-shadow: 0 0 8px var(--ed-color-text-shadow);
}
.footer-widget .footer-contact .mail {
  color: var(--ed-color-common-white);
  font-size: 18px;
  margin-bottom: 15px;
  display: inline-block;
}
.footer-widget .footer-contact .mail:hover {
  color: var(--ed-color-text-link-hover);
  text-shadow: 0 0 8px var(--ed-color-text-shadow);
}
.footer-widget .footer-list {
  list-style: none;
}
.footer-widget .footer-list li a {
  font-family: var(--ed-ff-body);
  color: var(--ed-color-common-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.footer-widget .footer-list li a:hover {
  color: var(--ed-color-text-link-hover);
  text-shadow: 0 0 8px var(--ed-color-text-shadow);
}
.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 6px;
}
.footer-widget .footer-form {
  position: relative;
  margin-top: 30px;
}
.footer-widget .footer-form .form-control {
  background-color: var(--ed-color-common-black);
  padding: 15px 70px 15px 15px;
  color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  border: none;
  border-radius: 0;
}
.footer-widget .footer-form .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .submit {
  background-color: var(--ed-color-theme-primary);
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  width: 60px;
  font-size: 18px;
}
.footer-widget .footer-social {
  display: flex;
  align-items: center;
  list-style: none;
}
.footer-widget .footer-social li:not(:last-of-type) {
  margin-right: 20px;
}
.footer-widget .footer-social li a {
  color: var(--ed-color-common-white);
  font-size: 16px;
}
.footer-widget .footer-social li a:hover {
  color: var(--ed-color-text-link-hover);
  text-shadow: 0 0 8px var(--ed-color-text-shadow);
}
.footer-widget .sidebar-post {
  display: grid;
  align-items: center;
  grid-template-columns: 90px 1fr;
  grid-gap: 0px;
}
.footer-widget .sidebar-post:not(:last-of-type) {
  margin-bottom: 20px;
}
.footer-widget .sidebar-post img {
  height: 100%;
  object-fit: cover;
}
.footer-widget .sidebar-post .post-content {
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .footer-widget .sidebar-post .post-content {
    padding-left: 10px;
  }
}
.footer-widget .sidebar-post .post-content .post-meta {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 5px;
}
@media only screen and (max-width: 767px) {
  .footer-widget .sidebar-post .post-content .post-meta {
    column-gap: 5px;
  }
}
.footer-widget .sidebar-post .post-content .post-meta li {
  font-size: 14px;
  font-weight: 400;
  color: var(--ed-color-common-white);
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .footer-widget .sidebar-post .post-content .post-meta li {
    font-size: 13px;
  }
}
.footer-widget .sidebar-post .post-content .post-meta li i {
  color: var(--ed-color-theme-primary);
}
.footer-widget .sidebar-post .post-content .title {
  color: var(--ed-color-common-white);
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.4;
  margin-bottom: 7px;
}
.footer-widget .sidebar-post .post-content .title a {
  background: linear-gradient(var(--ed-color-common-white) 0%, var(--ed-color-common-white) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-widget .sidebar-post .post-content .title a:hover {
  color: var(--ed-color-common-white);
  background-size: 100% 2px;
}
.footer-widget.widget-2 {
  padding-left: 50px;
}
@media only screen and (max-width: 992px) {
  .footer-widget.widget-2 {
    padding-left: 0;
  }
}
.footer-widget.widget-2 .footer-list li a {
  position: relative;
  padding-left: 30px;
}
@media (max-width: 1200px) {
  .footer-widget.widget-2 .footer-list li a {
    font-size: 14px;
    padding-left: 17px;
  }
}
.footer-widget.widget-2 .footer-list li a:before {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 700;
  content: "\f061";
  color: var(--ed-color-common-white);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .footer-widget.widget-2 .footer-list li a:before {
    font-size: 10px;
  }
}
.footer-widget.widget-2 .footer-list li a:hover:before {
  color: var(--ed-color-text-link-hover);
}
.footer-widget.widget-2 .footer-list li a.active {
  text-shadow: 0 0 8px var(--ed-color-text-shadow);
  font-weight: bold;
  color: var(--ed-color-common-white);
}
.footer-widget.widget-2 .footer-list li a.active:before {
  color: var(--ed-color-common-white);
  text-shadow: 0 0 8px var(--ed-color-text-shadow);
}

.copyright-area {
  border-top: 1px solid #CF63FA;
  background: #CF63FA;
  background: linear-gradient(135deg, rgba(207, 99, 250, 1) 35%, rgba(12, 164, 238, 1) 65%);
  padding-block: 16px;
}
.copyright-area .container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
.copyright-content {
  display: flex;
  align-items: start;
  justify-content: start;
  padding-bottom: 4px;
}
.copyright-content p {
  text-align: start;
  margin: 0px;
  color: var(--ed-color-common-white);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--ed-ff-body);
}
@media only screen and (max-width: 992px) {
  .copyright-content p {
    font-size: 14px;
  }
}
.powered-by {
  display: flex;
  align-items: start;
  justify-content: start;
  padding-bottom: 4px;
}
.powered-by p {
  text-align: start;
  margin: 0px;
  color: var(--ed-color-common-white);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--ed-ff-powered-by);
  font-style: italic;
}
@media only screen and (max-width: 992px) {
  .powered-by p {
    font-size: 14px;
  }
}
.powered-by p a:hover {
  color: #e7c63b;
  text-shadow: 0px 0px 8px rgba(231, 198, 59, 0.8);
}

.footer-3 {
  padding-top: 260px;
}
.footer-3 .footer-widget .footer-social li {
  display: inline-flex;
}
.footer-3 .footer-widget .footer-social li a {
  background-color: #1F3534;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.footer-3 .footer-widget .footer-social li a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.footer-3 .copyright-area {
  background-color: var(--ed-color-common-white);
}
.footer-3 .copyright-area .copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 15px;
}
@media only screen and (max-width: 767px) {
  .footer-3 .copyright-area .copyright-content .copyright-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
.footer-3 .copyright-area .copyright-content .copyright-list li {
  display: inline-flex;
}
.footer-3 .copyright-area .copyright-content .copyright-list li:not(:last-of-type) {
  margin-right: 20px;
}
.footer-3 .copyright-area .copyright-content .copyright-list li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  display: block;
}
.footer-3 .copyright-area .copyright-content .copyright-list li a:hover {
  color: var(--ed-color-common-white);
}

/*Scrool Up*/
#scrollup {
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 50px;
  right: 30px;
  overflow: hidden;
  z-index: 999;
  border-radius: 8px;
}

.scroll-to-top {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: var(--ed-color-theme-primary);
  font-size: 20px;
  padding: 0;
  line-height: 40px;
  color: var(--ed-color-common-white);
  border-radius: 5px;
  outline: none;
  text-decoration: none;
  transform: translateY(150%);
  transition: all 0.3s ease-in-out;
}

#scrollup.show {
  opacity: 1;
  box-shadow: 0px 0px 20px 5px rgba(255, 255, 255, 0.3);
}

#scrollup.show .scroll-to-top {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

/* !END:  Footer CSS *//*# sourceMappingURL=main.css.map */