@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Birthstone&family=Joan&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+TZ+Guides&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --ed-ff-body: 'Outfit', sans-serif;
  --ed-ff-heading: 'Outfit', serif;
  --ed-ff-p: 'Outfit', 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-theme-primary: #288e86;
  --ed-color-theme-orange: #dd6e1d;
  --ed-color-grey-1: #F2F4F7;
  --ed-color-bg-1: #0E121D;
  --ed-color-bg-2: #191A1F;
  --ed-color-border-1: #E0E5EB;
}

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

.middle {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/**
	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;
}

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%;
}


*::-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%;
}

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

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

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

.container {
  max-width: 1310px;
}

.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-theme-orange);
  font-family: var(--ed-ff-heading);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #E0E5EB;
  padding: 5px 15px 5px 5px;
  border-radius: 100px;
}

.section-heading .sub-heading .heading-icon {
  background-color: rgb(255 255 255 / 15%);
  color: #ffffff;
  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.white-content p,
.section-heading.white-content .section-title {
  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: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #07a698 94%, rgba(0, 0, 0, 0)) top/15.5px 15.5px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #07a698);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 15.5px), #000 0);
  animation: spinner-c7wet2 1.2s infinite linear;
}

.spinner-logo {
  text-align: center;
}

.spinner-logo img {
  max-width: 50%;
  margin: 0 auto;
}

@keyframes spinner-c7wet2 {
  100% {
    transform: rotate(1turn);
  }
}

/*  Custom Cursor */
@media (min-width: 992px) {
  .mt-cursor {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: fixed;
    left: 10px;
    top: 10px;
    user-select: none;
    pointer-events: none;
    visibility: hidden;
    z-index: 10000;
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .mt-cursor:before {
    background: var(--ed-color-theme-primary);
    opacity: 1;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
  }

  .mt-cursor.cursor-grow:before {
    opacity: 0.7;
    transform: scale(1.5);
    transition: all 0.3s ease;
  }

  .mt-cursor.hide {
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.4s;
  }

  .mt-cursor.hide .inner {
    transform: scale(0.1);
    transition: transform 0.3s ease;
  }
}

@media only screen and (max-width: 767px) {
  br {
    display: none;
  }
}


/*-- Margin Top --*/

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

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

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

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


/*-- Padding Top --*/

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

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

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

/*-- Padding Right --*/

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

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

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


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

.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;
  }
}

.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;
  }
}

/**
    Buttons CSS
*/
.header-right .ed-primary-btn {
  border: 1px solid var(--ed-color-theme-primary);
}

.header-right .ed-primary-btn:hover {
  border: 1px solid var(--ed-color-theme-primary);
  color: var(--ed-color-theme-primary) !important;
  box-shadow: 0 0 12px 2px #00000030;
}

.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);
}

/**----------------------------------------
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 i {
  margin-right: 5px;
}

.header .top-bar .top-bar-inner .top-bar-left .top-bar-list li a {
  display: flex;
  align-items: center;
  border: 1px solid var(--ed-color-theme-primary);
  padding: 5px 10px;
  border-radius: 5px;

}

.header .top-bar .top-bar-inner .top-bar-left .top-bar-list li a:hover {
  background-color: var(--ed-color-theme-primary);
  color: #fff;
}

.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 .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: 250px;
}

@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: 200px;
  }
}

.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: 115px;
  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: 10px;
}

@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-left: 25px;
}

.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children ul li a {
  padding-right: 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-right-item {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 992px) {
  .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;
}

@media (min-width: 993px) {
  .header .primary-header-inner .header-right .header-right-item .mobile-side-menu-toggle {
    display: none;
  }
}


@media only screen and (max-width: 992px) {
  .header .primary-header-inner .mean-push {
    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;
}

.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: 30px;
}

@media (max-width: 1600px) {
  .header-2 .primary-header-inner .header-right-wrap {
    column-gap: 50px;
  }
}

@media (max-width: 1200px) {
  .header-2 .primary-header-inner .header-right-wrap {
    column-gap: 10px;
  }
}

.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu li {
  margin: 0 13px;
}

@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;
  font-weight: 500;
  text-transform: inherit;
}

.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu li ul li a {
  font-size: 15px;
}

.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children {
  padding-right: 5px;
}

.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children:after {
  display: block;
  font-size: 13px;
  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-item .mobile-side-menu-toggle {
  color: var(--ed-color-heading-primary);
}


@media only screen and (max-width: 992px) {
  .mobile-side-menu .header-right {
    display: none !important;
  }
}

.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: 390px;
    border-left: 5px solid var(--ed-color-theme-orange);
  }
}

@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: 60px;
  }

  .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: 50px;
  }

  .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-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;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li:not(:last-of-type) {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dd6e1d40;
  }

  .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.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: 0 0 0 30px;
    margin-top: 20px;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li ul li:not(:last-of-type) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .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;
  }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li ul li a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 992px) {
  .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;
  }
}

#popup-search-box {
  background-color: var(--ed-color-common-white);
  position: fixed;
  width: 100%;
  height: 20%;
  top: -100%;
  left: 0;
  right: 0;
  white-space: nowrap;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}

#popup-search-box .box-inner-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

#popup-search-box .box-inner-wrap form {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 15px;
}

#popup-search-box .box-inner-wrap form input {
  width: 100%;
  padding: 20px 15px;
  padding-right: 80px;
  background: transparent;
  border: none;
  color: #ddd;
  border: 1px solid var(--ed-color-border-1);
  color: #666;
  font-size: 16px;
}

#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
  color: #666;
  font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:-moz-placeholder {
  color: #666;
  font-size: 16px;
}

#popup-search-box .box-inner-wrap form input::-moz-placeholder {
  color: #666;
  font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
  color: #666;
  font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:focus {
  outline: none;
}

#popup-search-box .box-inner-wrap:hover {
  cursor: url(../img/cross.png), auto;
}

#popup-search-box .box-inner-wrap .search-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: var(--ed-color-heading-primary);
  border: 1px solid var(--ed-color-border-1);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  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;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  #popup-search-box .box-inner-wrap .search-close {
    height: 35px;
    width: 35px;
    top: 10px;
    right: 10px;
  }
}

#popup-search-box .box-inner-wrap .search-close:hover {
  background-color: var(--ed-color-theme-primary);
  border: 1px solid var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}

#popup-search-box.toggled {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.popup-tags {
  position: relative;
  margin: 0 auto;
}

/* !END:  Header CSS */
/**----------------------------------------
START: Header CSS
----------------------------------------*/
#sidebar-overlay {
  display: none;
}



#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;
}

.side-menu-list {
  margin: 25px 0 35px 0;
}

.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);
}


/* !END:  Header CSS */

.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;
  }
}


/* !END:  Blog CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/
.page-header {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 120px 0;
}

.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: 9;
}

.shapes {
  position: relative;
  z-index: 99;
}

.page-header-content {
  position: absolute;
  top: 35%;
  z-index: 9;
}

.about-banner video {
  width: 100%;
  height: 100%;
}

.about-header {
  padding: 0 !important;
}

.about-banner {
  width: 100%;
  position: relative;
}

.about-header .overlay {
  background: inherit !important;
}

.page-header .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .page-header .bg-img {
    background-size: cover;
  }
}

@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: 7px;
  left: 40%;
}

.page-header .shapes .shape.shape-3 {
  top: 0;
  right: 0;
}

@media (max-width: 1700px) {
  .page-header-content {
    padding-left: 100px;
  }
}

@media (max-width: 1600px) {
  .page-header-content {
    padding-left: 150px;
  }
}

@media (max-width: 1399px) {
  .page-header-content {
    padding-left: 200px;
  }
}

@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;
  text-transform: capitalize;
}

.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);
  text-transform: capitalize;
}

/* !END:  Page Header CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.blog-contact-form.contact-form {
  border: 1px solid #E0E5EB;
  margin-top: 0;
}

.blog-contact-form.contact-form .request-form .form-group .form-item .form-control {
  background-color: transparent;
  border: 1px solid #E0E5EB;
}

.blog-contact-form.contact-form .request-form .form-group .form-item .form-control.nice-select {
  height: auto;
  line-height: inherit;
  padding: 15.5px 20px;
}

.blog-contact-form.contact-form .request-form .form-group .form-item .form-control.nice-select:after {
  top: 46%;
  width: 10px;
  height: 10px;
  border-color: var(--ed-color-text-body);
  border-bottom: 1px solid var(--ed-color-text-body);
  border-right: 1px solid var(--ed-color-text-body);
  right: 35px;
}

.blog-contact-form.contact-form .request-form .form-group .form-item .form-control.nice-select .list {
  background-color: var(--ed-color-common-white);
  width: 100%;
}

.blog-contact-form.contact-form .request-form .form-group .form-item .form-control.nice-select .list li {
  padding-left: 30px;
}

.blog-contact-form.contact-form .submit-btn .ed-primary-btn {
  width: 100%;
  justify-content: center;
}

.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);
}

/* !END:  Contact CSS */



.blog-contact-form {
  margin-top: 40px;
  padding: 40px;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}

@media only screen and (max-width: 767px) {
  .blog-contact-form {
    padding: 30px 20px;
  }
}

.blog-contact-form .title {
  font-size: 30px;
  font-weight: 600;
}

@media only screen and (max-width: 992px) {
  .blog-contact-form .title {
    font-size: 28px;
  }
}

.blog-contact-form p {
  margin-bottom: 30px;
}

.blog-contact-form .request-form .form-item {
  position: relative;
}

.blog-contact-form .request-form .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;
  margin-bottom: 25px;
  width: 100%;
  border: none;
  border-radius: 6px;
}

.blog-contact-form .request-form .form-item .form-control::-webkit-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}

.blog-contact-form .request-form .form-item .form-control:-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}

.blog-contact-form .request-form .form-item .form-control::-moz-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}

.blog-contact-form .request-form .form-item .form-control:-ms-input-placeholder {
  color: var(--ed-color-text-body);
  font-size: 16px;
  font-weight: 400;
}

.blog-contact-form .request-form .form-item .icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.blog-contact-form .request-form .form-item.message-item .icon {
  top: 25px;
}


.blog-contact-form .request-form .submit-btn .ed-primary-btn {
  font-weight: 600;
  border-radius: 5px;
}


/* !END:  Blog 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;
  box-shadow: 0 0 12px 2px #00000020;
}

.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;
  height: 371px;
  padding: 5px;
  border: 2px solid #DDE1E7;
  border-radius: 60px 0px 60px 0;
  box-shadow: 0 0 12px 2px #00000020;
}

.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 20px;
  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;
}

@media (max-width: 1200px) {
  .about-content {
    max-width: 630px;
    width: 100%;
  }
}

.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-item {
  display: flex;
}

.about-counter-items .about-counter-item .icon {
  background-color: var(--ed-color-common-white);
  width: 80px;
  height: 80px;
  border: 1px solid var(--ed-color-theme-orange);
  box-shadow: 0px 14px 51px 2px rgba(24, 50, 48, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.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;
}


.about-feature {
  background-color: var(--ed-color-theme-primary);
}

.about-feature-card {
  position: relative;
  padding-top: 60px;
}

.about-feature h2 {
  color: #fff !important;
}

.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);
}

/* !END:  About CSS */
/**----------------------------------------
START: Promo CSS
----------------------------------------*/


.promo-item-2 {
  text-align: center;
  border: 1px solid #E0E5EB;
  border-radius: 12px;
  padding: 40px 20px;
  position: relative;
  min-height: 485px;
  box-shadow: 0 0 12px 2px #00000010;
}

@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 #edd2be;
  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);
}

/* !END:  Promo CSS */
/**----------------------------------------
START: Course CSS
----------------------------------------*/

.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);
}



/* !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;
}



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

.faq-content.content-1 {
  max-width: 613px;
  width: 100%;
  padding-left: 40px;
}

@media only screen and (max-width: 992px) {
  .faq-content.content-1 {
    padding-left: 0;
  }
}

.faq-content .faq-accordion .accordion-item {
  padding: 10px;
}

.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-theme-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;
  box-shadow: 0 0 12px 2px #00000020;
}

.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;
  box-shadow: 0 0 12px 2px #00000020;
}

.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;
  box-shadow: 0 0 12px 2px #00000020;
}

.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: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #f9f9f9;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 12px 2px #00000020;
}

.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;
}



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

.team-item-2 {
  border: 1px solid #E0E5EB;
  padding: 10px;
  border-radius: 15px;
  transition: 0.5s all ease-in-out !important;
}

.our-challanges:hover {
  box-shadow: 0 0 12px 2px #00000020;
  transform: translateY(-10px) !important;
  transition: 0.5s all ease-in-out !important;
  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: rgb(13 134 128 / 93%);
  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: 76%;
  transform: translateX(-50%);
  padding: 10px 5px;
  justify-content: center;
}

@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-4 {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 12px 2px #00000010;
  margin: 20px 0;
  border: 1px solid #E0E5EB;
}

.team-item-4 .team-thumb {
  height: 350px;
}

.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;
  text-transform: capitalize;
}

.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:hover .team-thumb .overlay {
  visibility: visible;
  opacity: 1;
}

.team-item-4:hover .team-content {
  bottom: 30px;
  visibility: visible;
  opacity: 1;
}


.team-men img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* !END:  Page Header CSS */

.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 #f9f9f9;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 12px 2px #00000020;
}

.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;
  padding: 140px 0 220px 0;
  z-index: 99;
  position: relative;
}

@media only screen and (max-width: 992px) {
  .hero-content-2 {
    padding: 100px 0;
  }
}

.hero-content-2 .section-heading .section-title {
  font-size: 44px;
  text-transform: capitalize;
}

.hero-content-2 .section-heading .section-title span {
  color: var(--ed-color-theme-primary);
  font-size: 64px;
}

@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: 10px;
}

.hero-content-2 .desc1 {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin-bottom: 50px;
}


.hero-content-2 .about-counter-items .about-counter-item .title {
  color: #000;
}

.campus-training {
  padding: 60px 0;
}



@-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: Request CSS */
/**----------------------------------------
START: Feature CSS
----------------------------------------*/
.feature-wrap {
  background-color: #288d85;
  max-width: 1650px;
  margin: 0 auto;
  width: 100%;
  border-radius: 20px;
  padding: 100px 0;
  position: relative;
}

.course-top h5 span {
  color: #ffffff;
  font-family: "Birthstone", cursive;
  font-weight: 900;
  font-style: normal;
  font-size: 60px;
  letter-spacing: 4px;
}

.feature-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
}

.feature-right img {
  width: 100%;
}

.feature-item {
  background-color: #ffffff;
  padding: 30px 10px;
  border: 1px solid #ffffff;
  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;
  box-shadow: 0 0 12px 2px #00000020;
  margin: 10px 0;
}

.course-top h5 {
  color: #000;
}

.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: #288e86;
  margin: 10px 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(-30px);
}

.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 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);
}

.feature-card .content .ed-primary-btn:hover {
  color: var(--ed-color-common-white);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-section {
  position: relative;
}


/* !END: Feature CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/
.cta-section {
  background-color: #000;
  position: relative;
  z-index: 1;
}

.cta-section .cta-bg-img:before {
  background: linear-gradient(90deg, #000 14.89%, rgba(22, 30, 39, 0.2) 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  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: cover;
}

@media (max-width: 1200px) {
  .cta-section .cta-bg-img img {
    object-fit: cover;
  }
}

.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;
  font-size: 18px;
  line-height: 36px;
}

.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);
}




/**----------------------------------------
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);
  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 only screen and (max-width: 992px) {
  .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 only screen and (max-width: 992px) {
  .footer-top .title {
    text-align: center;
  }
}

.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: rgba(255, 255, 255, 0.8);
}

.footer-widget .footer-contact .number {
  font-size: 22px;
  font-weight: 600;
  display: flex;
  margin: 15px 0;
  align-items: baseline;
}

.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);
  color: var(--ed-color-common-white);
  font-weight: 500;
  font-size: 18px;
}

.footer-widget .footer-contact .number a:hover {
  color: var(--ed-color-theme-primary);
}

.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-theme-primary);
}

.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-theme-primary);
}

.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 15px;
}

.footer-widget .footer-form {
  position: relative;
  margin-top: 30px;
}

.footer-widget .footer-form .form-control {
  background-color: var(--ed-color-common-dark);
  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-theme-primary);
}

.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-theme-primary);
}

.copyright-area {
  border-top: 1px solid #223736;
}

.copyright-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 0;
  border-top: 2px solid var(--ed-color-common-dark);
}

@media only screen and (max-width: 992px) {
  .copyright-content {
    margin-top: 0;
    flex-direction: column-reverse;
    row-gap: 10px;
    padding: 40px 0;
  }
}

.copyright-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-family: var(--ed-ff-body);
  margin: 0;
}

.copyright-content p span {
  color: var(--ed-color-theme-primary);
}

@media only screen and (max-width: 767px) {
  .copyright-content p {
    text-align: center;
  }
}

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

}

.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;
}

#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 */

.hero-content-2 .ed-primary-btn {
  background-color: var(--ed-color-theme-orange);
  margin-top: 30px;
}

.promo-item-2 ul {
  list-style: none;
}

.promo-item-2 ul li {
  margin: 10px 0;
  text-align: left !important;
}

.promo-item-2 ul li b {
  color: var(--ed-color-theme-orange);
}

.promo-item-2 ul li i {
  font-size: 14px;
  color: var(--ed-color-theme-primary);
  margin-right: 10px;
}

.promo-item-2:hover {
  box-shadow: 0 0 12px 2px #00000020;
  transition: 0.5s all ease-in-out;
  background-color: #fff;
}

.hero-content-2 .desc b {
  color: var(--ed-color-theme-orange);
  letter-spacing: 1px;
}

.main-challange {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
  max-width: 100%;
}

.copyright-content {
  display: flex;
  justify-content: space-between;
}

.copyright-content p a {
  color: #fdd800;
}

.map-view iframe {
  width: 100%;
  height: 450px;
}

.team-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  max-width: 100%;
}

.modal-dialog {
  width: 60%;
  max-width: 60%;
}

.g-recaptcha {
  margin-bottom: 20px;
}

.modal-header h5 {
  font-size: 40px;
}

.desklogin {
  display: none !important;
}

.partner-content h4 {
  font-size: 26px;
  margin-bottom: 10px;
}

.partner-content h4 span {
  color: var(--ed-color-theme-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner_img {
  position: relative;
}

.nextlevel-head {
  text-align: center;
}

.nextlevel-head h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--ed-color-theme-orange);
}

.nextlevel-head p {
  font-size: 20px;
  color: #000;
  line-height: 36px;
}

.partner-main {
  padding: 60px 0;
}

.nextlevel {
  padding: 60px 0;
}

.mobilenone {
  display: block;
}

.desknone {
  display: none;
}

.team-section h2 {
  text-transform: capitalize !important;
}

.event-details-content {
  background-color: var(--ed-color-grey-1);
  padding: 30px;
  border: 1px solid #E0E5EB;
  border-radius: 15px;
}

.event-details-list {
  margin-bottom: 30px;
}

.event-details-list h5 {
  font-size: 30px;
  color: #07a698;
}

.event-details-content .event-details-list li:not(:last-of-type) {
  margin: 15px 0;
}

.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 p {
  margin-bottom: 0;
}

.event-details-content .event-details-list li i {
  color: var(--ed-color-theme-orange);
  font-size: 18px;
}

.event-details-content .event-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.event-details-content .event-details-img {
  margin-bottom: 30px;
}

.event-details .blog-contact-form {
  padding: 30px;
  box-shadow: 0 0 12px 2px #00000010;
}

.about-logo-animation {
  padding: 5px;
  border: 2px solid #DDE1E7;
  border-radius: 60px 0px 60px 0;
  box-shadow: 0 0 12px 2px #00000020;
}

.about-logo-animation {
  margin-bottom: 20px;
}

.about-logo-animation video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60px 0 60px 0;
}

@media(max-width:575.98px) {
  .team-item-4 .team-content {
    bottom: 0px;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .team-item-4 .team-thumb .overlay {
    visibility: visible;
    opacity: 1;
  }

  .team-item-4 .team-content {
    bottom: 30px !important;
  }

  .about-logo-animation {
    height: inherit;
  }

  .nextlevel-head h3 {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 36px;
  }

  .nextlevel-head p {
    font-size: 16px;
    color: inherit;
    line-height: 28px;
  }

  .mobilenone {
    display: none;
  }

  .desknone {
    display: block;
  }

  .hero-content-2 .desc br {
    display: none;
  }

  .hero-content-2 .section-heading .section-title span {
    font-size: 32px;
  }

  .mobile-side-menu .side-menu-list li a br {
    display: block !important;
  }

  .side-menu-list li {
    align-items: baseline;
  }

  .about-img-wrap .about-img-2 {
    display: none;
  }

  .about-img-wrap .about-img-1 {
    max-width: 100%;
  }

  .about-img-wrap .about-img-1 {
    position: inherit;
    margin-bottom: 10px;
  }

  .about-img-wrap .about-contact {
    position: inherit;
    max-width: 100%;
  }

  .about-counter-items .about-counter-item .content .title {
    font-size: 28px;
    color: var(--ed-color-theme-orange);
  }

  .feature-section {
    padding: 60px 20px;
  }

  .feature-wrap {
    padding: 40px 0;
  }

  .course-top h5 span {
    font-size: 40px;
  }

  .feature-right {
    display: none;
  }

  .main-challange {
    grid-template-columns: repeat(1, 1fr);
  }

  .team-item-2 .team-thumb .team-content {
    padding: 10px;
  }

  .team-item-2 .team-thumb .team-content .instructor-info span br {
    display: none;
  }

  .faq-img-wrap-2 {
    display: none;
  }

  .promo-item-2 {
    background-color: #fff;
  }

  .page-header .overlay {
    background: linear-gradient(45deg, #000000, transparent);
  }

  .page-header-content .title,
  .sub-title a,
  .sub-title span {
    color: #fff;
  }

  .page-header-content .sub-title .inner-page {
    color: #e17a30;
  }

  .team-main {
    grid-template-columns: repeat(1, 1fr);
  }

  .map-view iframe {
    height: 300px;
  }

  .header .primary-header-inner .header-right {
    margin-right: 20px;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand {
    background-color: var(--ed-color-theme-orange);
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked {
    background-color: var(--ed-color-theme-primary);
    color: var(--ed-color-common-white);
  }

  .promo-item-2 {
    min-height: inherit;
  }

  .desklogin {
    display: block;
  }
  .collaboration-image{
    margin-bottom: 20px;
  }
 
}

@media(min-width:576px) and (max-width: 767.98px) {
  .team-item-4 .team-content {
    bottom: 0px;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .team-item-4 .team-thumb .overlay {
    visibility: visible;
    opacity: 1;
  }

  .team-item-4 .team-content {
    bottom: 30px !important;
  }

  .about-logo-animation {
    height: inherit;
  }

  .hero-content-2 .desc br {
    display: none;
  }

  .hero-content-2 .section-heading .section-title span {
    font-size: 32px;
  }

  .mobile-side-menu .side-menu-list li a br {
    display: block !important;
  }

  .side-menu-list li {
    align-items: baseline;
  }

  .about-img-wrap .about-img-2 {
    display: none;
  }

  .about-img-wrap .about-img-1 {
    max-width: 100%;
  }

  .about-img-wrap .about-img-1 {
    position: inherit;
    margin-bottom: 10px;
  }

  .about-img-wrap .about-contact {
    position: inherit;
    max-width: 100%;
  }

  .about-counter-items .about-counter-item .content .title {
    font-size: 28px;
    color: var(--ed-color-theme-orange);
  }

  .feature-section {
    padding: 60px 20px;
  }

  .feature-wrap {
    padding: 40px 0;
  }

  .course-top h5 span {
    font-size: 40px;
  }

  .feature-right {
    display: none;
  }

  .main-challange {
    grid-template-columns: repeat(1, 1fr);
  }

  .team-item-2 .team-thumb .team-content {
    padding: 10px;
  }
  .collaboration-image{
    margin-bottom: 20px;
    width: fit-content;
  }
 

  .team-item-2 .team-thumb .team-content .instructor-info span br {
    display: none;
  }

  .faq-img-wrap-2 {
    display: none;
  }

  .promo-item-2 {
    background-color: #fff;
  }

  .page-header .overlay {
    background: linear-gradient(45deg, #000000, transparent);
  }

  .page-header-content .title,
  .sub-title a,
  .sub-title span {
    color: #fff;
  }

  .page-header-content .sub-title .inner-page {
    color: #e17a30;
  }

  .team-main {
    grid-template-columns: repeat(1, 1fr);
  }

  .map-view iframe {
    height: 300px;
  }

  .header .primary-header-inner .header-right {
    margin-right: 20px;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand {
    background-color: var(--ed-color-theme-orange);
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked {
    background-color: var(--ed-color-theme-primary);
    color: var(--ed-color-common-white);
  }

  .promo-item-2 {
    min-height: inherit;
  }

  .desklogin {
    display: block !important;
  }

  .nextlevel-head h3 {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 36px;
  }

  .nextlevel-head p {
    font-size: 16px;
    color: inherit;
    line-height: 28px;
  }

  .mobilenone {
    display: none;
  }

  .desknone {
    display: block;
  }
}

@media(min-width:768px) and (max-width: 991.98px) {
  .team-item-4 .team-content {
    bottom: 0px;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .team-item-4 .team-thumb .overlay {
    visibility: visible;
    opacity: 1;
  }

  .team-item-4 .team-content {
    bottom: 30px !important;
  }

  .about-logo-animation {
    height: inherit;
  }

  .hero-content-2 .desc br {
    display: none;
  }

  .header-right .ed-primary-btn {
    display: none;
  }

  .hero-content-2 .section-heading .section-title span {
    font-size: 32px;
  }

  .mobile-side-menu .side-menu-list li a br {
    display: block !important;
  }

  .side-menu-list li {
    align-items: baseline;
  }

  .about-img-wrap .about-img-2 {
    display: none;
  }

  .about-img-wrap .about-img-1 {
    max-width: 100%;
  }

  .about-img-wrap .about-img-1 {
    position: inherit;
    margin-bottom: 10px;
  }

  .about-img-wrap .about-contact {
    position: inherit;
    max-width: 100%;
  }

  .about-counter-items .about-counter-item .content .title {
    font-size: 28px;
    color: var(--ed-color-theme-orange);
  }

  .feature-section {
    padding: 60px 20px;
  }

  .feature-wrap {
    padding: 40px 0;
  }

  .course-top h5 span {
    font-size: 40px;
  }

  .feature-right {
    display: none;
  }

  .main-challange {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-item-2 .team-thumb .team-content {
    padding: 10px;
  }

  .faq-img-wrap-2 {
    display: none;
  }

  .promo-item-2 {
    background-color: #fff;
  }

  .page-header .overlay {
    background: linear-gradient(45deg, #000000, transparent);
  }

  .page-header-content .title,
  .sub-title a,
  .sub-title span {
    color: #fff;
  }

  .page-header-content .sub-title .inner-page {
    color: #e17a30;
  }

  .team-main {
    grid-template-columns: repeat(1, 1fr);
  }

  .map-view iframe {
    height: 300px;
  }

  .header .primary-header-inner .header-right {
    margin-right: 20px;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand {
    background-color: var(--ed-color-theme-orange);
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked {
    background-color: var(--ed-color-theme-primary);
    color: var(--ed-color-common-white);
  }

  .feature-item p {
    font-size: 15px;
  }

  .promo-item-2 {
    min-height: 100%;
  }

  .desklogin {
    display: block !important;
  }

  .nextlevel-head h3 {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 36px;
  }

  .nextlevel-head p {
    font-size: 16px;
    color: inherit;
    line-height: 28px;
  }

  .mobilenone {
    display: none;
  }

  .desknone {
    display: block;
  }
}

@media(min-width:992px) and (max-width: 1199.98px) {
  .hero-content-2 .desc br {
    display: none;
  }

  .header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu li a {
    font-size: 14px;
  }

  .ed-primary-btn {
    font-size: 14px;
    padding: 17px 20px;
  }

  .hero-content-2 h1 br {
    display: block !important;
  }

  .mobile-side-menu .side-menu-list li a br {
    display: block !important;
  }

  .side-menu-list li {
    align-items: baseline;
  }

  .about-counter-items .about-counter-item .content .title {
    font-size: 28px;
    color: var(--ed-color-theme-orange);
  }

  .feature-section {
    padding: 60px 20px;
  }

  .feature-wrap {
    padding: 40px 0;
  }

  .feature-right {
    display: none;
  }

  .main-challange {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-item-2 .team-thumb .team-content {
    padding: 10px;
  }

  .promo-item-2 {
    background-color: #fff;
  }

  .page-header .overlay {
    background: linear-gradient(45deg, #000000, transparent);
  }

  .page-header-content .title,
  .sub-title a,
  .sub-title span {
    color: #fff;
  }

  .page-header-content .sub-title .inner-page {
    color: #e17a30;
  }

  .team-main {
    grid-template-columns: repeat(1, 1fr);
  }

  .map-view iframe {
    height: 300px;
  }

  .header .primary-header-inner .header-right {
    margin-right: 20px;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand {
    background-color: var(--ed-color-theme-orange);
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked {
    background-color: var(--ed-color-theme-primary);
    color: var(--ed-color-common-white);
  }

  .feature-item p {
    font-size: 15px;
  }

  .promo-item-2 {
    min-height: 436px;
    margin-bottom: 30px;
  }

  .feature-item {
    min-height: 234px;
  }

  .cta-section {
    padding: 100px 50px;
  }

  .hero-section-2 .hero-bg-wrap {
    right: -16%;
  }

  .about-img-wrap .about-img-2 {
    display: none;
  }

  .about-img-wrap .about-img-1,
  .about-img-wrap .about-contact {
    max-width: 100%;
  }

  .desklogin {
    display: block !important;
  }


  .nextlevel-head h3 {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 36px;
  }

  .nextlevel-head p {
    font-size: 16px;
    color: inherit;
    line-height: 28px;
  }
}

@media(min-width:1200px) and (max-width:1600px) {

  .main-challange {
    grid-template-columns: repeat(3, 1fr);
  }

  .promo-item-2 {
    min-height: 100%;
  }

}

.nice-select .option {
  color: #000;
}

.desklogin {
  display: none;
}


.single-page {
  padding: 100px 0;
}

.single-page-content {
  box-shadow: 0 0 12px 2px #00000020;
  padding: 50px;
}

.single-page-content h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
  line-height: 40px;
}

.single-page-right h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  padding: 30px 20px 10px;
  color: #144183;
}

.single-page-right .popular-right {
  border-bottom: 1px solid #333 !important;
  width: 100%;
  display: flex;
  padding: 20px;
  color: #000;
}

.single-page-right .popular-right:last-child {
  border-bottom: inherit !important;

}

.blog_data {
  padding: 60px 0;
}

.blog_data h1 {
  margin-bottom: 50px;
  font-weight: 800;
  font-size: 40px;
  color: #0a3575;

}

.blog_data h2 {
  text-transform: uppercase;
}

.create-post {
  padding: 60px 0;
}

.create-post h1 {
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 30px;
  color: #288e86;
  text-align: center;

}

.create-post input,
.create-post textarea {
  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;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #dadada;
  border-radius: 6px;
}

.create-post label {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #e07629;
}

.create-post .form-group {
  margin-bottom: 20px;
}

.blog-post {
  box-shadow: 0 0 12px 2px #00000020;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.blog-post h5 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 10px 0;
  line-height: 36px;
}

.blog-post p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.blog-post small {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #979797;
}

.blog-post img {
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  position: relative;
}

.blog-btn {
  padding: 15px 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: 0px;
  background-color: #f47223;
  transition: all 0.3s;
  text-transform: uppercase;
  display: block;
  width: fit-content;
  margin-top: 20px;
  box-shadow: 0 0 12px 2px #00000020;
  position: absolute;
  bottom: 20px;
}

.single-page .container-fluid {
  width: 90%;
}

.fr-counter,
.fr-second-toolbar {
  display: none;
}

.fr-box.fr-basic .fr-wrapper {
  min-height: 200px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.single-page-content img {
  padding: 20px;
}

.fr-wrapper a {
  display: none !important;
}

[data-f-id="pbf"] {
  display: none;
}

.single-page-content p {
  font-size: 18px;

}

.single-page-content img {
  width: 100%;
}

.popular-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.single-page-right h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.single-page-right {
  box-shadow: 0 0 12px 2px #00000020;
  padding: 0px;
  border-radius: 10px;
  border: 1px solid #1a4584;
}

.single-page-right p {
  font-size: 14px;
  margin-bottom: 20px;
}

.single-page-right .subres {
  padding: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border: 0px;
  background-color: #f47223;
  transition: all 0.3s;
  text-transform: uppercase;
  margin-top: 0;
  position: relative;
  text-decoration: none;
}

.blog-banner {
  padding: 120px 0;
  background-image: url('../img/blog-banner.jpg');
  background-position: center;
  background-size: cover;
  background-position: center;
}

.blog-banner h1 {
  font-size: 46px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 0px;
}

.innertxt1 ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #000;
}

.innertxt1 ul {
  list-style: none;
  text-align: left;
  margin-bottom: 0px;
  padding-left: 0px;
}

.innertxt1 ul li {
  display: inline-block;
  position: relative;
  padding-right: 25px;
  font-weight: 600;
  margin-bottom: 0px;
  opacity: 0.75;
  font-size: 14px;
  color: var(--ed-color-theme-primary);
}

.innertxt1 ul li a:after {
  content: "/";
  position: absolute;
  font-size: 14px;
  right: 8px;
  top: 0px;
}

.form-group .subres {
  padding: 15px 40px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border: 0px;
  background-color: #288e86;
  transition: all 0.3s;
  text-transform: uppercase;
  margin-top: 30px;
}

#myForm {
  display: none;
}

.login_page .card {
  padding: 30px;
  background-color: #fff;
}

.card-image {
  text-align: center;
}

.card-image img {
  width: 300px;
}

.card-header {
  background-color: #fff;
  text-align: center;
}

.card-header h4 {
  font-size: 35px;
}

.login_page {
  background-color: #f9f9f9;
}

.login_page .form-group {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  display: grid;
}

.login_page .form-group label {
  margin-bottom: 10px;
}

.login_page input,
.login_page input.form-control,
.login_page select.form-control {
  border: 1px solid #000 !important;
  color: #000 !important;
  width: 100%;
  float: left;
  font-size: 16px;
  padding: 0 15px;
  height: 54px;
  line-height: 54px;
  outline: none;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: 5px;
  transition: all 0.5sease-in-out;
  transition: all 0.5sease-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;
  -webkit-transition: all 0.5sease-in-out;
}

.form-control:focus {
  box-shadow: inherit;
  outline: inherit;

}

.header-right .ed-primary-btn {
  border: 1px solid var(--ed-color-theme-primary);
}

.header-right .ed-primary-btn:before {
  background: inherit !important;
}

.header-right .ed-primary-btn:hover {
  background: #fff;
  font-size: 18px !important;
}

.float-btn {
  position: fixed;
  right: -71px;
  top: 50%;
  z-index: 9;
  transform: rotate(271deg);
  box-shadow: 0 0 12px 2px #00000060;
  border-radius: 100%;
}
.btn.ed-primary-btn.header-btn{
  background: var(--ed-color-theme-primary);
}
.collaborations{
  background-color: var(--ed-color-grey-1);
}
.collaboration-image{
  box-shadow: 0 0 12px 2px #00000020;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}