@charset "UTF-8";
/*-----------------------------------------------------------------------------------

  Template Name: Verso - Multipurpose HTML5 Template
  Author: RRDevs
  Support: https://support.rrdevs.net/
  Version: 1.0.0

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


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

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

**********************************************/
/**----------------------------------------
START: Default CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --ed-ff-body: 'Inter', sans-serif;
  --ed-ff-heading: 'Inter', sans-serif;
  --ed-ff-p: 'Inter', 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: 80px;
  --ed-fs-h2: 44px;
  --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-common-black-2: #1F1F1F;
  --ed-color-heading-primary: #0A0A0A;
  --ed-color-text-body: #4E4E4E;
  --ed-color-text-body-2: #4E4E4E;
  --ed-color-theme-primary: #1756F7;
  --ed-color-theme-primary-2: #0B412A;
  --ed-color-grey-1: #E5E5E5;
  --ed-color-bg-1: #F5F5F5;
  --ed-color-bg-2: #191A1F;
  --ed-color-border-1: #E0E5EB;
}

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

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

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

p {
  font-family: var(--ed-ff-p);
  font-size: 16px;
  font-weight: var(--ed-fw-normal);
  color: var(--ed-color-text-body);
  margin-bottom: 15px;
  line-height: 28px;
}

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

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

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

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

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

button:hover {
  cursor: pointer;
}

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

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

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

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

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

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

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

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

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

/**
 	Common Classes CSS
*/
.fix {
  overflow: hidden;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

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

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

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

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

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

.container {
  max-width: 1350px;
}

.container-2 {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-3 {
  max-width: 1710px;
  margin: 0 auto;
  padding: 0 15px;
}

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

.service-bg {
  background-color: #F7F7F7;
}

.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 {
  font-family: "Inter";
  color: var(--ed-color-theme-primary);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-heading .section-title {
  font-style: normal;
  font-weight: 700;
  font-size: var(--ed-fs-h2);
  line-height: 58px;
  color: var(--ed-color-heading-primary);
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .section-heading .section-title {
    font-size: 40px;
    line-height: 50px;
  }
  .section-heading .section-title br {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .section-heading .section-title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 24px;
    line-height: 34px;
  }
}
.section-heading .section-title span {
  color: var(--ed-color-theme-primary);
}
.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: 60px;
  }
}

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

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

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

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

@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;
  }
}
.sticky-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}

@media only screen and (max-width: 767px) {
  br {
    display: none;
  }
}
.ripple,
.ripple:before,
.ripple:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateX(-50%) translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  -moz-animation: rippleOne 3s infinite;
  -ms-animation: rippleOne 3s infinite;
  -o-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple {
  z-index: -1;
}

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

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

@-webkit-keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.running-text {
  background-color: var(--ed-color-theme-primary);
  padding: 23px 0;
}
.running-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 80px;
}
.running-text ul li {
  display: inline-block;
  white-space: nowrap;
  font-size: 24px;
  color: var(--ed-color-common-white);
  text-transform: capitalize;
  font-weight: 600;
  position: relative;
}
.running-text ul li:before {
  background-color: var(--ed-color-common-white);
  font-family: "Font Awesome 6 Pro";
  color: var(--ed-color-theme-primary);
  font-weight: 700;
  font-size: 16px;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  content: "\f0e7";
  position: absolute;
  right: -57px;
  top: 50%;
  transform: translateY(-50%);
}

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

/**
    Buttons CSS
*/
.ed-primary-btn {
  background-color: var(--ed-color-theme-primary);
  font-family: var(--ed-ff-heading);
  color: var(--ed-color-common-white);
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 17px 30px;
  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: #F5F5F5;
  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);
}
@media (max-width: 1200px) {
  .header {
    background-color: var(--ed-color-common-white);
  }
}
.header .mid-header .mid-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
  padding: 20px 0;
}
.header .mid-header .mid-header-inner .category-form-wrap {
  background-color: var(--ed-color-grey-1);
  display: flex;
  align-items: center;
  width: 520px;
  padding: 12px 10px;
  border-radius: 100px;
}
@media (max-width: 1399px) {
  .header .mid-header .mid-header-inner .category-form-wrap {
    width: 450px;
  }
}
@media only screen and (max-width: 767px) {
  .header .mid-header .mid-header-inner .category-form-wrap {
    display: none;
  }
}
.header .mid-header .mid-header-inner .category-form-wrap .select-control {
  background-color: var(--ed-color-grey-1);
  height: inherit;
  line-height: inherit;
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--ed-color-heading-primary);
  margin-right: 20px;
  padding-right: 30px;
  padding-left: 40px;
  border-right: 1px solid var(--ed-color-border-1);
  border-radius: 100px;
  border-radius: 0;
}
.header .mid-header .mid-header-inner .category-form-wrap .select-control:before {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 500;
  content: "\e196";
  position: absolute;
  top: 52%;
  left: 20px;
  transform: translateY(-50%);
}
.header .mid-header .mid-header-inner .category-form-wrap .select-control:after {
  height: 7px;
  width: 7px;
  border-color: var(--ed-color-heading-primary);
  right: 20px;
}
.header .mid-header .mid-header-inner .category-form-wrap .select-control .list {
  margin-left: 19px;
  margin-top: 14px;
}
.header .mid-header .mid-header-inner .category-form-wrap .header-form {
  position: relative;
  width: 100%;
}
.header .mid-header .mid-header-inner .category-form-wrap .header-form .form-control {
  padding-top: 0;
  background-color: var(--ed-color-grey-1);
  padding-bottom: 0;
  border: none;
  box-shadow: none;
  padding-left: 0;
  padding-right: 150px;
  border-radius: 100px;
}
.header .mid-header .mid-header-inner .category-form-wrap .header-form .submit {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  padding: 10px 20px 10px 20px;
  font-size: 14px;
  font-weight: 500;
}
.header .mid-header .mid-header-inner .category-form-wrap .header-form .submit i {
  margin-right: 5px;
  margin-left: 0;
  font-size: 12px;
}
.header .mid-header .mid-header-inner .mid-header-right {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.header .mid-header .mid-header-inner .mid-header-right .header-right-icon {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .header .mid-header .mid-header-inner .mid-header-right .header-right-icon {
    display: none;
  }
}
.header .mid-header .mid-header-inner .mid-header-right .header-right-icon a {
  color: var(--ed-color-text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  width: 47px;
  border-radius: 50%;
  border: 1px solid #E0E5EB;
}
.header .mid-header .mid-header-inner .mid-header-right .header-right-icon .number {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  font-size: 12px;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  z-index: 1;
}
.header .primary-header {
  position: relative;
}
@media only screen and (max-width: 992px) {
  .header {
    position: inherit;
    height: auto !important;
  }
}
.header .primary-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner {
    padding: 20px 0;
  }
}
.header .primary-header-inner .header-left-inner {
  display: flex;
  align-items: center;
}
.header .primary-header-inner .header-logo {
  position: relative;
  z-index: 2;
}
.header .primary-header-inner .header-logo img {
  max-width: 224px;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-logo img {
    max-width: 180px;
  }
}
@media (max-width: 1200px) {
  .header .primary-header-inner .header-logo img {
    max-width: 160px;
  }
}
.header .primary-header-inner .header-menu-wrap {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.header .primary-header-inner .header-menu-wrap .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 25px;
}
@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;
  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);
  position: relative;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active a::before {
  background-color: var(--ed-color-theme-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
}
.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;
}
.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);
}
@media (min-width: 993px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu {
    position: static;
    display: inline-flex;
  }
  .header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu:after {
    display: inline-flex;
    position: inherit;
    transform: translateY(36px) translateX(-10px);
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu:after {
    transform: translateY(38px) translateX(-10px);
  }
}
@media (min-width: 993px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul {
    background-color: var(--ed-color-common-white);
    width: 30%;
    left: 30% !important;
    grid-template-columns: 1fr 1fr;
    display: grid;
    padding: 20px 10px;
  }
}
@media (min-width: 993px) and (max-width: 1600px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul {
    left: 24% !important;
  }
}
@media (min-width: 993px) and (max-width: 1399px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul {
    width: 40%;
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul {
    width: 50%;
    left: 14% !important;
  }
}
@media (min-width: 993px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul li {
    border: none;
  }
  .header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul li:hover {
    background-color: transparent;
  }
  .header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul li a {
    border: none;
    padding: 10px 0;
  }
  .header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul li a:hover {
    color: var(--ed-color-theme-primary);
    background-color: transparent;
  }
  .header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul li a:before {
    display: none;
  }
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children {
  position: relative;
  padding-right: 5px;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children a {
  padding-right: 12px;
}
@media (max-width: 1200px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children a {
    padding-right: 13px;
  }
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children ul li {
  margin: 0;
  padding-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: 10px;
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right .header-logo img {
    width: 90px;
  }
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-right {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right {
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right .header-btn {
    display: none;
  }
}
.header .primary-header-inner .header-right .search-icon {
  color: var(--ed-color-heading-primary);
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .header .primary-header-inner .header-right .search-icon {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right .search-icon {
    margin-right: 20px;
  }
}
.header .primary-header-inner .header-right .header-right-icon {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right .header-right-icon {
    display: none;
  }
}
.header .primary-header-inner .header-right .header-right-icon a {
  color: var(--ed-color-text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  width: 47px;
  border-radius: 50%;
  border: 1px solid #E0E5EB;
}
.header .primary-header-inner .header-right .header-right-icon .number {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  font-size: 12px;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  z-index: 1;
}
.header .primary-header-inner .header-right .header-right-item {
  display: flex;
  align-items: center;
  background: rgba(31, 147, 93, 0.1);
  height: 50px;
  width: 50px;
  justify-content: center;
  border-radius: 50%;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right .header-right-item {
    line-height: 1;
    display: flex !important;
  }
}
.header .primary-header-inner .header-right .header-right-item .mobile-side-menu-toggle {
  color: var(--ed-color-theme-primary);
  font-size: 18px;
}
.header .primary-header-inner .header-right .header-right-item .search-icon {
  font-size: 16px;
  margin-left: 55px;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right .header-right-item .search-icon {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .mean-push {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  .header-1 .mid-header {
    display: none;
  }
}
.header-1 .primary-header {
  border-top: 1px solid var(--ed-color-border-1);
}
.header-1 .primary-header.fixed .primary-header-inner .header-menu-wrap .sub-menu li.menu-item-has-children:first-child:after {
  transform: translateY(28px) translateX(-9px);
}
@media (max-width: 1200px) {
  .header-1 .primary-header.fixed .primary-header-inner .header-menu-wrap .sub-menu li.menu-item-has-children:first-child:after {
    transform: translateY(20px) translateX(-9px);
  }
}
.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 .sub-menu li.menu-item-has-children:first-child:after {
  transform: translateY(22px) translateX(-9px);
}
@media (max-width: 1200px) {
  .header-1 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li.menu-item-has-children:first-child:after {
    transform: translateY(20px) translateX(-9px);
  }
}
.header-1 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li a {
  padding: 19px 0;
  padding-right: 12px;
}
.header-1 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li ul {
  top: 63px;
}
.header-1 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul {
  left: 25% !important;
}
@media (max-width: 1200px) {
  .header-1 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul {
    left: 20% !important;
  }
}
.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: 10px 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;
}
@media only screen and (max-width: 767px) {
  .header-1 .primary-header.fixed .primary-header-inner .header-right-btn {
    display: none;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-2 {
  background-color: var(--ed-color-common-white);
}
@media only screen and (max-width: 992px) {
  .header-2 {
    position: relative;
  }
}
.header-2 .primary-header {
  background-color: transparent;
}
.header-2 .primary-header:before {
  visibility: hidden;
  opacity: 0;
}
@media only screen and (max-width: 992px) {
  .header-2 .primary-header:before {
    visibility: visible;
    opacity: 1;
  }
}
.header-2 .primary-header-inner {
  background-color: transparent;
}
.header-2 .primary-header-inner .header-logo .fixed-logo {
  display: none;
}
.header-2 .primary-header-inner .header-right-wrap {
  display: flex;
  align-items: center;
  column-gap: 60px;
}
@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: 20px;
  }
}
.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-theme-primary);
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children:hover:after {
  color: var(--ed-color-theme-primary);
}
.header-2 .primary-header-inner .header-right-wrap .header-right .header-right-icon {
  color: var(--ed-color-text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  width: 47px;
  border-radius: 50%;
  border: 1px solid #E0E5EB;
}
@media only screen and (max-width: 767px) {
  .header-2 .primary-header-inner .header-right-wrap .header-right .header-right-icon {
    display: none;
  }
}
.header-2 .primary-header-inner .header-right-wrap .header-right .search-icon {
  color: var(--ed-color-common-white);
}
.header-2 .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
  color: var(--ed-color-heading-primary);
}

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

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

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

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

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

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

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

.mobile-side-menu {
  background-color: var(--ed-color-common-white);
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 25%;
  -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 (max-width: 1399px) {
  .mobile-side-menu {
    width: 30%;
  }
}
@media (max-width: 1200px) {
  .mobile-side-menu {
    width: 35%;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .mobile-side-menu {
    padding: 40px 20px;
    width: 100%;
    max-width: 320px;
  }
}
.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: 767px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    right: 16px;
  }
}
.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 var(--ed-color-border-1);
}
.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: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    font-size: 18px;
  }
}
.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: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    font-size: 14px;
  }
}

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

.header-23 .top-bar .top-bar-inner .top-bar-right .register-box {
  margin-right: 20px !important;
  padding-right: 20px !important;
  border-right: 2px solid rgba(255, 255, 255, 0.05) !important;
}
.header-23 .primary-header-inner {
  background-color: var(--ed-color-common-white);
}

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

.sidebar-trigger {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.side-menu-list {
  margin: 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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* !END:  Blog CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/
.page-header {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 151px 0;
}
@media only screen and (max-width: 767px) {
  .page-header {
    padding: 100px 0;
  }
}
.page-header::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(270deg, rgba(209, 214, 229, 0) 34.55%, #E9ECF3 59.71%);
}
.page-header .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  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;
  }
}

.page-header-content {
  position: relative;
}
.page-header-content .title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  color: #0A0A0A;
}
@media only screen and (max-width: 767px) {
  .page-header-content .title {
    font-size: 40px;
    line-height: 50px;
  }
}
.page-header-content .sub-title {
  font-family: var(--ed-ff-body);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #0A0A0A;
}
.page-header-content .sub-title .home {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #0A0A0A;
}
.page-header-content .sub-title .inner-page {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: var(--ed-color-theme-primary);
}
.page-header-content .sub-title .icon {
  font-size: 16px;
  padding: 0 5px;
}

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

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

#form-messages {
  display: none;
  margin-top: 15px;
  margin-bottom: 0;
}

#form-messages.alert-success {
  display: block;
}

/* !END:  Contact CSS */
/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/
.blog-details-top-wrap {
  background-color: #F5F5F5;
  border-radius: 15px;
}

.blog-details-top-wrap-2 {
  padding: 60px;
}
@media only screen and (max-width: 767px) {
  .blog-details-top-wrap-2 {
    padding: 60px 15px;
  }
}

.blog-details-top .blog-details-thumb {
  position: relative;
  padding: 20px 20px 0 20px;
}
.blog-details-top .blog-details-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}
.blog-details-top .post-meta {
  margin: 32px 0 10px 0;
  padding: 0 40px;
}
@media only screen and (max-width: 992px) {
  .blog-details-top .post-meta {
    padding: 0 20px;
  }
}
.blog-details-top .post-meta li i {
  color: var(--ed-color-theme-primary);
}

.blog-details-content {
  padding: 0 40px 40px 40px;
  border-radius: 7px;
}
@media only screen and (max-width: 992px) {
  .blog-details-content {
    padding: 0 20px 20px 20px;
  }
}
.blog-details-content .details-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .blog-details-content .details-title {
    font-size: 24px;
  }
}
.blog-details-content .thumb-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: -20px;
}
@media (max-width: 1200px) {
  .blog-details-content .thumb-wrap {
    margin-left: 0;
    flex-wrap: wrap;
  }
}
.blog-details-content .thumb-wrap img {
  width: 100%;
  object-fit: cover;
  border-radius: 7px;
}
.blog-details-content .tag-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  margin: 50px 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.blog-details-content .tag-wrap .tags {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .blog-details-content .tag-wrap .tags {
    flex-wrap: wrap;
    row-gap: 15px;
  }
}
.blog-details-content .tag-wrap .tags .tag {
  font-family: var(--ed-ff-body);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--ed-color-heading-primary);
  margin-bottom: 0;
}
.blog-details-content .tag-wrap .tags ul {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex-wrap: wrap;
  row-gap: 15px;
}
@media only screen and (max-width: 767px) {
  .blog-details-content .tag-wrap .tags ul {
    margin-left: 0;
  }
}
.blog-details-content .tag-wrap .tags ul li a {
  font-size: 14px;
  font-weight: 600;
  color: #74787C;
  line-height: 17px;
  font-family: var(--ed-ff-body);
  font-style: normal;
}
.blog-details-content .tag-wrap .social-list-wrap {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.blog-details-content .tag-wrap .social-list-wrap .share {
  font-family: var(--ed-ff-body);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--ed-color-heading-primary);
  margin-bottom: 0;
}
.blog-details-content .tag-wrap .social-list-wrap .social-list {
  list-style: none;
}
.blog-details-content .tag-wrap .social-list-wrap .social-list li {
  display: inline-flex;
}
.blog-details-content .tag-wrap .social-list-wrap .social-list li:not(:last-of-type) {
  margin-right: 20px;
}
.blog-details-content .tag-wrap .social-list-wrap .social-list li a {
  font-size: 16px;
  color: #74787C;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-details-content .tag-wrap .social-list-wrap .social-list li a:hover {
  color: var(--ed-color-theme-primary);
}
.blog-details-content .blog-details-post .head-title {
  color: var(--ed-color-heading-primary);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0;
}
.blog-details-content .blog-details-post .view-post {
  font-size: 16px;
  font-weight: 700;
  color: var(--ed-color-theme-primary);
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-transform: uppercase;
  line-height: 1;
}
.blog-details-content .blog-details-post .view-post i {
  transform: rotate(-45deg);
  margin-top: -1px;
}

.comment-wrap {
  margin-top: 60px;
  margin-bottom: 60px;
}
.comment-wrap .comment-title {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #191717;
}
.comment-wrap .comment-item {
  border-bottom: 1px solid #E2E2E2;
  padding-bottom: 30px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.comment-wrap .comment-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.comment-wrap .comment-item .thumb img {
  border-radius: 50%;
  object-fit: cover;
}
.comment-wrap .comment-item .content .title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 14px;
}
.comment-wrap .comment-item .content .title-wrap .details span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #74787C;
}
.comment-wrap .comment-item .content .title-wrap .details h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: #191717;
  margin-bottom: 0;
}
.comment-wrap .comment-item .content .title-wrap h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: var(--ed-color-theme-primary);
}
.comment-wrap .comment-item .content .title-wrap h4 i {
  color: var(--ed-color-theme-primary);
  padding-left: 10px;
}
.comment-wrap .comment-item .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #74787C;
  margin-bottom: 0;
}
.comment-wrap .comment-item-2 {
  padding-left: 135px;
}
@media only screen and (max-width: 767px) {
  .comment-wrap .comment-item-2 {
    padding-left: 0;
  }
}

.blog-contact-form .title {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 41px;
  color: var(--ed-color-heading-primary);
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .blog-contact-form .title {
    font-size: 28px;
  }
}
.blog-contact-form .request-form .form-item {
  position: relative;
}
.blog-contact-form .request-form .form-item .form-control {
  background-color: var(--ed-color-common-white);
  line-height: 19px;
  color: #4E4E4E;
  font-size: 16px;
  font-weight: 400;
  padding: 17px 20px;
  margin-bottom: 25px;
  width: 100%;
  border: 1px solid #EAEAEA;
  box-shadow: 0px 4px 47px rgba(0, 0, 0, 0.01);
  border-radius: 100px;
  font-family: var(--ed-ff-body);
}
.blog-contact-form .request-form .form-item .form-control::-webkit-input-placeholder {
  color: #4E4E4E;
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control:-moz-placeholder {
  color: #4E4E4E;
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control::-moz-placeholder {
  color: #4E4E4E;
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control:-ms-input-placeholder {
  color: #4E4E4E;
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control:focus {
  border-color: var(--ed-color-theme-primary);
}
.blog-contact-form .request-form .form-item .form-control-2 {
  border-radius: 10px;
}
.blog-contact-form .request-form .submit-btn .ed-primary-btn {
  font-weight: 600;
  border-radius: 100px;
  padding: 19.5px 30px;
}

.sidebar-widget {
  background-color: #F5F5F5;
  padding: 40px 40px;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget {
    padding: 30px 20px;
  }
}
.sidebar-widget:not(:last-of-type) {
  margin-bottom: 30px;
}
.sidebar-widget .search-form {
  position: relative;
}
.sidebar-widget .search-form .form-control {
  padding: 18px 20px;
  padding-left: 30px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #4E4E4E;
}
.sidebar-widget .search-form .search-btn {
  color: var(--ed-color-common-white);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 55px;
  height: 55px;
  border-radius: 10px;
  background-color: var(--ed-color-theme-primary);
}
.sidebar-widget .widget-title {
  position: relative;
  font-family: var(--ed-ff-body);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: var(--ed-color-heading-primary);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #E5E5E5;
}
.sidebar-widget .widget-title::before {
  position: absolute;
  border-radius: 100px;
  width: 51px;
  height: 2px;
  background: var(--ed-color-theme-primary);
  content: "";
  left: 0;
  bottom: -2px;
}
.sidebar-widget .gallery {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 13px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.sidebar-widget .gallery img {
  border-radius: 15px;
  object-fit: cover;
  max-width: 95px;
  width: 100%;
  height: 95px;
}
.sidebar-widget .category-list li {
  display: flex;
  align-items: center;
  font-family: var(--ed-ff-body);
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 5px;
}
.sidebar-widget .category-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.sidebar-widget .category-list li .ed-primary-btn {
  width: 100%;
  border-radius: 5px;
  background-color: var(--ed-color-common-white);
  justify-content: space-between;
  font-family: var(--ed-ff-body);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #4E4E4E;
  padding: 15.5px 30px;
}
.sidebar-widget .category-list li .ed-primary-btn i {
  color: var(--ed-color-theme-primary);
  font-size: 16px;
}
.sidebar-widget .category-list li .ed-primary-btn::before {
  background-color: var(--ed-color-theme-primary);
}
.sidebar-widget .category-list li .ed-primary-btn:hover {
  color: var(--ed-color-common-white);
}
.sidebar-widget .category-list li .ed-primary-btn:hover i {
  color: var(--ed-color-common-white);
}
.sidebar-widget .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  list-style: none;
}
.sidebar-widget .tags li:not(:last-of-type) {
  margin-right: 7px;
}
.sidebar-widget .tags li a {
  background-color: var(--ed-color-common-white);
  padding: 9px 16px;
  font-family: var(--ed-ff-body);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #4E4E4E;
  border-radius: 100px;
}
.sidebar-widget .tags li a:hover {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.sidebar-widget .sidebar-post {
  display: grid;
  align-items: center;
  grid-template-columns: 82px 1fr;
  grid-gap: 0px;
}
.sidebar-widget .sidebar-post:not(:last-of-type) {
  margin-bottom: 20px;
}
.sidebar-widget .sidebar-post img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.sidebar-widget .sidebar-post .post-content {
  padding: 0 0 0 15px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content {
    padding-left: 10px;
  }
}
.sidebar-widget .sidebar-post .post-content .post-meta {
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex-wrap: wrap;
  row-gap: 5px;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content .post-meta {
    column-gap: 5px;
  }
}
.sidebar-widget .sidebar-post .post-content .post-meta li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-family: var(--ed-ff-body);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #74787C;
  margin-bottom: 5px;
}
.sidebar-widget .sidebar-post .post-content .post-meta li:not(:last-of-type) {
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content .post-meta li {
    font-size: 13px;
  }
}
.sidebar-widget .sidebar-post .post-content .post-meta li i {
  font-size: 14px;
  color: var(--ed-color-theme-primary);
}
.sidebar-widget .sidebar-post .post-content .title {
  font-family: var(--ed-ff-body);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--ed-color-heading-primary);
  margin-bottom: 0;
}
.sidebar-widget .sidebar-post .post-content .title a {
  background: linear-gradient(var(--ed-color-theme-primary) 0%, var(--ed-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: var(--ed-ff-body);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--ed-color-heading-primary);
}
.sidebar-widget .sidebar-post .post-content .title a:hover {
  color: var(--ed-color-theme-primary);
  background-size: 100% 2px;
}

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

/* !END:  Blog Details CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.about-section .section-heading {
  margin-bottom: 33px;
}
.about-section .section-heading .section-title {
  margin-bottom: 17px;
}
.about-section .media {
  display: flex;
  gap: 20px;
  margin-left: -55px;
  max-width: 600px;
  margin-right: -10px;
}
@media (max-width: 1600px) {
  .about-section .media {
    margin-left: 0;
    margin-right: 0;
  }
}
.about-section .media .thumb-1 {
  margin-top: 130px;
}
@media (max-width: 1399px) {
  .about-section .media .thumb-1 {
    margin-top: 0;
  }
}
.about-section .media .thumb {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: end;
}
.about-section .media .thumb img {
  width: fit-content;
  border-radius: 15px;
}
.about-section .about-wrap {
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .about-section .about-wrap {
    margin-left: 0;
  }
}
@media (max-width: 1200px) {
  .about-section .about-wrap {
    margin-left: 0;
  }
}
@media only screen and (max-width: 992px) {
  .about-section .about-wrap {
    margin-top: 40px;
  }
}
.about-section .about-wrap .about-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.about-section .about-wrap .about-btn .ed-primary-btn-2 {
  background-color: #F5F5F5;
  color: var(--ed-color-heading-primary);
}
.about-section .about-wrap .about-btn .ed-primary-btn-2::before {
  background-color: var(--ed-color-theme-primary);
}
.about-section .about-wrap .about-btn .ed-primary-btn-2:hover {
  color: var(--ed-color-common-white);
}
.about-section .about-wrap .choose-list {
  margin-top: 47px;
}
.about-section .about-wrap .choose-list .title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #0A0A0A;
  margin-bottom: 10px;
}
.about-section .about-wrap .choose-list .choose-list-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 767px) {
  .about-section .about-wrap .choose-list .choose-list-wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 615px) {
  .about-section .about-wrap .choose-list .choose-list-wrap {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.about-section .about-wrap .choose-list .choose-list-wrap ul li {
  list-style: none;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #4E4E4E;
  display: flex;
  align-items: center;
  gap: 7px;
}
.about-section .about-wrap .choose-list .choose-list-wrap ul li img {
  width: auto;
}
.about-section .about-counter .count-item .title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 100px;
  line-height: 110px;
  color: #0A0A0A;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .about-section .about-counter .count-item .title {
    font-size: 91px;
  }
}
.about-section .about-counter .count-item .title span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 100px;
  line-height: 90px;
  color: #0A0A0A;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .about-section .about-counter .count-item .title span {
    font-size: 91px;
  }
}
.about-section .about-counter .count-item .title .number {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 90px;
  line-height: 111px;
  color: #0A0A0A;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .about-section .about-counter .count-item .title .number {
    font-size: 91px;
  }
}
.about-section .about-counter .count-item p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #1756F7;
  margin-bottom: 0;
  padding-left: 35px;
  position: relative;
}
.about-section .about-counter .count-item p::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 1px;
  content: "";
  background-color: var(--ed-color-theme-primary);
}
.about-section .about-counter .count-item-2 {
  padding-left: 28px;
}
@media (max-width: 1200px) {
  .about-section .about-counter .count-item-2 {
    padding-left: 0;
  }
}
.about-section .about-counter .count-item-3 {
  padding-left: 35px;
}
@media (max-width: 1200px) {
  .about-section .about-counter .count-item-3 {
    padding-left: 0;
  }
}
.about-section .about-counter .count-item-4 {
  padding-left: 67px;
}
@media (max-width: 1200px) {
  .about-section .about-counter .count-item-4 {
    padding-left: 0;
  }
}

/* !END:  About CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/
/* !END:  Page Header CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/
.hero-section {
  background-color: #ffffff;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-section::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(13, 11, 25, 0.54), rgba(13, 11, 25, 0.54));
  z-index: -1;
}

.hero-wrapper {
  padding: 140px 0 140px 0;
}
@media (max-width: 1200px) {
  .hero-wrapper {
    padding: 100px 0 100px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-wrapper {
    padding: 80px 0 80px 0;
  }
}

.hero-contact-wrapper {
  background: var(--ed-color-common-white);
  border-radius: 20px;
  padding: 42px 50px 50px 50px;
  position: relative;
  z-index: 1;
  margin-left: -105px;
  max-width: 555px;
}
@media (max-width: 1200px) {
  .hero-contact-wrapper {
    margin-left: 0;
    padding: 12px 20px 20px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-contact-wrapper {
    padding: 35px 25px 35px 25px;
  }
}
.hero-contact-wrapper .title {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  color: var(--ed-color-heading-primary);
  margin-bottom: 23px;
}
@media (max-width: 1200px) {
  .hero-contact-wrapper .title {
    font-size: 23px;
    line-height: 33px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-contact-wrapper .title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
.hero-contact-wrapper .request-form .form-group .form-item span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  color: #0A0A0A;
}
.hero-contact-wrapper .request-form .form-group .form-item:focus {
  box-shadow: none;
  border-color: transparent;
}
.hero-contact-wrapper .request-form .form-group .form-item .form-control {
  background-color: #F5F5F5;
  border-radius: 0;
  border: 1px solid var(--ed-color-grey-1);
  padding: 12.5px 22px;
  font-style: normal;
  font-weight: var(--ed-fw-regular);
  font-size: var(--ed-fs-p);
  line-height: 22px;
  color: #4E4E4E;
  border-radius: 100px;
  margin-bottom: 10px;
  margin-top: 5px;
}
.hero-contact-wrapper .request-form .form-group .form-item .form-control::placeholder {
  font-style: normal;
  font-weight: var(--ed-fw-regular);
  font-size: var(--ed-fs-p);
  line-height: 22px;
  color: #4E4E4E;
}
.hero-contact-wrapper .request-form .form-group .form-item .form-control:focus {
  box-shadow: none;
}
.hero-contact-wrapper .request-form .form-group .form-item .address {
  border-radius: 20px;
}
.hero-contact-wrapper .ed-primary-btn {
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 100%;
  justify-content: center;
}

.hero-content .section-heading .section-title {
  font-family: "Inter";
  font-weight: 600;
  font-size: 80px;
  line-height: 90px;
  color: #FFFFFF;
  margin-bottom: 153px;
}
@media only screen and (max-width: 992px) {
  .hero-content .section-heading .section-title {
    font-size: 56px;
    line-height: 66px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content .section-heading .section-title {
    font-size: 46px;
    line-height: 56px;
  }
}
.hero-content .section-heading P {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .hero-content .section-heading P br {
    display: none;
  }
}
.hero-content .hero-btn-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 20px;
}
.hero-content .hero-btn-wrap .cleaning-hero-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.23);
  backdrop-filter: blur(60px);
}
.hero-content .hero-btn-wrap .cleaning-hero-btn::before {
  background-color: var(--ed-color-theme-primary);
}
.hero-content .hero-btn-wrap .cleaning-hero-btn:hover {
  border: 1px solid transparent;
}

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

/**----------------------------------------
START: Page Home CSS
----------------------------------------*/
.service-section {
  background: #E8EDFA;
  border-radius: 15px;
  margin: 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1600px) {
  .service-section {
    margin: 0 15px;
  }
}
.service-section .shapes .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
}
.service-section .shapes .shape-1 img {
  height: 100%;
}
.service-section .service-item {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 30px 40px 30px 30px;
  position: relative;
}
@media (max-width: 1600px) {
  .service-section .service-item {
    padding: 30px 30px 30px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .service-section .service-item {
    padding: 20px 20px 20px 20px;
  }
}
.service-section .service-item:hover .author .icon {
  background-color: var(--ed-color-theme-primary);
}
.service-section .service-item:hover .author .icon svg path {
  fill: var(--ed-color-common-white);
}
.service-section .service-item .author {
  display: flex;
  align-items: center;
  gap: 20px;
  row-gap: 10px;
}
@media (max-width: 1200px) {
  .service-section .service-item .author {
    flex-wrap: wrap;
  }
}
.service-section .service-item .author .icon {
  min-width: 75px;
  height: 75px;
  background: rgba(23, 86, 247, 0.13);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-section .service-item .author .author-details h5 {
  margin-bottom: 8px;
}
.service-section .service-item .author .author-details h5 a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #0A0A0A;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .service-section .service-item .author .author-details h5 a {
    font-size: 19px;
  }
}
.service-section .service-item .author .author-details h5 a:hover {
  color: var(--ed-color-theme-primary);
}
.service-section .service-item .author .author-details P {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #4E4E4E;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .service-section .service-item .author .author-details P br {
    display: none;
  }
}
.service-section .service-item .numbers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.service-section .service-item .numbers::before {
  position: absolute;
  height: 1px;
  background: #E5E5E5;
  top: 50%;
  left: 55px;
  content: "";
  width: calc(100% - 202px);
}
.service-section .service-item .numbers .number h6 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 36px;
  line-height: 44px;
  color: rgba(0, 0, 0, 0.1);
  text-shadow: 0px 3px 16px rgba(15, 26, 55, 0.12);
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
}
.service-section .service-item .numbers .ed-primary-btn {
  padding: 14.5px 25.5px;
}

.service-section-page {
  background-color: var(--ed-color-common-white);
  margin: 0;
}
.service-section-page .service-item {
  background-color: #F5F5F5;
}

.team-section {
  /* TEXT → No space before hover */
  /* HOVER STATE */
}
.team-section .section-heading {
  margin-bottom: 50px;
}
.team-section .section-heading .sub-heading {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #1756F7;
  margin-bottom: 10px;
}
.team-section .section-heading .section-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  color: #0A0A0A;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .team-section .section-heading .section-title {
    font-size: 42px;
    line-height: 52px;
  }
}
.team-section .section-heading p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #0A0A0A;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .team-section .section-heading p {
    font-size: 16px;
    line-height: 26px;
  }
  .team-section .section-heading p br {
    display: none;
  }
}
.team-section .custom-navigation {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #E5E5E5;
  border-radius: 100px;
  background-color: transparent;
  padding: 14px 15px;
}
.team-section .custom-navigation .custom-navigation-btn {
  width: 45px;
  height: 45px;
  background: #F5F5F5;
  border-radius: 50%;
  color: var(--ed-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.team-section .custom-navigation .custom-navigation-btn:hover i {
  margin-left: -37px;
}
.team-section .custom-navigation .custom-navigation-btn span {
  position: absolute;
  opacity: 0;
  right: 15px;
  /* NEXT button হলে text right এ align হবে */
  left: auto;
  transition: opacity 0.25s ease, transform 0.3s ease;
  transform: translateX(10px);
  white-space: nowrap;
}
.team-section .custom-navigation .custom-navigation-btn:hover {
  width: 99px;
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
  border-radius: 100px;
}
.team-section .custom-navigation .custom-navigation-btn:hover span {
  opacity: 1;
  transform: translateX(0);
}
.team-section .team-item {
  transition: all 0.3s ease-in-out;
}
.team-section .team-item:hover .team-thumb .shape {
  visibility: visible;
  opacity: 1;
}
.team-section .team-item:hover .team-thumb .social {
  visibility: visible;
  opacity: 1;
}
.team-section .team-item .team-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.team-section .team-item .team-thumb img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.team-section .team-item .team-thumb .shape {
  position: absolute;
  background: #1756F7;
  mix-blend-mode: normal;
  filter: blur(40px);
  left: -38px;
  bottom: -48px;
  z-index: 1;
  width: 465px;
  height: 189px;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  border-radius: 50%;
}
.team-section .team-item .team-thumb .social {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  background-color: var(--ed-color-common-white);
  padding: 14.5px 25px;
  border-radius: 100px;
}
.team-section .team-item .team-thumb .social ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.team-section .team-item .team-thumb .social ul li {
  list-style: none;
}
.team-section .team-item .team-thumb .social ul li a {
  color: #4E4E4E;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ed-color-theme-primary);
  transition: all 0.3s ease-in-out;
}
.team-section .team-item .team-thumb .social ul li a i {
  color: #4E4E4E;
}
.team-section .team-item .team-thumb .social ul li a:hover {
  color: var(--ed-color-theme-primary);
}
.team-section .team-item .team-thumb .social ul li a:hover i {
  color: var(--ed-color-theme-primary);
}
.team-section .team-item .content {
  background-color: #F5F5F5;
  text-align: center;
  padding: 27px 0;
  border-radius: 0 0 10px 10px;
}
.team-section .team-item .content .title {
  margin-bottom: 8px;
}
.team-section .team-item .content .title a {
  font-family: var(--ed-ff-body);
  font-style: normal;
  font-weight: var(--ed-fw-bold);
  font-size: 24px;
  line-height: 29px;
  color: #0A0A0A;
  transition: all 0.3s ease-in-out;
}
.team-section .team-item .content .title a:hover {
  color: var(--ed-color-theme-primary);
}
.team-section .team-item .content p {
  font-style: normal;
  font-weight: var(--ed-fw-regular);
  font-size: 14px;
  line-height: 17px;
  color: #4E4E4E;
  margin-bottom: 0;
}

.contact-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 202px 0 0 0;
  position: relative;
  height: 541px;
}
@media only screen and (max-width: 992px) {
  .contact-section {
    padding: 150px 0;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section {
    margin: 0 10px;
  }
}
.contact-section .faq-content-16 {
  max-width: 100%;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .contact-section .faq-content-16 .faq-accordion {
    max-width: 100%;
  }
}
.contact-section .faq-content-16 .faq-accordion .accordion-item {
  -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;
  overflow: hidden;
  background-color: #F5F5F5;
}
.contact-section .faq-content-16 .faq-accordion .accordion-item:not(:last-of-type) {
  margin-bottom: 15px;
}
.contact-section .faq-content-16 .faq-accordion .accordion-item .accordion-button {
  padding: 20px 25px;
  border: none;
  box-shadow: none;
  outline: none;
}
.contact-section .faq-content-16 .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  border: none;
}
.contact-section .faq-content-16 .faq-accordion .accordion-item .accordion-button span {
  color: var(--ed-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .contact-section .faq-content-16 .faq-accordion .accordion-item .accordion-button span {
    display: none;
  }
}
.contact-section .faq-content-16 .faq-accordion .accordion-item .accordion-button::after {
  color: var(--ed-color-theme-primary);
  content: "+";
  width: 30px;
  height: 30px;
  background-image: none;
  font-size: 18px;
  background-color: var(--ed-color-common-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .faq-content-16 .faq-accordion .accordion-item .accordion-body {
  font-family: var(--ed-ff-body);
  font-style: normal;
  font-weight: var(--ed-fw-regular);
  font-size: var(--ed-fs-p);
  line-height: 26px;
  color: var(--ed-color-text-body-2);
  padding: 0 30px 20px 30px;
  background-color: var(--ed-color-bg-1);
}

@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;
    max-width: 100%;
  }
}
.faq-content .faq-accordion .accordion-item {
  border: none;
}
.faq-content .faq-accordion .accordion-item .accordion-button {
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
  border-bottom: 1px solid transparent;
  font-size: 18px;
  font-weight: var(--ed-fw-sbold);
  color: var(--ed-color-heading-primary);
}
.faq-content .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  border-bottom: 1px solid #E0E5EB;
}
.faq-content .faq-accordion .accordion-item .accordion-button span {
  color: var(--ed-color-text-body);
  margin-right: 10px;
}
.faq-content .faq-accordion .accordion-item .accordion-body {
  padding-left: 0;
  padding-right: 0;
}
.faq-content .faq-accordion .accordion-item .accordion-body p {
  color: var(--ed-color-text-body);
}

.faq-content-16 {
  max-width: 100%;
  background-color: var(--ed-color-common-white);
  padding: 70px 80px 80px 80px;
  border-radius: 10px;
  box-shadow: 0px 8px 56px rgba(0, 0, 0, 0.1);
  margin: 0 50px 0 -50px;
}
@media only screen and (max-width: 992px) {
  .faq-content-16 {
    margin: 0 0 0 0;
    padding: 70px 65px 80px 65px;
  }
}
@media only screen and (max-width: 767px) {
  .faq-content-16 {
    margin: 0 0 0 0;
    padding: 30px 30px 40px 30px;
  }
}
@media screen and (max-width: 480px) {
  .faq-content-16 {
    padding: 30px 20px 40px 20px;
  }
}
.faq-content-16 .section-heading {
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .faq-content-16 .section-heading .sub-heading {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
.faq-content-16 .section-heading .section-title {
  font-size: 48px;
}
@media (max-width: 1200px) {
  .faq-content-16 .section-heading .section-title {
    font-size: 40px;
    line-height: 50px;
  }
  .faq-content-16 .section-heading .section-title br {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .faq-content-16 .section-heading .section-title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .faq-content-16 .section-heading .section-title {
    font-size: 24px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 992px) {
  .faq-content-16 .faq-accordion {
    max-width: 100%;
  }
}
.faq-content-16 .faq-accordion .accordion-item {
  -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;
  overflow: hidden;
  background-color: var(--ed-color-common-white);
}
.faq-content-16 .faq-accordion .accordion-item:not(:last-of-type) {
  margin-bottom: 15px;
}
.faq-content-16 .faq-accordion .accordion-item .accordion-button {
  padding: 20px 30px;
  border: none;
  box-shadow: none;
  outline: none;
}
.faq-content-16 .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  border: none;
}
.faq-content-16 .faq-accordion .accordion-item .accordion-button::after {
  color: var(--ed-color-theme-primary);
}
.faq-content-16 .faq-accordion .accordion-item.active .accordion-header .accordion-button {
  padding: 20px 25px 10px 25px;
}
.faq-content-16 .faq-accordion .accordion-item.active .accordion-header .accordion-button::after {
  background-color: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}
.faq-content-16 .faq-accordion .accordion-item .accordion-body {
  font-family: var(--ed-ff-body);
  font-style: normal;
  font-weight: var(--ed-fw-regular);
  font-size: var(--ed-fs-p);
  line-height: 26px;
  color: var(--ed-color-text-body-2);
  padding: 0 30px 20px 30px;
  background-color: var(--ed-color-bg-1);
}

.hedline {
  padding-top: 518px;
  position: relative;
  overflow: hidden;
}
.hedline .shapes .shapes {
  position: absolute;
  left: -52px;
  bottom: 0;
  right: -17px;
}

.hedline-scrvice {
  padding-top: 365px;
}
@media only screen and (max-width: 992px) {
  .hedline-scrvice {
    padding-top: 280px;
  }
}
@media screen and (max-width: 400px) {
  .hedline-scrvice {
    padding-top: 420px;
  }
}

.testimonial-section {
  position: relative;
  overflow: hidden;
}
.testimonial-section .shapes .shape {
  position: absolute;
  bottom: 0;
  right: 110px;
  z-index: 2;
}
.testimonial-section .shapes .shape img {
  border-radius: 10px 10px 0 0;
}
@media (max-width: 1800px) {
  .testimonial-section .shapes .shape {
    display: none;
  }
}
.testimonial-section .testimonial-slider-wrap {
  background: #121E2C;
  border-radius: 15px;
  /* HOVER STATE */
}
.testimonial-section .testimonial-slider-wrap .testimonial-item {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  padding: 80px 80px 125px 80px;
  position: relative;
}
@media (max-width: 1200px) {
  .testimonial-section .testimonial-slider-wrap .testimonial-item {
    padding: 80px 0 125px 50px;
  }
}
@media only screen and (max-width: 992px) {
  .testimonial-section .testimonial-slider-wrap .testimonial-item {
    flex-wrap: wrap;
    row-gap: 40px;
    padding: 80px 0 80px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section .testimonial-slider-wrap .testimonial-item {
    flex-wrap: wrap;
    row-gap: 40px;
    padding: 50px 15px 50px 15px;
  }
}
.testimonial-section .testimonial-slider-wrap .testimonial-item .thumb {
  position: relative;
}
.testimonial-section .testimonial-slider-wrap .testimonial-item .thumb > img {
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-section .testimonial-slider-wrap .testimonial-item .thumb .shape {
  position: absolute;
  bottom: -20px;
  left: 3px;
}
.testimonial-section .testimonial-slider-wrap .testimonial-item .thumb .shape img {
  width: auto;
}
.testimonial-section .testimonial-slider-wrap .testimonial-item .content p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 34px;
  color: #FFFFFF;
  margin-bottom: 44px;
}
@media (max-width: 1200px) {
  .testimonial-section .testimonial-slider-wrap .testimonial-item .content p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 992px) {
  .testimonial-section .testimonial-slider-wrap .testimonial-item .content p br {
    display: none;
  }
}
.testimonial-section .testimonial-slider-wrap .testimonial-item .content h5 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  margin-bottom: 0;
}
.testimonial-section .testimonial-slider-wrap .testimonial-item .content h5 span {
  color: var(--ed-color-theme-primary);
}
.testimonial-section .testimonial-slider-wrap .custom-navigation {
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: absolute;
  bottom: 80px;
  right: 596px;
  z-index: 2;
}
@media (max-width: 1600px) {
  .testimonial-section .testimonial-slider-wrap .custom-navigation {
    bottom: 50px;
    left: 387px;
    right: auto;
  }
}
@media (max-width: 1399px) {
  .testimonial-section .testimonial-slider-wrap .custom-navigation {
    left: 387px;
    right: auto;
  }
}
@media (max-width: 1200px) {
  .testimonial-section .testimonial-slider-wrap .custom-navigation {
    left: 358px;
  }
}
@media only screen and (max-width: 992px) {
  .testimonial-section .testimonial-slider-wrap .custom-navigation {
    display: none;
  }
}
.testimonial-section .testimonial-slider-wrap .custom-navigation .custom-navigation-btn {
  width: 65px;
  height: 65px;
  background: #0A0A0A;
  color: var(--ed-color-common-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.testimonial-section .testimonial-slider-wrap .custom-navigation .custom-navigation-btn:hover {
  background-color: var(--ed-color-theme-primary);
}

.blog-section .blog-item {
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
}
.blog-section .blog-item:hover .thumb .content {
  transition: all 0.3s ease-in-out;
}
.blog-section .blog-item:hover .thumb .content .title {
  margin-bottom: 20px;
}
.blog-section .blog-item:hover .thumb .content .blog-link {
  visibility: visible;
  opacity: 1;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.blog-section .blog-item .thumb {
  position: relative;
}
.blog-section .blog-item .thumb img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.blog-section .blog-item .thumb .content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #FFFFFF;
  border-radius: 15px;
  padding: 40px 20px 40px 40px;
  width: calc(100% - 20px);
}
@media only screen and (max-width: 992px) {
  .blog-section .blog-item .thumb .content {
    padding: 20px 20px 20px 20px;
  }
}
.blog-section .blog-item .thumb .content .date {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-item .thumb .content .date {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.blog-section .blog-item .thumb .content .date span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #4E4E4E;
}
.blog-section .blog-item .thumb .content .date i {
  margin-right: 8px;
  color: var(--ed-color-theme-primary);
}
.blog-section .blog-item .thumb .content .title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: var(--ed-color-heading-primary);
  transition: all 0.3s ease-in-out;
  display: block;
  margin-top: 13px;
}
@media only screen and (max-width: 992px) {
  .blog-section .blog-item .thumb .content .title {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1200px) {
  .blog-section .blog-item .thumb .content .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-item .thumb .content .title {
    font-size: 17px;
    line-height: 27px;
    margin-top: 10px;
    margin-bottom: 0;
  }
}
.blog-section .blog-item .thumb .content .title:hover {
  color: var(--ed-color-theme-primary);
}
.blog-section .blog-item .thumb .content .blog-link {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  height: 0;
}
.blog-section .blog-item .thumb .content .blog-link:hover {
  color: var(--ed-color-theme-primary);
}
.blog-section .blog-item .thumb .content .blog-link:hover i {
  color: var(--ed-color-common-white);
}
.blog-section .blog-item .thumb .content .blog-link i {
  width: 40px;
  height: 40px;
  background: var(--ed-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ed-color-common-white);
  transition: all 0.3s ease-in-out;
}
.blog-section .blog-section-bottom {
  margin-top: 70px;
}
.blog-section .blog-section-bottom ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-section .blog-section-bottom ul li {
  list-style: none;
}
.blog-section .blog-section-bottom ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #F5F5F5;
  border-radius: 25px;
  padding: 15px 21px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.blog-section .blog-section-bottom ul li a:hover {
  background-color: var(--ed-color-theme-primary);
}
.blog-section .blog-section-bottom ul li a:hover i {
  color: var(--ed-color-common-white);
}
.blog-section .blog-section-bottom ul li a i {
  color: var(--ed-color-theme-primary);
}

.blog-page .blog-page-top-wrap .blog-page-top {
  background-color: #F5F5F5;
  padding-bottom: 40px;
  border-radius: 15px;
}
.blog-page .blog-page-top-wrap .blog-page-top .blog-page-thumb {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .blog-page .blog-page-top-wrap .blog-page-top .blog-page-thumb {
    height: 350px;
  }
}
.blog-page .blog-page-top-wrap .blog-page-top .blog-page-thumb a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.blog-page .blog-page-top-wrap .blog-page-top .blog-page-content {
  padding: 32px 40px 0 40px;
}
@media only screen and (max-width: 767px) {
  .blog-page .blog-page-top-wrap .blog-page-top .blog-page-content {
    padding: 32px 20px 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page .blog-page-top-wrap .blog-page-top .blog-page-content .details-title {
    font-size: 26px;
    line-height: 36px;
    margin-top: 14px;
  }
}
.blog-page .blog-page-top-wrap .blog-page-top .blog-page-content .details-title a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #0A0A0A;
  margin-bottom: 11px;
  margin-top: 14px;
  transition: all 0.3s ease-in-out;
}
.blog-page .blog-page-top-wrap .blog-page-top .blog-page-content .details-title a:hover {
  color: var(--ed-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .blog-page .blog-page-top-wrap .blog-page-top .blog-page-content .details-title a {
    font-size: 26px;
    margin-top: 14px;
  }
}
.blog-page .blog-page-top-wrap .blog-page-top .blog-page-content .blog-classic-btn {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--ed-color-theme-primary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
  padding-top: 24px;
  border-top: 1px solid #E5E5E5;
}
.blog-page .blog-page-top-wrap .blog-page-top .blog-page-content .blog-classic-btn:hover {
  color: var(--ed-color-heading-primary);
}
.blog-page .blog-page-top-wrap .blog-page-top .blog-page-content p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #4E4E4E;
}
.blog-page .blog-page-top-wrap .blog-page-top .blog-page-content .post-meta li i {
  color: var(--ed-color-theme-primary);
}
.blog-page .icon-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media only screen and (max-width: 992px) {
  .blog-page .icon-tag {
    margin-bottom: 40px;
  }
}
.blog-page .icon-tag .icon {
  width: 55px;
  height: 55px;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.blog-page .icon-tag .icon i {
  font-weight: 600;
}
.blog-page .icon-tag .icon:hover {
  background: var(--ed-color-theme-primary);
  color: var(--ed-color-common-white);
}

.service-details .service-details-wrap .thumb {
  margin-bottom: 32px;
}
.service-details .service-details-wrap .thumb img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.service-details .service-details-wrap .title {
  margin-bottom: 16px;
}
.service-details .service-details-wrap .title a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #0A0A0A;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.service-details .service-details-wrap .title a:hover {
  color: var(--ed-color-theme-primary);
}
.service-details .service-details-wrap p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #74787C;
  margin-bottom: 0;
}
.service-details .service-details-wrap .list-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 25px;
}
.service-details .service-details-wrap .list-wrap ul li {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #74787C;
  list-style: none;
  position: relative;
  padding-left: 16px;
}
.service-details .service-details-wrap .list-wrap ul li::before {
  position: absolute;
  content: "";
  background-color: #74787C;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 46%;
  left: 0;
}
.service-details .service-details-wrap .helth-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1200px) {
  .service-details .service-details-wrap .helth-wrap {
    flex-wrap: wrap;
    margin-top: 20px;
  }
}
.service-details .service-details-wrap .helth-wrap .thumb {
  margin-bottom: 0;
}
.service-details .service-details-wrap .helth-wrap .thumb img {
  border-radius: 15px;
  object-fit: cover;
}
.service-details .service-details-wrap .helth-wrap .helth-item-wrap {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 1200px) {
  .service-details .service-details-wrap .helth-wrap .helth-item-wrap {
    margin-top: 0;
  }
}
.service-details .service-details-wrap .helth-wrap .helth-item-wrap .helth-item {
  display: inline-flex;
  gap: 20px;
  align-items: start;
  padding: 31px 115px 30px 58px;
  border: 1px solid #EBEBEB;
  box-shadow: 0px 8px 30px rgba(106, 106, 106, 0.1);
  border-radius: 15px;
}
@media (max-width: 1399px) {
  .service-details .service-details-wrap .helth-wrap .helth-item-wrap .helth-item {
    padding: 30px 50px 30px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .service-details .service-details-wrap .helth-wrap .helth-item-wrap .helth-item {
    padding: 20px 20px 30px 20px;
  }
}
.service-details .service-details-wrap .helth-wrap .helth-item-wrap .helth-item img {
  width: auto;
}
.service-details .service-details-wrap .helth-wrap .helth-item-wrap .helth-item .author h5 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #0A0A0A;
  margin-bottom: 11px;
}
.service-details .service-details-wrap .helth-wrap .helth-item-wrap .helth-item .author p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #74787C;
  margin-bottom: 0;
}

.project-details .sidebar-widget-project-details .widget-title {
  margin-bottom: 0;
}
.project-details .sidebar-widget-project-details .author-wrap .author-item {
  display: flex;
  align-items: center;
  gap: 38px;
  padding-bottom: 30px;
  border-bottom: 1px solid #E4E4E8;
  margin-top: 30px;
}
.project-details .sidebar-widget-project-details .author-wrap .author-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.project-details .sidebar-widget-project-details .author-wrap .author-item .icon i {
  color: var(--ed-color-theme-primary);
  font-size: 18px;
}
.project-details .sidebar-widget-project-details .author-wrap .author-item .author-details p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #4E4E4E;
  margin-bottom: 0;
}
.project-details .sidebar-widget-project-details .author-wrap .author-item .author-details h5 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #0A0A0A;
  margin-bottom: 0;
  margin-top: 5px;
}
.project-details .service-details-wrap .thumb {
  margin-right: -128px;
}
@media (max-width: 1600px) {
  .project-details .service-details-wrap .thumb {
    margin-right: 0;
  }
}

.team-details__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
@media only screen and (max-width: 992px) {
  .team-details__thumb img {
    max-height: 550px;
  }
}
@media only screen and (max-width: 767px) {
  .team-details__thumb img {
    max-height: 500px;
  }
}
@media screen and (max-width: 575px) {
  .team-details__thumb img {
    max-height: 100%;
  }
}
.team-details__inner {
  background: #F5F5F5;
  border-radius: 15px;
  padding: 20px 20px 27px 20px;
}
.team-details__content .author {
  margin-bottom: 20px;
}
.team-details__content .author .name {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #0A0A0A;
  font-family: "Inter";
  margin-bottom: 10px;
}
.team-details__content .author .designation {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--ed-color-theme-primary);
  font-family: "Inter";
}
.team-details__content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #4E4E4E;
  font-family: "Inter";
  margin-bottom: 22px;
}
@media (max-width: 1200px) {
  .team-details__content .decs br {
    display: none;
  }
}
.team-details__item-box {
  display: grid;
  grid-template-columns: 328px 1fr;
}
@media (max-width: 1200px) {
  .team-details__item-box {
    grid-template-columns: 293px 1fr;
  }
}
@media screen and (max-width: 575px) {
  .team-details__item-box {
    grid-template-columns: 1fr;
  }
}
.team-details__item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}
.team-details__item .icon {
  background: #FFFFFF;
  box-shadow: 0px 8px 34px rgba(0, 0, 0, 0.11);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.team-details__item .icon i {
  font-weight: 900;
  font-size: 16px;
  line-height: 16px;
  color: var(--ed-color-theme-primary);
}
.team-details__item .title {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #4E4E4E;
}
.team-details__item h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #0A0A0A;
  font-family: "Inter";
  margin-top: 6px;
}
.team-details__btn {
  margin-top: 6px;
}
.team-details__btn .rr-btn {
  padding: 17.5px 42px;
}

.team-details__skill__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #0A0A0A;
  margin-bottom: 13px;
  font-family: "Inter";
}
.team-details__skill__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #74787C;
  font-family: "Inter";
}
.team-details__progress {
  margin-top: 34px;
}
.team-details__progress__wrap {
  width: 100%;
}
.team-details__progress__wrap label {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #0A0A0A;
  font-family: "Inter";
}
.team-details__progress__wrap .progress-outer {
  position: relative;
}
.team-details__progress__wrap .progress-outer .progress-num {
  top: -30px;
  right: 0;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  position: absolute;
  align-items: center;
  justify-content: end;
  color: var(--ed-color-theme-primary);
  font-family: "Inter";
}
.team-details__progress__wrap .progress-outer .progress {
  height: 7px;
  background: #F5F5F5;
}
.team-details__progress__wrap .progress-outer .progress .progress-bar {
  color: var(--ed-color-common-white);
  border-radius: 10px;
  background: var(--ed-color-theme-primary);
}
.team-details__progress .progress {
  width: 100%;
  height: 8px;
  background: var(--ed-color-common-white);
  border-radius: 50px;
  overflow: hidden;
}
.team-details__progress .progress .progress-bar {
  height: 100%;
  width: 0%;
  background: var(--ed-color-theme-primary);
  border-radius: 50px;
  transition: width 1.3s ease;
}
.team-details__progress__item {
  gap: 30px;
  padding: 5px;
  display: flex;
  padding-right: 25px;
  border-radius: 5px;
  margin-bottom: 15px;
  align-items: center;
  background: var(--ed-color-common-white);
}
@media screen and (max-width: 575px) {
  .team-details__progress__item {
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding: 15px;
  }
}
.team-details__progress__item:last-child {
  margin-bottom: 0;
}
.team-details__progress__item .icon {
  display: flex;
  padding: 14px 18px;
  border-radius: 5px;
  align-items: center;
  background: #F5F5F5;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  .team-details__progress__item .icon {
    padding: 12px 12px;
  }
}
.team-details__progress__item .icon span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: var(--ed-color-theme-primary);
}

.contact-main__area .contact-page__wrapper {
  background: inherit;
}
.contact-main__area .contact-page__contact-from {
  padding: 54px 60px 45px 60px;
  background: #F5F5F5;
  border-radius: 10px;
}
@media screen and (max-width: 575px) {
  .contact-main__area .contact-page__contact-from {
    padding: 54px 20px 45px 20px;
  }
}
.contact-main__area .contact-page__contact-from form button {
  width: 100%;
  display: flex;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  align-items: center;
  text-align: center;
  color: var(--ed-color-common-white);
  padding: 18px 0px;
  border-radius: 5px;
  justify-content: center;
  font-family: "Inter";
}
.contact-main__area .contact-page__contact-from form button .text-one {
  gap: 4px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  gap: 5px;
}
.contact-main__area .contact-page__contact-from form button .text-one i {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
}
.contact-main__area .contact-page__contact-from form button .text-two {
  gap: 4px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  gap: 5px;
}
.contact-main__area .contact-page__contact-from form button .text-two i {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
}
.contact-main__area .contact-page__contact-from .ajax-response {
  margin-top: 15px;
}
.contact-main__area .contact-page__contact-from .ajax-response.error {
  color: var(--ed-color-theme-primary);
}
.contact-main__area .contact-page__contact-from .ajax-response.success {
  color: #198754;
}
.contact-main__area .contact-page__title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #0A0A0A;
  margin-bottom: 9px;
}
.contact-main__area .contact-page__decs {
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #4E4E4E;
  align-items: center;
  font-family: "Inter";
}
.contact-main__area .contact-page__form-group {
  gap: 25px;
  display: flex;
  margin-top: 35px;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .contact-main__area .contact-page__form-group {
    gap: 0;
    flex-wrap: wrap;
  }
}
.contact-main__area .contact-page__input {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.contact-main__area .contact-page__input input {
  width: 100%;
  border: none;
  height: 55px;
  border-radius: 5px;
  background: var(--ed-color-common-white);
  transition: all 0.3s ease-in-out;
  padding: 17.5px 47px 17.5px 25px;
  border: 1px solid none;
  border-radius: 10px;
}
.contact-main__area .contact-page__input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #4E4E4E;
  font-family: "Inter";
}
.contact-main__area .contact-page__input input:hover, .contact-main__area .contact-page__input input:focus {
  border-color: #E5E5E5 !important;
  box-shadow: none;
  outline: none;
  background-color: var(--ed-color-common-white);
}
.contact-main__area .contact-page__icon i {
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  color: #4E4E4E;
}
.contact-main__area .contact-page__select {
  position: relative;
  margin-bottom: 20px;
}
.contact-main__area .contact-page__select i {
  top: 20px;
  left: 20px;
  display: block;
  position: absolute;
  color: var(--ed-color-theme-primary);
}
.contact-main__area .contact-page__select .nice-select {
  float: inherit;
  height: 55px;
  border: none;
  position: relative;
  background-color: var(--ed-color-common-white);
  transition: all 0.3s ease-in-out;
  padding: 0;
}
.contact-main__area .contact-page__select .nice-select .icon {
  position: absolute;
  top: 0%;
  right: 56px;
  font-size: 20px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.contact-main__area .contact-page__select .nice-select .icon i {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #4E4E4E;
}
.contact-main__area .contact-page__select .nice-select.open {
  background-color: var(--ed-color-common-white);
  border-color: transparent;
}
.contact-main__area .contact-page__select .nice-select.open .icon i {
  transform: rotate(180deg);
}
.contact-main__area .contact-page__select .nice-select::after {
  display: none;
}
.contact-main__area .contact-page__select .nice-select .current {
  display: flex;
  align-items: center;
  padding: 20px 20px;
  font-family: "Inter";
  border: 1px solid none;
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #4E4E4E;
}
.contact-main__area .contact-page__select .nice-select:focus {
  outline: none;
}
.contact-main__area .contact-page__select .nice-select .list {
  width: 100%;
}
.contact-main__area .contact-page__icon {
  top: 17px;
  right: 24px;
  position: absolute;
}
.contact-main__area .contact-page__icon i {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #4E4E4E;
}
.contact-main__area .contact-page__textarea textarea {
  width: 100%;
  border: none;
  border-radius: 5px;
  margin-bottom: 17px;
  background: #FFFFFF;
  border-radius: 5px;
  padding: 17px 24px 78px 24px;
  border: 1px solid none;
}
.contact-main__area .contact-page__textarea textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #4E4E4E;
  font-family: "Inter";
}
.contact-main__area .contact-page__textarea textarea:hover, .contact-main__area .contact-page__textarea textarea:focus {
  border-color: #E5E5E5 !important;
  box-shadow: none;
  outline: none;
  background-color: var(--ed-color-common-white);
}
.contact-main__area .contact-page__select .nice-select .current {
  display: flex;
  align-items: center;
  padding: 20px 20px;
  font-family: "Inter";
  border: none;
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #4E4E4E;
}
.contact-main__content {
  margin-bottom: 34px;
}
.contact-main__content .title {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #0A0A0A;
  font-family: "Inter";
  margin-bottom: 11px;
}
@media screen and (max-width: 575px) {
  .contact-main__content .title {
    font-size: 28px;
    line-height: 35px;
  }
}
.contact-main__content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #4E4E4E;
  font-family: "Inter";
}
.contact-main__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #E5E5E5;
  margin-top: 25px;
}
@media screen and (max-width: 575px) {
  .contact-main__item {
    grid-template-columns: 1fr;
  }
}
.contact-main__item .icon {
  background: var(--ed-color-common-white);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
}
.contact-main__item .icon i {
  font-weight: 900;
  font-size: 20px;
  line-height: 20px;
  color: var(--ed-color-theme-primary);
}
.contact-main__item .content .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #0A0A0A;
  font-family: "Inter";
  margin-bottom: 6px;
}
.contact-main__item .content ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #4E4E4E;
  list-style: none;
}
.contact-main__item .content ul li span {
  color: var(--ed-color-theme-primary);
}
.contact-main__info {
  padding: 55px 60px 55px 60px;
  background: #F5F5F5;
  border-radius: 10px;
  margin-left: 4px;
}
@media (max-width: 1200px) {
  .contact-main__info {
    padding: 55px 25px 55px 25px;
  }
}
@media only screen and (max-width: 992px) {
  .contact-main__info {
    padding: 55px 25px 55px 25px;
    margin-top: 40px;
  }
}
.contact-main__info .item-2 {
  border-bottom: none;
  padding-bottom: 0;
}

.map__section {
  margin-bottom: -5px;
}
.map__section .maps {
  width: 100%;
  height: 600px;
}

.project-page .project-page-item {
  transition: all 0.3s ease-in-out;
}
.project-page .project-page-item:hover .thumb::before {
  visibility: visible;
  opacity: 1;
}
.project-page .project-page-item:hover .thumb .icon {
  visibility: visible;
  opacity: 1;
}
.project-page .project-page-item:hover .thumb .content {
  visibility: visible;
  opacity: 1;
}
.project-page .project-page-item .thumb {
  position: relative;
}
.project-page .project-page-item .thumb::before {
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  border-radius: 15px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.project-page .project-page-item .thumb img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  height: 100%;
}
.project-page .project-page-item .thumb .icon {
  position: absolute;
  background-color: var(--ed-color-common-white);
  width: 130px;
  height: 130px;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px 0px 0px 0px;
  bottom: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.project-page .project-page-item .thumb .icon i {
  transform: rotate(-45deg);
  font-size: 18px;
  padding: 14px;
  border: 1px solid #A1A4B1;
  border-radius: 50%;
}
.project-page .project-page-item .thumb .icon:hover {
  color: var(--ed-color-theme-primary);
}
.project-page .project-page-item .thumb .icon:hover i {
  border: 1px solid var(--ed-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .project-page .project-page-item .thumb .icon {
    width: 80px;
    height: 80px;
  }
}
.project-page .project-page-item .thumb .content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .project-page .project-page-item .thumb .content {
    left: 10px;
  }
}
.project-page .project-page-item .thumb .content h5 {
  margin-bottom: 0;
}
.project-page .project-page-item .thumb .content h5 a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.project-page .project-page-item .thumb .content h5 a:hover {
  color: var(--ed-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .project-page .project-page-item .thumb .content h5 a {
    font-size: 22px;
    line-height: 29px;
  }
}
.project-page .project-page-item .thumb .content p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #74787C;
  margin-bottom: 0;
  margin-top: 12px;
}

/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.footer-main-wrap {
  background-color: #161D26;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .footer-main-wrap {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
    border-radius: 0;
  }
}
.footer-main-wrap .shapes .shape-1 {
  position: absolute;
  bottom: 0;
  left: 79px;
}
@media only screen and (max-width: 767px) {
  .footer-main-wrap .shapes .shape-1 {
    display: none;
  }
}

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

.footer-wrap {
  padding-top: 100px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .footer-wrap {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.footer-wrap .widget-1-left {
  padding-left: 0;
  position: relative;
}
.footer-wrap .widget-1-left::before {
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -100px;
  left: -109px;
  width: 1px;
  height: 171%;
  content: "";
}
@media (max-width: 1600px) {
  .footer-wrap .widget-1-left::before {
    display: none;
  }
}
.footer-wrap .widget-2-left {
  padding-left: 41px;
  position: relative;
}
@media (max-width: 1600px) {
  .footer-wrap .widget-2-left {
    padding-left: 0;
  }
}
.footer-wrap .widget-2-left::before {
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -100px;
  left: -64px;
  width: 1px;
  height: 171%;
  content: "";
}
@media (max-width: 1600px) {
  .footer-wrap .widget-2-left::before {
    display: none;
  }
}
.footer-wrap .widget-2-left::after {
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -100px;
  right: -45px;
  width: 1px;
  height: 171%;
  content: "";
}
@media (max-width: 1600px) {
  .footer-wrap .widget-2-left::after {
    display: none;
  }
}
.footer-wrap .widget-4-left {
  padding-left: 117px;
}
@media (max-width: 1600px) {
  .footer-wrap .widget-4-left {
    padding-left: 50px;
  }
}
@media (max-width: 1399px) {
  .footer-wrap .widget-4-left {
    padding-left: 0;
  }
}

@media only screen and (max-width: 992px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}
.footer-widget .widget-header {
  color: var(--ed-color-common-white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 23px;
  position: relative;
  padding-bottom: 14px;
}
.footer-widget .widget-header span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #FFFFFF;
  bottom: 0;
  left: 2px;
  border-radius: 50%;
  z-index: 2;
}
.footer-widget .widget-header::before {
  position: absolute;
  background: linear-gradient(270deg, rgba(51, 88, 211, 0) 0%, #3358D3 82.11%);
  bottom: 0;
  left: 0;
  content: "";
  width: 123px;
  height: 2px;
}
.footer-widget .widget-header::after {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #1756F7;
  border-radius: 50%;
  content: "";
  bottom: -2px;
  left: 0;
}
.footer-widget .widget-header.logo {
  margin-bottom: 0;
}
.footer-widget .widget-header.logo:before {
  display: none;
}
.footer-widget p {
  color: var(--ed-color-common-white);
  margin-top: 22px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}
.footer-widget p span {
  color: var(--ed-color-theme-primary);
}
@media (max-width: 1399px) {
  .footer-widget p br {
    display: none;
  }
}
.footer-widget .footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 368px) {
  .footer-widget .footer-contact {
    flex-wrap: nowrap;
  }
}
.footer-widget .footer-contact .icon i {
  color: var(--ed-color-theme-primary);
}
.footer-widget .footer-contact .content span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: var(--ed-color-common-white);
  margin-bottom: 3px;
}
.footer-widget .footer-contact .content a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--ed-color-common-white);
  display: block;
  transition: all 0.3s ease-in-out;
}
.footer-widget .footer-contact .content a:hover {
  color: var(--ed-color-theme-primary);
}
@media (max-width: 1200px) {
  .footer-widget .footer-contact .content a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-widget .footer-contact .content a {
    font-size: 13px;
  }
}
.footer-widget .footer-list {
  list-style: none;
}
.footer-widget .footer-list li a {
  position: relative;
  padding-left: 24px;
  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);
}
@media (max-width: 1200px) {
  .footer-widget .footer-list li a {
    font-size: 13px;
    padding-left: 17px;
  }
}
.footer-widget .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 .footer-list li a:before {
    font-size: 10px;
  }
}
.footer-widget .footer-list li a:hover:before {
  color: var(--ed-color-theme-primary);
}
.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.footer-widget .footer-contact li {
  list-style: none;
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-widget .footer-contact li:last-child {
  margin-bottom: 0;
}
.footer-widget .footer-contact li i {
  font-size: 16px;
  color: var(--ed-color-common-white);
}
.footer-widget .footer-contact li a {
  font-family: var(--ed-ff-body);
  color: var(--ed-color-common-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-top: -5px;
}
.footer-widget .footer-contact li a:hover {
  color: var(--ed-color-theme-primary);
}
@media (max-width: 1200px) {
  .footer-widget .footer-contact li a {
    font-size: 14px;
    padding-left: 17px;
  }
}
.footer-widget .footer-form {
  position: relative;
  margin-top: 22px;
}
.footer-widget .footer-form .form-control {
  padding: 15px 70px 15px 15px;
  color: var(--ed-color-common-white);
  box-shadow: none;
  border: 1px solid #E3E3E3;
  border-radius: 8px;
  background-color: #F6F6F6;
}
.footer-widget .footer-form .form-control::-webkit-input-placeholder {
  color: var(--ed-color-common-white);
}
.footer-widget .footer-form .form-control:-moz-placeholder {
  color: var(--ed-color-common-white);
}
.footer-widget .footer-form .form-control::-moz-placeholder {
  color: var(--ed-color-common-white);
}
.footer-widget .footer-form .form-control:-ms-input-placeholder {
  color: var(--ed-color-common-white);
}
.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;
  border-radius: 8px;
}
.footer-widget .footer-form .submit i {
  transform: rotate(-45deg);
  color: var(--ed-color-common-white);
}
.footer-widget .footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.footer-widget .footer-social li {
  display: inline-flex;
}
.footer-widget .footer-social li a {
  border: 1px solid var(--ed-color-common-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  padding: 3.5px 14px;
}
.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;
}

.copyright-area {
  padding-top: 360px;
}
@media (max-width: 1600px) {
  .copyright-area {
    padding-top: 280px;
  }
}
@media (max-width: 1399px) {
  .copyright-area {
    padding-top: 250px;
  }
}
@media (max-width: 1200px) {
  .copyright-area {
    padding-top: 220px;
  }
}
@media only screen and (max-width: 992px) {
  .copyright-area {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .copyright-area {
    padding-top: 0;
  }
}

.copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  padding: 0 0 20px 0;
  position: relative;
}
@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 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: var(--ed-color-common-white);
  margin-bottom: 0;
}
.copyright-content p span {
  color: var(--ed-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .copyright-content p {
    text-align: center;
  }
}
.copyright-content .trams {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.copyright-content .trams a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--ed-color-common-white);
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.copyright-content .trams a:hover {
  color: var(--ed-color-theme-primary);
}

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

/*# sourceMappingURL=main.css.map */
