@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@200;300;400;500;600;700;800;900&family=DM+Sans:wght@400;500;700&family=Dancing+Script:wght@400;500;600;700&family=Lexend+Deca:wght@100;200;300;400;500;600;700;800;900&family=Oswald:wght@200;300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");

.back__to_top_wrapper,
a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

img {
  max-width: 100%;
}

/* transform */
:root {
  /**
  @Font Family Declaration
  */
  --eg-body-font-family: 'Outfit', sans-serif;
  --eg-heading-font-family: 'Oswald', sans-serif;
  --eg-font-1-family: 'Dancing Script', cursive;
  --eg-font-2-family: 'Roboto', sans-serif;
  --eg-font-3-family: 'Lexend Deca', sans-serif;
  --eg-font-4-family: 'DM Sans', sans-serif;
  --eg-font-5-family: 'Archivo', sans-serif;
  --eg-icon-font-family: "Font Awesome 6 Pro";
  /**
  @Font Size
  */
  --eg-body-font-size: 16px;
  /**
  @color declaration
  */
  --eg-common-white: #ffffff;
  --eg-common-white-2: #F9F9F9;
  --eg-common-black: #000000;
  --eg-common-black-2: #050A16;
  --eg-common-black-3: #151818;
  --eg-common-black-4: #1B1E1E;
  --eg-common-black-5: #687171;
  --eg-common-black-6: #1F2222;
  --eg-common-black-7: #030b15;
  --eg-grey-1: #777;
  --eg-grey-2: #242424;
  --eg-grey-3: #f2f4f6;
  --eg-grey-4: #727885;
  --eg-red-1: #bc6b42;
  --eg-red-2: #b5653d;
  --eg-text-body: #82848B;
  --eg-heading-primary: #1B1819;
  --eg-theme-primary: #c27147;
  --eg-border-primary: #EAEAEA;
  --eg-border-2: #464F4F;
  --eg-border-3: #222626;
  --eg-border-4: #f2f5fa;
}

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

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: var(--eg-body-font-family);
  font-size: 16px;
  font-weight: normal;
  color: var(--eg-text-body);
  line-height: 26px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--eg-heading-font-family);
  color: var(--eg-heading-primary);
  margin-top: 0px;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
  text-transform: uppercase;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

p {
  font-family: var(--eg-body-font-family);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
  line-height: 1.5;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

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

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

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

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  background-color: #fff;
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 14px;
  color: var(--eg-common-black);
  padding-left: 26px;
  padding-right: 26px;
  border: 1px solid #E0E2E3;
}

input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #95999D;
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #95999D;
}

input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 4-18 */
  color: #95999D;
}

input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: #95999D;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
  /* MODERN BROWSER */
  color: #95999D;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  border-color: var(--eg-common-black);
}

input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

textarea {
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
}

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

*::-moz-selection {
  background: var(--eg-theme-primary);
  color: var(--eg-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--eg-theme-primary);
  color: var(--eg-common-white);
  text-shadow: none;
}

::selection {
  background: var(--eg-theme-primary);
  color: var(--eg-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--eg-common-black);
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: var(--eg-common-black);
  font-size: 14px;
  opacity: 1;
}

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

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

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

.custom-container {
  max-width: 1620px;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: var(--eg-common-black);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.body-overlay:hover {
  cursor: url("../img/icon/cross-out.png"), pointer;
}

.body-overlay.opened {
  opacity: 0.7;
  visibility: visible;
}

/*----------------------------------------*/
/*  2.4 Back to top
/*----------------------------------------*/
.back__to_top_wrapper {
  position: fixed;
  right: 50px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 575px) {
  .back__to_top_wrapper {
    right: 20px;
    bottom: 20px;
  }
}

.back__to_top_wrapper.back__to_top_btn_show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.back__to_top_btn {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: var(--eg-common-white);
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
  color: var(--eg-common-black);
  border-radius: 50%;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.back__to_top_btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.back__to_top_btn:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
  background-color: var(--eg-theme-primary);
  color: var(--eg-common-white);
}

/*----------------------------------------*/
/*  2.6 Buttons
/*----------------------------------------*/

.eg-btn-2 {
  user-select: none;
  -moz-user-select: none;
  background: var(--tg-border-8);
  border-radius: 5px;
  border: medium none;
  color: var(--eg-common-white);
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 0;
  padding: 12px 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  background-size: 200%, 1px;
  background-image: linear-gradient(to left, #d7b56d 0%, #a27029 70%, #d7b56d 100%);
}

.eg-btn-2:hover {
  color: var(--eg-common-white);
  background-position: 100% 0;
}

@-moz-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-ms-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-webkit-keyframes video-border {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@-moz-keyframes video-border {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@-ms-keyframes video-border {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@keyframes video-border {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@keyframes egswing {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

@-webkit-keyframes egswing {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

/*----------------------------------------*/
/*  2.8 Preloader
/*----------------------------------------*/
#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.eg-loader {
  display: inline-block;
  border-radius: 3px;
  font-size: 70px;
  position: relative;
  vertical-align: top;
  transition: 0.3s color, 0.3s border, 0.3s transform, 0.3s opacity;
}

.eg-loader-spin {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  color: var(--eg-theme-primary);
}

.eg-loader-spin:before,
.eg-loader-spin:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  animation: 1.5s spin linear infinite;
}

.eg-loader-spin:before {
  transform: rotateX(70deg);
}

.eg-loader-spin:after {
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}


@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

/*----------------------------------------*/
/*  2.3 Background
/*----------------------------------------*/
.black-bg {
  background-color: var(--eg-common-black);
}

.black-bg-2 {
  background-color: var(--eg-common-black-3);
}

/*----------------------------------------*/
/*  2.10 Section Title
/*----------------------------------------*/
.eg-section__title {
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -0.45px;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .eg-section__title {
    font-size: 34px;
  }
}

.eg-section__title.title-white {
  color: var(--eg-common-white);
}

.eg-section__title.title-white span {
  transform: translateY(-8px);
  display: inline-block;
}

@media (max-width: 575px) {
  .eg-section__title.title-white span {
    margin-top: 20px;
  }
}

.eg-section__title.title-white span img {
  height: 41px;
  width: 217px;
  border-radius: 73px;
}

.eg-section p {
  color: var(--eg-text-body);
  font-size: 16px;
}

/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.eg-header__transparent {
  position: absolute;
  left: 0;
  top: 24px;
  width: 100%;
  z-index: 9;
  height: auto;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-header__transparent {
    top: 0;
  }
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-header__area {
    padding-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-header__area {
    padding-top: 40px;
  }
}

.eg-header__mobile-toggler {
  position: relative;
  float: right;
  font-size: 25px;
  cursor: pointer;
  color: var(--eg-common-white);
  display: none;
  margin-top: -2px;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  text-align: center;
  background: var(--eg-theme-primary);
  border-radius: 50%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-header__mobile-toggler {
    display: flex;
  }
}

.eg-header__search-popup {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--eg-common-white);
  height: 60vh;
  width: 100%;
  z-index: 99;
  padding: 40px 0 50px;
  display: none;
  z-index: 999;
}

.eg-header__search-backdrop {
  background: rgb(0, 0, 0);
  cursor: url(../img/icon/cross-out.png), pointer;
  z-index: 99;
  visibility: hidden;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  transition: all 0.3s linear;
  opacity: 0;
}

.eg-header__search-visible .eg-header__search-backdrop {
  opacity: 0.55;
  visibility: visible;
}

.eg-header__search-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--eg-heading-primary);
  font-weight: 500;
  padding: 40px 70px 40px 20px;
}

.eg-header__search-form input::placeholder {
  font-size: 30px;
  color: var(--eg-text-body);
}

.eg-header__search-form input:focus {
  border-color: var(--eg-theme-primary);
}

.eg-header__search-btn {
  position: absolute;
  right: 20px;
  background: transparent;
  border: 0;
  font-size: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.eg-header__search-btn svg {
  fill: var(--eg-heading-primary);
}

.eg-header__mobile-toggler {
  cursor: pointer;
  color: var(--eg-common-white);
  width: 60px;
  height: 60px;
  line-height: 55px;
  text-align: center;
  background: var(--eg-red-2);
  border-radius: 50%;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-header__mobile-toggler:hover {
  background: var(--eg-red-1);
}

.eg-menu__has-children .active {
  color: var(--eg-heading-primary) !important;
}

.eg-menu__has-children .active svg {
  fill: var(--eg-heading-primary);
}

.header-sticky {
  position: fixed;
  margin: auto;
  background: var(--eg-theme-primary);
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  z-index: 10;
  padding: 10px 0;
}

.header-sticky.header-sticky-2 {
  background: var(--eg-common-black-4);
}

.header-sticky.eg-header__transparent {
  top: 0;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-sticky.eg-header__area {
    padding: 11px 0;
  }
}

/*----------------------------------------*/
/*  3.3 mobile menu
/*----------------------------------------*/
.eg-mobile__menu-top.heading-search .logo img {
  width: 100%;
}

.eg-mobile__menu-top.heading-search .search-close i {
  color: var(--eg-heading-primary);
}

.eg-mobile__menu-top.heading-search .search-close i:hover {
  color: var(--eg-common-white);
}

.eg-mobile__logo img {
  width: 110px;
}

.eg-mobile__menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  max-width: 100%;
  height: 100%;
  z-index: 99;
  border-radius: 0px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  -webkit-transform: translateX(101%);
  -moz-transform: translateX(101%);
  -ms-transform: translateX(101%);
  -o-transform: translateX(101%);
  transform: translateX(101%);
}

.eg-mobile__menu-backdrop {
  background: rgb(0, 0, 0);
  cursor: url(../img/icon/cross-out.png), pointer;
  z-index: 99;
  visibility: hidden;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  transition: all 0.3s linear;
  opacity: 0;
}

.eg-mobile__menu-visible .eg-mobile__menu-backdrop {
  opacity: 0.6;
  visibility: visible;
}

.eg-mobile__menu-top {
  padding-bottom: 30px;
}

.eg-mobile__menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.eg-mobile__menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.eg-mobile__menu .navigation li a {
  position: relative;
  display: block;
  line-height: 1.5;
  padding: 10px 0px 10px 0px;
  font-size: 16px;
  font-weight: 500;
  color: var(--eg-heading-primary);
  text-transform: capitalize;
  border: none;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-mobile__menu .navigation li a:hover {
  color: var(--eg-theme-primary);
}

.eg-mobile__menu .navigation li a:hover .dropdown-btn {
  color: var(--eg-theme-primary);
}

.eg-mobile__menu .navigation li a span {
  display: none;
}

.eg-mobile__menu .navigation li .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: var(--eg-heading-primary);
  background: var(--eg-border-primary);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  z-index: 5;
}

.eg-mobile__menu .navigation li .dropdown-btn span {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-mobile__menu .navigation li .dropdown-btn.open span {
  transform: rotate(45deg);
  color: var(--eg-theme-primary);
}

.eg-mobile__menu-outer .eg-header__mobile-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  display: none;
  color: var(--eg-common-white);
  margin-right: 30px;
  top: 15px;
}

.eg-mobile__menu-visible .eg-mobile__menu {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

.eg-mobile__menu-visible .eg-mobile__menu .eg-mobile__close-btn {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}

.eg-mobile__menu-visible .navigation li .sub-menu {
  display: none;
  padding-left: 20px;
}

.eg-mobile__menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--eg-common-white);
  padding: 30px;
  z-index: 5;
  box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
}

.eg-mobile__close-btn i {
  font-size: 20px;
  color: var(--eg-theme-primary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--eg-border-primary);
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-mobile__close-btn i:hover {
  background: var(--eg-theme-primary);
  color: var(--eg-common-white);
}

/* HEADER CSS */
/*----------------------------------------*/
/*  4.1 Meanmenu css
/*----------------------------------------*/
.eg-menu__main-menu .navigation {
  display: flex;
  align-items: center;
}

.eg-menu__main-menu .navigation li {
  display: block;
  position: relative;
  list-style: none;
}

.eg-menu__main-menu .navigation li:not(:last-child) {
  margin-right: 50px;
}

.eg-menu__main-menu .navigation li>a {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--eg-common-white);
  padding: 28px 0;
  display: block;
  line-height: 1;
}

.eg-menu__main-menu .navigation li>a span svg {
  fill: var(--eg-common-white);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-menu__main-menu .navigation li:first-child a {
  padding-left: 0;
}

.eg-menu__main-menu .navigation li .sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  min-width: 230px;
  border: 1px solid var(--eg-border-1);
  background: var(--eg-common-white);
  margin: 0;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  transform-origin: 0 0;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  border-radius: 0;
  padding: 18px 0;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}

.eg-menu__main-menu .navigation li .sub-menu li a {
  padding: 9px 15px 9px 25px;
  line-height: 1.4;
  color: var(--eg-theme-primary);
  text-transform: capitalize;
}

.eg-menu__main-menu .navigation li .sub-menu li a:hover {
  color: var(--eg-heading-primary);
}

.eg-menu__main-menu .navigation li .active a,
.eg-menu__main-menu .navigation li:hover a {
  color: rgba(255, 255, 255, 0.8);
}

.eg-menu__main-menu .navigation li .active a svg,
.eg-menu__main-menu .navigation li:hover a svg {
  fill: rgba(255, 255, 255, 0.8);
}

.eg-menu__main-menu .navigation li .active>.sub-menu,
.eg-menu__main-menu .navigation li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.eg-menu__main-menu .navigation li .dropdown-btn {
  display: none;
}

.eg-menu__main-menu.main-menu-2 .navigation li:hover a {
  color: var(--eg-theme-primary);
}

.eg-menu__main-menu.main-menu-2 .navigation li:hover a svg {
  fill: var(--eg-theme-primary);
}

.eg-menu__logo {
  display: flex;
  align-items: center;
}

.eg-menu__header-actions ul li {
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  color: var(--eg-common-white);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-menu__header-actions ul li:hover {
  color: rgba(255, 255, 255, 0.8);
}

.eg-menu__header-actions.actions-2 ul li:hover {
  color: rgba(255, 255, 255, 0.8);
}

.eg-menu__header-user {
  position: relative;
  margin: 0 30px;
}

.eg-menu__header-user>a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 27px 0;
}

.eg-menu__header-user>a .user {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding-left: 12px;
}

.eg-menu__header-user>a svg {
  fill: var(--eg-common-white);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-menu__header-user .eg-menu__signUp {
  border: 1px solid var(--eg-border-1);
  background: var(--eg-common-white);
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  transform-origin: 0 0;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  visibility: hidden;
  opacity: 0;
  z-index: 9;
  padding: 15px;
  position: absolute;
  right: 0;
  width: 100%;
  text-align: center;
  top: 100%;
}

.eg-menu__header-user .eg-menu__signUp li {
  list-style: none;
  margin-bottom: 10px;
  display: block;
  text-align: left;
  padding-left: 10px;
}

.eg-menu__header-user .eg-menu__signUp li:last-child {
  margin-bottom: 0;
}

.eg-menu__header-user .eg-menu__signUp li a {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--eg-theme-primary);
  line-height: 1;
  display: inline-block;
}

.eg-menu__header-user .eg-menu__signUp li a:hover {
  color: var(--eg-heading-primary);
}

.eg-menu__header-user:hover a svg {
  fill: rgba(255, 255, 255, 0.8);
}

.eg-menu__header-user:hover .eg-menu__signUp {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.eg-menu__header-user.user-2:hover a svg {
  fill: rgba(255, 255, 255, 0.8);
}

.eg-menu__header-offCanvas-btn {
  width: 42px;
  height: 42px;
  line-height: 38px;
  text-align: center;
  background: var(--eg-common-white);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.eg-menu__header-offCanvas-btn.offCanvas-btn-2 {
  background: linear-gradient(265.48deg, #d7b56d 21.72%, #a27029 115.5%);
}

.eg-menu__header-offCanvas-btn.offCanvas-btn-2 .hamburger-btn span {
  background: var(--eg-common-white);
}

.eg-menu__header-offCanvas-btn span {
  display: inline-block;
  position: absolute;
  background: var(--eg-heading-primary);
  height: 2px;
  width: 20px;
  opacity: 1;
  z-index: 1;
  border-radius: 10px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-menu__header-offCanvas-btn span:nth-child(1) {
  top: 13px;
  left: 60%;
  -webkit-transform: translateX(-60%);
  -moz-transform: translateX(-60%);
  -ms-transform: translateX(-60%);
  -o-transform: translateX(-60%);
  transform: translateX(-60%);
}

.eg-menu__header-offCanvas-btn span:nth-child(2) {
  top: 20px;
  width: 14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.eg-menu__header-offCanvas-btn span:nth-child(3) {
  top: 27px;
  left: 40%;
  -webkit-transform: translateX(-40%);
  -moz-transform: translateX(-40%);
  -ms-transform: translateX(-40%);
  -o-transform: translateX(-40%);
  transform: translateX(-40%);
}

.eg-menu__header-offCanvas-btn:hover span {
  background: var(--eg-theme-primary);
}

.eg-menu__header-offCanvas-btn:hover span:nth-child(1) {
  left: 40%;
  transform: translateX(-40%);
}

.eg-menu__header-offCanvas-btn:hover span:nth-child(3) {
  left: 60%;
  transform: translateX(-60%);
}

/*----------------------------------------*/
/*  4.2 Mobile menu css
/*----------------------------------------*/
/*----------------------------------------*/
/*  4.3 Offcanvas css
/*----------------------------------------*/
.eg-header__offCanvas-wrap {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 600px;
  padding: 35px 80px 55px;
  transform: translateX(100%);
  height: 100%;
  display: block;
  background-color: var(--eg-common-white);
  z-index: 1020;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  display: flex;
  flex-direction: column;
}

.eg-header__offCanvas-visible .eg-header__offCanvas-wrap {
  transform: translateX(0);
}

.eg-header__offCanvas-toggle {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  background: rgba(211, 41, 55, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 -40px 30px auto;
  cursor: pointer;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-header__offCanvas-toggle i {
  font-size: 30px;
  color: var(--eg-heading-primary);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-header__offCanvas-toggle:hover {
  background: var(--eg-theme-primary);
}

.eg-header__offCanvas-toggle:hover i {
  color: var(--eg-common-white);
}

.eg-header__offCanvas-title {
  font-size: 43px;
  line-height: 1.17;
  margin-bottom: 28px;
}

.eg-header__offCanvas-title span {
  color: var(--eg-theme-primary);
}

.eg-header__offCanvas-contact .email,
.eg-header__offCanvas-contact .number {
  font-size: 30px;
}

.eg-header__offCanvas-social a {
  font-size: 14px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--eg-heading-primary);
  border-radius: 50%;
  color: var(--eg-common-white);
  display: inline-block;
  text-align: center;
}

.eg-header__offCanvas-social a:not(:first-child) {
  margin-left: 10px;
}

.eg-header__offCanvas-social a:hover {
  background: var(--eg-theme-primary);
}

.eg-header__offCanvas-overlay {
  background: rgb(0, 0, 0);
  cursor: url(../img/icon/cross-out.png), pointer;
  z-index: 99;
  visibility: hidden;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  transition: all 0.3s linear;
  opacity: 0;
}

.eg-header__offCanvas-visible .eg-header__offCanvas-overlay {
  opacity: 0.6;
  visibility: visible;
}

/*----------------------------------------*/
/*  5.1 Postbox css
/*----------------------------------------*/
.eg-postbox__wrapper {
  margin-right: 10px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-postbox__wrapper {
    margin-right: 0;
  }
}

.eg-postbox__thumb img {
  border-radius: 15px;
}

.eg-postbox__meta span {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--eg-text-body);
}

.eg-postbox__meta span:not(:last-child) {
  margin-right: 40px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-postbox__meta span:not(:last-child) {
    margin-right: 15px;
  }
}

.eg-postbox__meta span svg {
  fill: var(--eg-common-black-2);
  margin-right: 3px;
  transform: translateY(-2px);
}

.eg-postbox__meta.meta-2 {
  background: var(--eg-common-white);
  padding: 18px 0;
  text-align: center;
  box-shadow: rgba(202, 202, 202, 0.25) 0px 9px 16px;
  border-radius: 73px;
  transform: translateY(-40px);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-postbox__meta.meta-2 {
    box-shadow: none;
    border-radius: 0;
    transform: translateY(0);
  }
}

.eg-postbox__meta.meta-2 span:first-child {
  color: var(--eg-common-black-2);
}

.eg-postbox__meta.meta-2 span:first-child img {
  border-radius: 50%;
  margin-right: 20px;
}

.eg-postbox__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 46px;
  color: var(--eg-common-black-2);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-postbox__title.blog-title {
  margin: 0 30px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-postbox__title {
    font-size: 25px;
    line-height: 36px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-postbox__title {
    font-size: 30px;
  }
}

.eg-postbox__title:hover a {
  color: var(--eg-theme-primary);
}

.eg-postbox__text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--eg-text-body);
}

.eg-postbox__btn {
  position: relative;
}

.eg-postbox__btn .read-btn {
  background-color: transparent;
  border-color: var(--eg-border-primary);
  color: var(--eg-heading-primary);
}

.eg-postbox__btn .read-btn::after {
  background-color: var(--eg-heading-primary);
}

.eg-postbox__btn .read-btn:hover {
  color: var(--eg-common-white);
  border-color: var(--eg-heading-primary);
}

.eg-postbox__btn .read-btn:hover svg {
  fill: var(--eg-common-white);
}

.eg-postbox__btn::before {
  position: absolute;
  content: "";
  width: 281px;
  height: 1px;
  background: var(--eg-border-primary);
  top: 50%;
  right: 0;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-postbox__btn::before {
    display: none;
  }
}

.eg-postbox__btn::after {
  position: absolute;
  content: "";
  width: 281px;
  height: 1px;
  background: var(--eg-border-primary);
  top: 50%;
  left: 0;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-postbox__btn::after {
    display: none;
  }
}

.eg-postbox__pagination nav ul li {
  list-style: none;
  display: inline-block;
}

.eg-postbox__pagination nav ul li:not(:last-child) {
  margin-right: 7px;
}

.eg-postbox__pagination nav ul li .current,
.eg-postbox__pagination nav ul li a {
  background: var(--eg-common-white-2);
  border-radius: 50%;
  text-align: center;
  border: 2px solid var(--eg-border-primary);
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 46px;
  font-size: 15px;
  font-weight: 500;
  color: var(--eg-text-body);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-postbox__pagination nav ul li .current svg,
.eg-postbox__pagination nav ul li a svg {
  fill: var(--eg-text-body);
  transform: translateY(-2px);
}

.eg-postbox__pagination nav ul li .current.current,
.eg-postbox__pagination nav ul li .current:hover,
.eg-postbox__pagination nav ul li a.current,
.eg-postbox__pagination nav ul li a:hover {
  background: var(--eg-heading-primary);
  color: var(--eg-common-white);
  border-color: var(--eg-heading-primary);
}

.eg-postbox__pagination nav ul li .current.current svg,
.eg-postbox__pagination nav ul li .current:hover svg,
.eg-postbox__pagination nav ul li a.current svg,
.eg-postbox__pagination nav ul li a:hover svg {
  fill: var(--eg-common-white);
}

.eg-postbox__pagination-2 nav ul li.current,
.eg-postbox__pagination-2 nav ul li a {
  background: var(--eg-common-black-3);
  border: 2px solid var(--eg-common-black-3);
}

.eg-postbox__pagination-2 nav ul li.current.current,
.eg-postbox__pagination-2 nav ul li.current:hover,
.eg-postbox__pagination-2 nav ul li a.current,
.eg-postbox__pagination-2 nav ul li a:hover {
  background: var(--eg-common-black-6);
  border-color: var(--eg-common-black-6);
}

.eg-postbox__thumb.thumb-2 img:first-child {
  margin-right: 30px;
}

.eg-postbox__details {
  margin: 0 109px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-postbox__details {
    margin: 0 0;
  }
}

.eg-postbox__quote .quote-icon {
  box-shadow: rgba(44, 65, 97, 0.13) 0px 7px 13px;
  width: 54px;
  height: 54px;
  line-height: 52px;
  text-align: center;
  background: var(--eg-common-white);
  border-radius: 50%;
  display: inline-block;
}

.eg-postbox__quote .quote {
  font-size: 24px;
  line-height: 34px;
}

.eg-postbox__quote .name {
  font-family: var(--eg-body-font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: var(--eg-common-black-4);
  text-transform: capitalize;
}

.eg-postbox__share {
  border-bottom: 1px solid rgba(2, 0, 20, 0.1);
}

.eg-postbox__tag a {
  font-weight: 400;
  font-size: 14px;
  line-height: 29px;
  letter-spacing: 0.05em;
  margin-right: 10px;
  border: 1px solid rgba(2, 0, 20, 0.1);
  padding: 0px 19px;
  display: inline-block;
}

.eg-postbox__tag a:hover {
  color: var(--eg-grey-2);
}

.eg-postbox__social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  box-shadow: rgba(44, 65, 97, 0.13) 0px 7px 13px;
  text-align: center;
  margin-left: 10px;
  font-size: 14px;
  border-radius: 50%;
  background: var(--eg-common-white);
  color: var(--eg-common-black-7);
}

.eg-postbox__post-prev,
.eg-postbox__post-next {
  box-shadow: rgba(44, 65, 97, 0.13) 0px 7px 13px;
  background: var(--eg-common-white);
  border-radius: 20px;
  padding: 25px 50px;
  position: relative;
}

.eg-postbox__post-title {
  font-family: var(--eg-body-font-family);
  color: var(--eg-common-black-4);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 8px;
  text-transform: capitalize;
  line-height: 22px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-postbox__post-title {
    font-size: 15px;
  }
}

.eg-postbox__post-title a:hover {
  color: var(--eg-theme-primary);
}

.eg-postbox__post-content.text-right {
  text-align: right;
}

.eg-postbox__post-content span {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--eg-text-body);
  text-transform: uppercase;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-postbox__post-content span {
    margin-top: 30px;
  }
}

.eg-postbox__post-arrow {
  position: absolute;
  top: 50%;
  left: 50px;
}

.eg-postbox__post-arrow.next {
  right: 50px;
  left: auto;
}

.eg-postbox__post-arrow a {
  color: var(--eg-heading-primary);
}

.eg-postbox__post-arrow a:hover {
  color: var(--eg-theme-primary);
}

.eg-postbox__rp-thumb img {
  border-radius: 15px;
}

.eg-postbox__rp-content {
  margin: 30px 15px 0 15px;
}

.eg-postbox__rp-content .rp-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 18px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-postbox__rp-content .rp-title {
    font-size: 22px;
  }
}

.eg-postbox__rp-content .rp-title a {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-postbox__rp-content .rp-title a:hover {
  color: var(--eg-theme-primary);
}

.eg-postbox__comment {
  margin: 0 109px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-postbox__comment {
    margin: 0 0;
  }
}

.eg-postbox__comment ul.children {
  margin-left: 100px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-postbox__comment ul.children {
    margin: 0 0;
    margin-top: 30px;
  }
}

.eg-postbox__comment ul li {
  list-style: none;
}

.eg-postbox__comment-avater {
  margin-right: 30px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-postbox__comment-avater {
    margin-right: 20px;
  }
}

.eg-postbox__comment-avater img {
  border-radius: 50%;
}

.eg-postbox__comment-name {
  margin-bottom: 0;
  font-family: var(--eg-body-font-family);
  font-size: 18px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: var(--eg-common-black-2);
  text-transform: capitalize;
}

.eg-postbox__comment-meta {
  font-size: 14px;
  line-height: 30px;
  color: var(--eg-text-body);
}

.eg-postbox__comment-reply a {
  font-weight: 600;
  font-size: 12px;
  line-height: 30px;
  color: var(--eg-common-black-5);
  background: var(--eg-common-white);
  border: 1px solid rgba(2, 0, 20, 0.05);
  border-radius: 15px;
  padding: 8px 20px;
  border-radius: 15px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-postbox__comment-reply a:hover {
  box-shadow: 0px 14px 14px rgba(178, 186, 197, 0.26);
  border-color: var(--eg-common-white);
}

.eg-postbox__form {
  padding: 43px 50px 51px 50px;
  margin: 80px 90px 60px 90px;
  background: var(--eg-common-white-2);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-postbox__form {
    padding: 30px;
    margin: 80px 0 60px 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-postbox__form {
    margin: 80px 0 60px 0;
  }
}

.eg-postbox__form-input label {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: var(--eg-common-black-2);
  margin-bottom: 11px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.eg-postbox__form-input input,
.eg-postbox__form-input textarea {
  padding: 17px 20px;
  background: var(--eg-common-white);
  border-radius: 5px;
  border: none;
}

.eg-postbox__form-input input:focus,
.eg-postbox__form-input textarea:focus {
  border: 1px solid var(--eg-heading-primary);
}

.eg-postbox__form-input.message textarea {
  height: 150px;
  line-height: 1.7;
  resize: none;
}

.eg-postbox__form-btn.eg-btn {
  padding: 20px 40px;
}

.eg-postbox__form-btn span svg {
  fill: var(--eg-common-white);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-postbox__form-btn:hover svg {
  fill: var(--eg-common-black-2);
}

/*----------------------------------------*/
/*  5.2 Recent Post css
/*----------------------------------------*/
.eg-rc__thumb {
  flex: 0 0 auto;
}

.eg-rc__thumb img {
  width: 97px;
  height: 78px;
  object-fit: cover;
  border-radius: 10px;
}

.eg-rc__meta {
  margin-bottom: 8px;
}

.eg-rc__meta span {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eg-text-body);
}

.eg-rc__title {
  font-family: var(--eg-body-font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  text-transform: capitalize;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-rc__title {
    font-size: 18px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-rc__title {
    font-size: 16px;
  }
}

.eg-rc__title a {
  color: var(--eg-common-black-7);
}

.eg-rc__title a:hover {
  color: var(--eg-theme-primary);
}

/*----------------------------------------*/
/*  5.3 Sidebar css
/*----------------------------------------*/
.eg-sidebar__wrapper {
  margin-left: 20px;
}

.eg-sidebar__widget-title .title {
  font-weight: 500;
  font-size: 22px;
  line-height: 34px;
  color: var(--eg-heading-primary);
  margin-bottom: 22px;
}

.eg-sidebar__widget-title .title.title-2 {
  color: var(--eg-common-white);
}

.eg-sidebar__widget-content ul li {
  list-style: none;
  padding: 11px 18px;
  margin: 0 0 16px;
  border: 1px solid var(--eg-border-4);
}

.eg-sidebar__widget-content ul li a {
  display: block;
}

.eg-sidebar__widget-content ul li a span {
  float: right;
  display: inline-block;
}

.eg-sidebar__widget-content ul li:hover {
  border: 1px solid var(--eg-common-white-2);
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.04);
}

.eg-sidebar__widget-content ul li:hover a {
  color: var(--eg-common-black-2);
}

.eg-sidebar__widget-content.widget-page ul li {
  border: none;
  padding: 5px 0;
}

.eg-sidebar__widget-tagcloud a {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  border: 1px solid var(--eg-border-primary);
  background-color: var(--eg-common-white-2);
  font-family: var(--eg-font-5-family);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--eg-text-body);
  margin: 0 13px 10px 0;
  line-height: 30px;
  padding: 2px 27px;
  border-radius: 36px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-sidebar__widget-tagcloud a:hover {
  border-color: var(--eg-heading-primary);
  color: var(--eg-common-white);
  background: var(--eg-heading-primary);
}

.eg-sidebar__widget-tagcloud.tagcloud-2 a {
  border: 1px solid var(--eg-common-black-3);
  background-color: var(--eg-common-black-3);
}

.eg-sidebar__search {
  position: relative;
}

.eg-sidebar__search-input input {
  border: none;
  padding: 18px 50px 18px 20px;
  background: var(--eg-grey-3);
}

.eg-sidebar__search-btn {
  position: absolute;
  top: 50%;
  right: 20px;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--eg-common-black-7);
  transform: translateY(-50%);
}

/*----------------------------------------*/
/*  5.4 Blog css
/*----------------------------------------*/
.eg-blog__bg {
  padding-top: 115px;
  margin-bottom: 122px;
  position: relative;
  z-index: 1;
}

.eg-blog__section {
  margin-bottom: 63px;
}

.eg-blog__thumb {
  width: 372px;
  height: 213px;
  -webkit-mask-image: url(../img/blog/blog-mask-1.png);
  mask-image: url(../img/blog/blog-mask-1.png);
  -webkit-mask-position: top left;
  mask-position: top left;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 371.21px 212.76px;
  object-fit: cover;
  margin-bottom: 26px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-blog__thumb {
    width: 100%;
    -webkit-mask-position: top center;
    mask-position: top center;
  }
}

.eg-blog__thumb.b-mask-2 {
  -webkit-mask-image: url(../img/blog/blog-mask-2.png);
  mask-image: url(../img/blog/blog-mask-2.png);
}

.eg-blog__meta-date span {
  color: var(--eg-grey-1);
  margin-bottom: 16px;
  display: inline-block;
}

.eg-blog__meta-date span i {
  margin-inline-end: 9px;
}

.eg-blog__meta-name p {
  margin-bottom: 0;
  font-family: var(--eg-body-font-family);
  color: var(--eg-heading-primary);
}

.eg-blog__meta-name p span {
  color: var(--eg-grey-1);
}

.eg-blog__title {
  font-size: 26px;
  line-height: 1.25;
  margin: 0 0 17px 0;
  letter-spacing: 0.52px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-blog__title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-blog__title {
    font-size: 24px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-blog__title {
    font-size: 21px;
  }
}

.eg-blog__title a:hover {
  color: var(--eg-theme-primary);
}

.eg-blog__arrow {
  border-bottom: 1px solid var(--eg-border-primary);
}

.eg-blog__arrow_btn a {
  position: relative;
  z-index: 1;
  height: 72px;
  width: 72px;
  line-height: 72px;
  text-align: center;
  display: inline-block;
  transform: translateY(30px);
}

.eg-blog__arrow_btn a:hover::before {
  opacity: 1;
}

.eg-blog__arrow_btn a::before {
  position: absolute;
  content: "";
  border-radius: 50px;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--eg-common-white);
  opacity: 0.4;
  box-shadow: 0px 7px 13px 0px rgba(44, 65, 97, 0.13);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-blog__arrow_btn a span {
  display: inline-block;
  height: 54px;
  width: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50px;
  background: var(--eg-common-white);
  box-shadow: 0px 7px 13px 0px rgba(44, 65, 97, 0.13);
}

.eg-blog__shape-1 {
  position: absolute;
  bottom: 60px;
  left: -60px;
  z-index: -1;
}

.eg-blog__shape-2 {
  position: absolute;
  bottom: 70px;
  right: -55px;
  z-index: -1;
  filter: blur(3.5px);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-blog__shape-2 {
    display: none;
  }
}

.eg-blog-2__newsletter {
  margin: 0px 126px 0 90px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-blog-2__newsletter {
    margin: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-blog-2__newsletter {
    margin-right: 50px;
  }
}

.eg-blog-2__newsletter .eg-section {
  margin-bottom: 110px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-blog-2__newsletter .eg-section {
    margin-bottom: 60px;
  }
}

.eg-blog-2__newsletter-form {
  padding: 50px;
  border-radius: 15px;
  position: relative;
}

@media (max-width: 575px) {
  .eg-blog-2__newsletter-form {
    padding: 50px 25px;
  }
}

.eg-blog-2__newsletter-form h4 {
  color: var(--eg-common-white);
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 146.5%;
}

.eg-blog-2__newsletter-form p {
  font-size: 15px;
  line-height: 1;
  color: var(--eg-text-gray);
  margin: 24px 0 33px 0;
}

.eg-blog-2__newsletter form input {
  width: 100%;
  border: 1px solid var(--eg-common-black-4);
  background: transparent;
  padding: 11px 20px;
  border-radius: 5px;
  color: var(--eg-text-body);
}

.eg-blog-2__newsletter form input:focus {
  border: 1px solid var(--eg-theme-primary);
}

.eg-blog-2__newsletter form .eg-btn-2 {
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
}

.eg-blog-2__newsletter form .eg-btn-2 i {
  padding-left: 88px;
}

.eg-blog-2__shape-1 {
  position: absolute;
  top: 16px;
  left: 0;
}

.eg-blog-2__item p {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: var(--eg-text-gray);
  margin-bottom: 20px;
}

/* .eg-blog-2__item.item1 {
  border-bottom: 1px solid var(--eg-border-3);
  padding-bottom: 30px;
  margin-bottom: 40px;
} */

.eg-blog-2__title {
  font-size: 24px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--eg-common-white);
  margin-right: 100px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

@media (max-width: 575px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-blog-2__title {
    margin-right: 0;
  }
}

.eg-blog-2__title:hover {
  color: var(--eg-theme-primary);
}

.eg-blog-2__date {
  margin: 9px 0 25px 0;
}

.eg-blog-2__date .date {
  font-size: 16px;
  line-height: 28px;
  color: var(--eg-text-gray);
  margin-left: 18px;
}

.eg-blog-2__avatar {
  display: flex;
  align-items: center;
}

.eg-blog-2__avatar-content {
  margin-left: 14px;
}

.eg-blog-2__avatar-name {
  font-family: var(--eg-body-font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: var(--eg-common-white);
  text-transform: capitalize;
  margin-bottom: 0;
}

.eg-blog-2__btn a {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: var(--eg-common-white);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-blog-2__btn a:hover {
  color: var(--eg-theme-primary);
}

.eg-blog-2__btn a span {
  margin-left: 10px;
}

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
.eg-footer__widget_link a {
  font-weight: 600;
  font-size: 16px;
  color: var(--eg-common-white);
  text-transform: capitalize;
  margin-right: 36px;
}

.eg-footer__widget_link a:last-child {
  margin-right: 0;
}

.eg-footer__widget_social a {
  color: var(--eg-common-white);
  font-size: 20px;
  margin-left: 35px;
}

.eg-footer__widget_social a:first-child {
  margin-left: 0;
}

.eg-footer__widget_social a:hover {
  color: var(--eg-heading-primary);
}

.eg-footer__bg {
  position: relative;
  z-index: 1;
}

.eg-footer__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 100%;
  height: 58px;
  background-image: url(../img/shape/footer-shape-01.png);
  background-repeat: repeat-x;
  background-position: center;
  z-index: -1;
}

.eg-footer__main {
  padding-top: 142px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-footer__main {
    text-align: center;
  }
}

.eg-footer__bottom_border {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 60px 0px 40px 0px;
}

@media (max-width: 575px) {
  .eg-footer__bottom_border {
    text-align: center;
    padding: 40px 0 0 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-footer__bottom_border {
    text-align: center;
  }
}

.eg-footer__copyright span {
  color: var(--eg-common-white);
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 600;
}

.eg-footer__terms a {
  font-weight: 600;
  font-size: 16px;
  color: var(--eg-common-white);
  margin-left: 40px;
}

.eg-footer__terms a:first-child {
  margin-left: 0;
}

.eg-footer__opacity-text {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  color: var(--eg-red-2);
  font-family: var(--eg-font-1-family);
  font-size: 250px;
  font-weight: 500;
  line-height: 1;
  text-transform: inherit;
  letter-spacing: 0.04em;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-footer__opacity-text {
    font-size: 150px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) and (max-width: 1599px) {
  .eg-footer__opacity-text {
    font-size: 200px;
  }
}

.eg-footer__shape-1 {
  position: absolute;
  top: -80px;
  left: 10px;
  z-index: -1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-footer__shape-1 {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-footer__shape-1 {
    left: -40px;
  }
}

.eg-footer__shape-2 {
  position: absolute;
  top: -35px;
  right: 0;
  filter: blur(4px);
  z-index: -1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-footer__shape-2 {
    display: none;
  }
}

/* footer col design for home 1 */
/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
.eg-footer-2::after {
  position: absolute;
  content: "";
  background: url(../img/shape/footer-2-shape-04.png) no-repeat;
  background-position: center;
  background-size: cover;
  width: 880px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-footer-2::after {
    display: none;
  }
}

.eg-footer-2__widget-wrapper {
  /* border-top: 1px solid var(--eg-common-black-4); */
  border-bottom: 1px solid var(--eg-common-black-4);
  /* margin-top: 86px; */
  padding: 86px 0 20px;
}

.eg-footer-2__widget .fw-title {
  font-size: 20px;
  color: var(--eg-common-white);
  letter-spacing: 0.02em;
  margin: 0 0 30px;
}

.eg-footer-2__widget ul li {
  list-style: none;
  margin-bottom: 9px;
}

.eg-footer-2__widget ul li a {
  font-size: 16px;
  color: var(--eg-text-body);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-footer-2__widget ul li a:hover {
  color: var(--eg-theme-primary);
}

.eg-footer-2__widget.widget-2 {
  padding-left: 10px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-footer-2__widget.widget-2 {
    padding-left: 0px;
  }
}

.eg-footer-2__widget.widget-3 {
  padding-left: 85px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-footer-2__widget.widget-3 {
    padding-left: 0px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-footer-2__widget.widget-3 {
    padding-left: 70px;
  }
}

.eg-footer-2__contact ul li {
  display: flex;
  align-items: center;
  margin: 0 0 15px;
}

.eg-footer-2__contact ul li svg,
.eg-footer-2__contact ul li i {
  font-size: 18px;
  color: var(--eg-theme-primary);
  fill: var(--eg-theme-primary);
}

.eg-footer-2__contact ul li a {
  font-size: 16px;
  color: var(--eg-text-body);
  padding-left: 13px;
}

.eg-footer-2__about p {
  line-height: 28px;
  color: var(--eg-text-body);
}

.eg-footer-2__social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.eg-footer-2__social a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--eg-common-white);
  border: 1px solid var(--eg-common-black-4);
}

.eg-footer-2__social a:hover {
  background: var(--eg-common-black-4);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-footer-2__copyright {
    text-align: center;
  }
}

.eg-footer-2__copyright-text p {
  margin: 0;
  line-height: 28px;
  color: var(--eg-text-body);
}

.eg-footer-2__copyright-text p a {
  color: var(--eg-common-white);
}

.eg-footer-2__shape-2 {
  position: absolute;
  left: -45px;
  top: -175px;
  z-index: 1;
  filter: blur(3px);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-footer-2__shape-2 {
    display: none;
  }
}

.eg-footer-2__shape-3 {
  position: absolute;
  right: 0;
  top: -230px;
  z-index: 1;
  filter: blur(1px);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-footer-2__shape-3 {
    display: none;
  }
}

/*----------------------------------------*/
/*  7.2 Banner css
/*----------------------------------------*/
.eg-banner__bg {
  padding-bottom: 115px;
  padding-top: 130px;
  position: relative;
  z-index: 1;
}

.eg-banner__bg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 50px;
  background-image: url(../img/banner/banner-bg-shape.png);
  background-repeat: repeat-x;
  background-position: center;
}

.eg-banner__wrap {
  position: relative;
  z-index: 1;
}

.eg-banner__title-opacity .title {
  font-size: 250px;
  font-family: var(--eg-font-1-family);
  font-weight: 500;
  color: var(--eg-red-2);
  letter-spacing: 0.04em;
  text-transform: capitalize;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-banner__title-opacity .title {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-banner__title-opacity .title {
    font-size: 180px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-banner__title-opacity .title {
    font-size: 216px;
  }
}

.eg-banner__content .title {
  font-size: 75px;
  font-weight: 500;
  color: var(--eg-common-white);
  margin: 47px 0 36px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-banner__content .title {
    font-size: 36px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-banner__content .title {
    font-size: 50px;
  }
}

.eg-banner__btn .eg-btn {
  padding: 23px 54px 23px 54px;
}

.eg-banner__btn .eg-btn span {
  padding-left: 60px;
  font-size: 14px;
}

.eg-banner__thumb {
  margin-bottom: 115px;
  align-items: end;
}

.eg-banner__thumb-1 {
  margin-right: -60px;
}

@media (max-width: 575px) {
  .eg-banner__thumb-1 {
    display: none;
  }
}

.eg-banner__thumb-2 {
  position: relative;
  z-index: 1;
  margin-bottom: -25px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-banner__thumb-2 {
    width: 250px;
  }
}

.eg-banner__thumb-2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  width: 316px;
  height: 15px;
  background: rgba(99, 13, 27, 0.54);
  filter: blur(9px);
  border-radius: 50%;
}

@media (max-width: 575px) {
  .eg-banner__thumb-2::before {
    display: none;
  }
}

.eg-banner__thumb-2 img {
  transform: rotate(-33.896deg);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

@media (max-width: 575px) {
  .eg-banner__thumb-2 img {
    transform: rotate(0deg);
  }
}

.eg-banner__thumb-3 {
  margin-left: -30px;
}

@media (max-width: 575px) {
  .eg-banner__thumb-3 {
    display: none;
  }
}

.eg-banner__shape-1 {
  position: absolute;
  left: -50px;
  top: 123px;
  filter: blur(8.5px);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-banner__shape-1 {
    display: none;
  }
}

.eg-banner__shape-2 {
  position: absolute;
  right: -20px;
  top: 123px;
}

.eg-banner__shape-3 {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-banner__shape-3 {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) and (max-width: 1599px) {
  .eg-banner__shape-3 {
    left: -50px;
    top: 53%;
  }
}

.eg-banner__shape-4 {
  position: absolute;
  right: 67px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-banner__shape-4 {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) and (max-width: 1599px) {
  .eg-banner__shape-4 {
    right: -50px;
  }
}

.eg-banner__shape-5 {
  position: absolute;
  bottom: 70px;
  left: -65px;
  z-index: 1;
}

.eg-banner__shape-5 .layer {
  position: relative;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-banner__shape-5 {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-banner__shape-5 {
    bottom: 50px;
    left: 50px;
  }
}

.eg-banner__shape-6 {
  position: absolute;
  bottom: 70px;
  right: -20px;
  filter: blur(8.5px);
}

.eg-banner__circle-1 {
  position: absolute;
  border-radius: 50%;
  background: var(--eg-red-2);
  top: -184px;
  right: 120px;
  width: 368px;
  height: 368px;
  z-index: 1;
}

.eg-banner__circle-2 {
  position: absolute;
  border-radius: 50%;
  background: var(--eg-red-2);
  bottom: -120px;
  left: 0;
  width: 306px;
  height: 306px;
}

.eg-banner-2__bg {
  padding-top: 250px;
  padding-bottom: 253px;
  position: relative;
  z-index: 1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-banner-2__bg {
    padding: 110px 0 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-banner-2__bg {
    padding: 180px 0;
  }
}

.eg-banner-2__thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 41%;
  z-index: -1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-banner-2__thumb {
    position: static;
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-banner-2__thumb {
    position: static;
    width: 100%;
    height: 600px;
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-banner-2__thumb {
    position: static;
    width: 100%;
    height: 600px;
    margin-bottom: 40px;
  }
}

.eg-banner-2__wrap {
  margin-right: 30px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-banner-2__wrap {
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-banner-2__wrap {
    margin-right: 50px;
  }
}

.eg-banner-2__title {
  color: var(--eg-common-white);
  font-size: 44px;
  line-height: 1.34;
  letter-spacing: -0.75px;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-banner-2__title {
    font-size: 45px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-banner-2__title {
    font-size: 60px;
  }
}

.eg-banner-2__title span {
  transform: translateY(-9px);
  display: inline-block;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-banner-2__title span {
    transform: translateY(0);
  }
}

.eg-banner-2__title span img {
  border-radius: 73px;
  width: 207px;
  height: 57px;
  object-fit: cover;
}

.eg-banner-2__btn .eg-btn-2 {
  padding: 22px 40px;
  font-size: 16px;
}

.eg-banner-2__btn .eg-btn-2 span {
  padding-left: 67px;
}

@media (max-width: 575px) {
  .eg-banner-2__btn .eg-btn-2 span {
    padding-left: 50px;
  }
}

@media (max-width: 575px) {
  .eg-banner-2__btn .eg-btn-2 {
    padding: 16px 20px;
    font-size: 14px;
  }
}

.eg-banner-2__video {
  margin-left: 40px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-banner-2__video {
    margin-left: 15px;
  }
}

.eg-banner-2__video a {
  width: 60px;
  height: 60px;
  background: #1e201f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--eg-common-white);
  border-radius: 50%;
  position: relative;
}

.eg-banner-2__video a:hover {
  background: rgba(255, 255, 255, 0.8);
}

.eg-banner-2__video a::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: scale(1);
  border: 1px solid var(--eg-border-primary);
  animation: video-border 3s linear infinite;
  border-radius: 50%;
}

.eg-banner-2__video a i {
  background: linear-gradient(265.48deg, #d7b56d 21.72%, #a27029 115.5%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
}

.eg-banner-2__shape-1 {
  position: absolute;
  width: 100%;
  height: 176px;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #141414 21.88%, rgba(20, 20, 20, 0) 91.76%);
}

.eg-banner-2__shape-2 {
  position: absolute;
  top: 20%;
  left: 3%;
  z-index: -1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-banner-2__shape-2 {
    top: 44%;
    left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-banner-2__shape-2 {
    top: auto;
    left: 0;
    bottom: 7%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-banner-2__shape-2 img {
    width: 550px;
    height: 550px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-banner-2__shape-2 img {
    width: 650px;
    height: 600px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .eg-banner-2__shape-2 img {
    width: 750px;
    height: 600px;
  }
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .eg-banner-2__shape-2 img {
    width: 850px;
    height: 600px;
  }
}

.eg-line a {
  position: relative;
  display: inline;
  background-image: linear-gradient(var(--eg-common-white), var(--eg-common-white)), linear-gradient(var(--eg-common-white), var(--eg-common-white));
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.eg-line a:hover {
  background-size: 0 1px, 100% 1px;
}

/*----------------------------------------*/
/*  7.3 Brand css
/*----------------------------------------*/
.eg-brand__bg {
  position: relative;
  z-index: 1;
}

.eg-brand__title {
  color: #1B1819;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  margin-bottom: 65px;
}

.eg-brand__item {
  text-align: center;
}

.eg-brand__item img {
  opacity: 0.5;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  cursor: pointer;
}

.eg-brand__item img:hover {
  opacity: 1;
}

.eg-brand__shape-1 {
  position: absolute;
  z-index: -1;
  bottom: 35px;
  left: -70px;
  filter: blur(8.5px);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-brand__shape-1 {
    bottom: 0;
  }
}

.eg-brand__shape-2 {
  position: absolute;
  z-index: -1;
  bottom: 60px;
  right: -70px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-brand__shape-2 {
    bottom: 20px;
  }
}

.eg-brand-2 .eg-section h6 {
  font-size: 16px;
  letter-spacing: 0.01em;
}

.eg-brand-2__item {
  text-align: center;
}

.eg-brand-2__item img {
  opacity: 0.5;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-brand-2__item img:hover {
  opacity: 1;
}

/*----------------------------------------*/
/*  7.1 About css
/*----------------------------------------*/
.eg-about__bg {
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.eg-about__wrapper {
  margin-left: 85px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-about__wrapper {
    margin-left: 0;
  }
}

.eg-about__thumb {
  text-align: end;
}

.eg-about__thumb img {
  -webkit-mask-image: url(../img/about/about-mask-01.png);
  mask-image: url(../img/about/about-mask-01.png);
  -webkit-mask-position: top left;
  mask-position: top left;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.eg-about__title {
  margin-bottom: 34px;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.eg-about__content p {
  line-height: 28px;
  margin-bottom: 35px;
}

.eg-about__list {
  margin-bottom: 27px;
}

.eg-about__list-item li {
  list-style: none;
  font-size: 16px;
  color: var(--eg-text-body);
  line-height: 29px;
  margin: 0 0 9px;
}

.eg-about__list-item li span {
  display: inline-block;
  font-size: 14px;
  color: var(--eg-heading-primary);
  margin-right: 7px;
}

.eg-about__wrapper>span {
  font-weight: 500;
  color: var(--eg-heading-primary);
  margin-bottom: 0;
  line-height: 28px;
  margin-bottom: 42px;
  display: inline-block;
}

.eg-about__btn .about-btn {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--eg-heading-primary);
  margin-left: 15px;
}

@media (max-width: 575px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-about__btn .about-btn {
    margin-top: 15px;
    margin-left: 0;
  }
}

.eg-about__btn .about-btn.eg-btn:hover {
  color: var(--eg-common-white);
  border-color: var(--eg-heading-primary);
}

.eg-about__btn .about-btn.eg-btn::after {
  background-color: var(--eg-heading-primary);
}

.eg-about__shape-1 {
  position: absolute;
  bottom: 80px;
  left: -30px;
  filter: blur(3.5px);
  z-index: -1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-about__shape-1 {
    display: none;
  }
}

.eg-about__shape-2 {
  position: absolute;
  bottom: 120px;
  right: -85px;
  z-index: -1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-about__shape-2 {
    display: none;
  }
}

/*----------------------------------------*/
/*  8.4 Product css
/*----------------------------------------*/
.eg-product__bg {
  padding-bottom: 75px;
}

.eg-product__active {
  margin-left: -250px;
  margin-right: -250px;
  position: relative;
  z-index: 1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-product__active {
    margin: auto;
  }
}

.eg-product__item {
  border: 1px solid var(--eg-border-primary);
  border-radius: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-product__item:hover {
  box-shadow: 0px 33px 33px rgba(156, 156, 156, 0.25);
}

.eg-product__item:hover .eg-product__btn .eg-btn {
  background-color: var(--eg-theme-primary);
  color: var(--eg-common-white);
  border-color: var(--eg-theme-primary);
}

.eg-product__item:hover .eg-product__btn .eg-btn:hover {
  color: var(--eg-heading-primary);
}

.eg-product__thumb {
  margin-bottom: 41px;
}

.eg-product__title {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 20px;
}

.eg-product__title a:hover {
  color: var(--eg-red-1);
}

.eg-product__price {
  font-size: 20px;
  display: block;
  font-family: var(--eg-heading-font-family);
  font-weight: 500;
  color: var(--eg-theme-primary);
  line-height: 1;
  margin-bottom: 28px;
}

.eg-product__rating {
  margin-bottom: 28px;
}

.eg-product__rating-count {
  margin-left: 10px;
  color: var(--eg-heading-primary);
  font-weight: 500;
}

.eg-product__btn .eg-btn {
  padding: 17px 34px;
  border: 1px solid #EAEAEA;
  background: #F9F9F9;
  color: var(--eg-heading-primary);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-product__cart span {
  width: 50px;
  height: 50px;
  background: var(--eg-heading-primary);
  border-radius: 50%;
  line-height: 45px;
  text-align: center;
  display: inline-block;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-product__cart span:hover {
  background: var(--eg-theme-primary);
}

.eg-product__arrow span {
  height: 70px;
  width: 70px;
  line-height: 70px;
  color: var(--eg-heading-primary);
  background-color: var(--eg-common-white);
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 7px 13px 0px rgba(44, 65, 97, 0.13);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-product__arrow span {
    display: none;
  }
}

.eg-product__arrow span:hover {
  background-color: var(--eg-heading-primary);
  color: var(--eg-common-white);
}

.eg-product__next,
.eg-product__prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15%;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .eg-product__next,
  .eg-product__prev {
    left: 17%;
  }
}

.eg-product__next {
  left: auto;
  right: 15%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-product__next {
    right: 17%;
  }
}

.eg-product-2__arrow {
  gap: 80px;
}

.eg-product-2__prev,
.eg-product-2__next {
  background: var(--eg-common-black-4);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

@media (max-width: 575px) {

  .eg-product-2__prev,
  .eg-product-2__next {
    display: none;
  }
}

.eg-product-2__prev span,
.eg-product-2__next span {
  position: absolute;
  left: 50%;
}

.eg-product-2__prev span svg,
.eg-product-2__next span svg {
  fill: var(--eg-common-black-5);
  transform: translateY(-2px);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-product-2__prev:hover span svg,
.eg-product-2__next:hover span svg {
  fill: var(--eg-common-white);
}

.eg-product-2__next span {
  right: 50%;
  left: auto;
}

.eg-product-2__item {
  padding: 94px 50px 86px 50px;
  border: 1px solid #1B1E1E;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-product-2__item:hover {
  background: var(--eg-common-black-3);
}

.eg-product-2__item:hover .eg-btn-2 {
  background-size: 200%, 1px;
  background-image: linear-gradient(to left, #fdc00f 0%, #e10b18 70%, #fdc00f 100%);
}

.eg-product-2__content {
  margin-bottom: 86px;
}

.eg-product-2__content p {
  font-size: 15px;
  line-height: 28px;
  color: var(--eg-text-body);
  margin: 0 0 4px;
}

.eg-product-2__title {
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.01em;
  color: var(--eg-common-white);
  margin-bottom: 3px;
}

.eg-product-2__title a:hover {
  color: var(--eg-theme-primary);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-product-2__title {
    font-size: 25px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-product-2__title {
    font-size: 26px;
  }
}

.eg-product-2__title.title-2 {
  font-size: 26px;
}

.eg-product-2__price {
  font-size: 20px;
  line-height: 28px;
  color: var(--eg-text-body);
  margin: 0 0 16px;
}

.eg-product-2__btn .eg-btn-2 {
  padding: 10px 88px;
  background: var(--eg-common-black-4);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-product-2__btn .eg-btn-2 {
    width: 100%;
  }
}

.eg-product-2__btn .eg-btn-2 span {
  padding-right: 10px;
}

.eg-product-2__btn .eg-btn-2:hover {
  background-position: 100% 0;
}

.eg-product-2__thumb {
  display: inline-block;
}

.eg-product__search {
  border-radius: 0;
  position: relative;
}

.eg-product__search form input {
  background: transparent;
  height: 64px;
  border: 1px solid var(--eg-border-primary);
}

.eg-product__search form input.product-2-input {
  border: 1px solid var(--eg-common-black-3);
}

.eg-product__range-head {
  margin-top: 22px;
}

.eg-product__range-head .ui-slider-horizontal {
  height: 5px;
  background-color: var(--eg-heading-primary);
  border-radius: 10px;
  border: none;
}

.eg-product__range-head .ui-slider-horizontal .ui-slider-range {
  background: var(--eg-theme-primary);
}

.eg-product__range-head .ui-slider-horizontal .ui-slider-handle {
  top: -8px;
  margin-left: 0;
}

.eg-product__range-head .ui-slider .ui-slider-handle {
  height: 20px;
  width: 20px;
  cursor: pointer;
  background-color: var(--eg-theme-primary);
  box-shadow: 0px 8px 25px 0px rgba(0, 0, 0, 0.3);
}

.eg-product__range-head .ui-state-default,
.eg-product__range-head .ui-widget-content .ui-state-default,
.eg-product__range-head .ui-widget-header .ui-state-default,
.eg-product__range-head .ui-button,
.eg-product__range-head html .ui-button.ui-state-disabled:hover,
.eg-product__range-head html .ui-button.ui-state-disabled:active {
  border: 6px solid var(--eg-common-white);
  border-radius: 50%;
}

.eg-product__price-range {
  background-color: var(--eg-common-white-2);
  padding: 30px;
  margin-bottom: 30px;
}

.eg-product__price-range-min-max {
  display: flex;
  margin: 18px 0 0 0px;
  align-items: center;
}

.eg-product__price-range-min-max span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  left: -2px;
}

.eg-product__price-range-min-max input {
  background: transparent;
  border: none;
  color: var(--eg-text-body);
}

.eg-product__price-range-min-max input#filter {
  background-color: var(--eg-common-white);
  font-size: 10px;
  font-weight: 600;
  line-height: 38px;
  cursor: pointer;
  padding: 0 20px;
  height: 38px;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.04);
  text-transform: uppercase;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-product__price-range-min-max input#filter.filter-2 {
  background-color: var(--eg-common-black);
}

.eg-product__sidebar-title {
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: -5px;
}

.eg-product__categories {
  background-color: var(--eg-common-white-2);
  padding: 30px;
}

.eg-product__categories-2 {
  background: var(--eg-common-black-3);
}

.eg-product__categories-2 ul li:hover {
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.09);
}

.eg-product__categories-2 ul li:hover a {
  color: var(--eg-common-white);
  padding-left: 27px;
}

.eg-product__categories ul {
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -20px;
}

.eg-product__categories ul li {
  position: relative;
  margin: 0 0 4px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  list-style: none;
}

.eg-product__categories ul li a {
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  z-index: 1;
  padding: 9px 15px 11px;
  display: inline-block;
}

.eg-product__categories ul li a span {
  padding-right: 10px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-product__categories ul li:hover {
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.04);
}

.eg-product__categories ul li:hover a {
  color: var(--eg-common-black-2);
  padding-left: 27px;
}

.eg-product__categories ul li:hover a span {
  color: var(--eg-theme-primary);
}

.eg-product__info-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-product__info-top {
    display: block;
  }
}

.eg-product__info-top p {
  margin-bottom: 0;
}

.eg-product__showing-top {
  font-size: 18px;
  font-weight: 500;
}

.eg-product__showing-sort {
  width: 340px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-product__showing-sort {
    width: 100%;
  }
}

.eg-product__showing-sort-2 select {
  background: var(--eg-common-black-3);
  color: var(--eg-common-white);
}

.eg-product__filter .nice-select {
  height: 60px;
  line-height: 48px;
  border-radius: 0;
  float: none;
  padding: 0 20px;
}

.eg-product__filter.nice-select {
  border: 1px solid transparent;
  background: var(--eg-common-white-2);
  padding: 0 26px;
  width: 100%;
  height: 64px;
  line-height: 62px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-product__filter.nice-select {
    margin-bottom: 30px;
  }
}

.eg-product__filter.nice-select:focus {
  border: 1px solid var(--eg-heading-primary);
}

.eg-product-details__thumb-tab {
  margin-right: 30px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-product-details__thumb-tab {
    margin-right: 0;
  }
}

.eg-product-details__thumb-nav .nav {
  border: none;
}

.eg-product-details__thumb-nav .nav-tabs .nav-link {
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: 1px solid transparent;
}

.eg-product-details__thumb-nav .nav-tabs .nav-link img {
  width: 135px;
  height: 135px;
  object-fit: cover;
}

@media (max-width: 575px) {
  .eg-product-details__thumb-nav .nav-tabs .nav-link img {
    width: 75px;
    height: 75px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-product-details__thumb-nav .nav-tabs .nav-link img {
    width: 115px;
    height: 115px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-product-details__thumb-nav .nav-tabs .nav-link img {
    width: 100px;
    height: 100px;
  }
}

.eg-product-details__thumb-nav .nav-tabs .nav-link.active {
  border: 1px solid var(--eg-heading-primary);
}

.eg-product-details__content p .see-more {
  color: var(--eg-theme-primary);
}

.eg-product-details__title {
  font-size: 36px;
  line-height: 1.1;
}

.eg-product-details__stock .stock {
  padding: 5px 10px;
  background: var(--eg-common-white-2);
  color: var(--eg-theme-primary);
}

.eg-product-details__rating-count {
  font-size: 18px;
  line-height: 1.5;
  color: var(--eg-text-body);
}

.eg-product-details__ammount {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}

.eg-product-details__ammount .old-ammount {
  font-size: 20px;
  color: var(--eg-text-body);
  margin-right: 5px;
}

@media (max-width: 575px) {
  .eg-product-details__quantity {
    flex-wrap: wrap;
  }
}

.eg-product-details__quantity-title {
  line-height: 30px;
  text-transform: capitalize;
  margin-right: 35px;
}

.eg-product-details__quantity-box {
  position: relative;
  width: 98px;
  height: 50px;
}

.eg-product-details__quantity-box span {
  width: 98px;
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--eg-border-primary);
  color: var(--eg-text-body);
  padding-left: 30px;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
}

.eg-product-details__quantity-btn {
  width: 24px;
  height: 24px;
  line-height: 24px;
  color: var(--eg-text-body);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  border: none;
  border: 1px solid var(--eg-border-primary);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-product-details__quantity-btn.minus {
  bottom: 1px;
  top: auto;
  border: 1px solid var(--eg-border-primary);
}

.eg-product-details__quantity-btn:hover {
  color: var(--eg-theme-primary);
}

.eg-product-details__button .eg-btn {
  margin-left: 35px;
  padding: 22px 50px;
}

@media (max-width: 575px) {
  .eg-product-details__button .eg-btn {
    margin-top: 20px;
  }
}

.eg-product-details__button .eg-btn span {
  padding-left: 0;
}

.eg-product-details__bottom a {
  margin-left: 3px;
}

.eg-product-details__bottom a:hover {
  color: var(--eg-theme-primary);
}

.eg-product-details__sku {
  text-transform: uppercase;
}

.eg-product-details__sku span {
  margin-left: 3px;
}

.eg-product-details__socials {
  gap: 10px;
}

.eg-product-details__socials-title {
  font-size: 24px;
}

@media (max-width: 575px) {
  .eg-product-details__socials-title {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-product-details__socials-title {
    font-size: 20px;
  }
}

.eg-product-details__socials a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--eg-common-white-2);
  font-size: 14px;
  color: var(--eg-heading-primary);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  border-radius: 50%;
}

.eg-product-details__socials a:hover {
  background: var(--eg-theme-primary);
  color: white;
}

.eg-review__wrapper .nav-item {
  margin-right: 24px;
}

.eg-review__wrapper .nav-link {
  background: var(--eg-common-white-2);
  border: 0;
  border-radius: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--eg-heading-primary);
  padding: 20px 55px;
}

.eg-review__wrapper .nav-link.active {
  background: var(--eg-theme-primary);
  color: var(--eg-common-white);
}

@media (max-width: 575px) {
  .eg-review__wrapper .nav-link {
    font-size: 16px;
    padding: 15px 30px;
  }
}

.eg-review__box {
  margin: 0;
}

.eg-review__rating-icon span svg {
  color: #00B67A;
}

/*----------------------------------------*/
/*  8.6 video css
/*----------------------------------------*/
.eg-video__bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 566px 0px 0;
  position: relative;
}

.eg-video__btn {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-46%);
}

.eg-video__popup {
  width: 120px;
  height: 120px;
  display: inline-block;
  margin: 0 auto;
  background: white;
  border-radius: 50%;
  text-align: center;
  border: 1px solid white;
  line-height: 120px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-video__popup::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: scale(1);
  border: 1px solid var(--eg-border-primary);
  animation: video-border 3s linear infinite;
  border-radius: 50%;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-video__popup i {
  background: linear-gradient(265.48deg, #e10b18 21.72%, #fdc00f 115.5%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
}

.eg-video__popup:hover {
  background: transparent;
}

/*----------------------------------------*/
/*  7.8 Feature css
/*----------------------------------------*/
.eg-feature__bg {
  padding: 148px 0 25px 0;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.eg-feature__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 61px;
  background-image: url(../img/feature/feature-bg-shape-1.png);
  background-repeat: repeat-x;
  background-position: center;
  z-index: -1;
}

.eg-feature__bg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 61px;
  background-image: url(../img/feature/feature-bg-shape-2.png);
  background-repeat: repeat-x;
  background-position: center;
  z-index: -1;
}

.eg-feature__section {
  margin-bottom: 95px;
}

.eg-feature__wrapper {
  position: relative;
  z-index: 99;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-feature__list-2 {
    padding-bottom: 60px;
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-feature__list-2 {
    padding-bottom: 60px;
  }
}

.eg-feature__list ul li {
  list-style: none;
  margin-bottom: 65px;
}

.eg-feature__list ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-feature__list ul li {
    margin-bottom: 30px;
  }
}

.eg-feature__list.feature-list-2 {
  text-align: end;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-feature__content {
    order: 2;
  }
}

.eg-feature__list-2 .eg-feature__item {
  justify-content: end;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-feature__list-2 .eg-feature__item {
    justify-content: flex-start;
  }
}

.eg-feature__list-2 .eg-feature__icon span {
  margin-right: 0;
  margin-left: 15px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-feature__list-2 .eg-feature__icon span {
    margin-right: 15px;
    margin-left: 0;
  }
}

.eg-feature__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.eg-feature__item:hover .eg-feature__icon span {
  box-shadow: inset 0 0 0 60px var(--eg-heading-primary);
}

.eg-feature__item:hover .eg-feature__icon span i {
  color: var(--eg-common-white);
}

.eg-feature__icon span {
  background: var(--eg-common-white);
  margin-right: 22px;
  -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
  clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
  height: 75px;
  width: 75px;
  text-align: center;
  line-height: 80px;
  flex: 0 0 auto;
  display: inline-block;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.eg-feature__icon span i {
  color: var(--eg-heading-primary);
  font-size: 32px;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.eg-feature__title {
  letter-spacing: 0.01em;
  margin-bottom: 0;
  color: var(--eg-common-white);
  font-size: 22px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-feature__title {
    font-size: 17px;
  }
}

.eg-feature__thumb-wrap {
  text-align: center;
  position: relative;
  z-index: 1;
}

.eg-feature__thumb-main {
  position: relative;
  z-index: 1;
}

.eg-feature__thumb-main::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -73px;
  transform: translateX(-50%);
  width: 316px;
  height: 15px;
  background: rgba(131, 131, 131, 0.54);
  filter: blur(9px);
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-feature__thumb-main::before {
    display: none;
  }
}

.eg-feature__thumb-main img {
  transform: rotate(-33.896deg);
}

@media (max-width: 575px) {
  .eg-feature__thumb-main img {
    transform: rotate(0);
    width: 100%;
    margin-top: 50px;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-feature__thumb-main img {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-feature__thumb-main img {
    width: 300px;
  }
}

.eg-feature__shape-1 {
  position: absolute;
  top: -25px;
  right: 110px;
  z-index: -1;
  transition: 0.35s linear;
}

@media (max-width: 575px) {
  .eg-feature__shape-1 {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-feature__shape-1 {
    right: 20px;
    top: -60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-feature__shape-1 {
    right: 60px;
  }
}

.eg-feature__shape-2 {
  position: absolute;
  bottom: -30px;
  left: 140px;
  z-index: -1;
  filter: blur(5px);
  transition: 0.35s linear;
}

@media (max-width: 575px) {
  .eg-feature__shape-2 {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-feature__shape-2 {
    bottom: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-feature__shape-2 {
    bottom: -60px;
    left: 70px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-feature__shape-2 {
    left: 80px;
  }
}

.eg-feature__shape-3 {
  position: absolute;
  left: -58px;
  top: 117px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-feature__shape-3 {
    top: 0;
  }
}

.eg-feature__shape-4 {
  position: absolute;
  left: -23px;
  bottom: 90px;
  filter: blur(4px);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-feature__shape-4 {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-feature__shape-4 {
    bottom: -30px;
  }
}

.eg-feature__shape-5 {
  position: absolute;
  right: 0;
  top: 117px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-feature__shape-5 {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-feature__shape-5 {
    top: 0;
  }
}

.eg-feature__shape-6 {
  position: absolute;
  right: -50px;
  bottom: 20px;
  filter: blur(4px);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-feature__shape-6 {
    display: none;
  }
}

.eg-feature__opacity-title {
  color: var(--eg-red-2);
  text-align: center;
  font-family: var(--eg-font-1-family);
  font-size: 250px;
  font-weight: 500;
  line-height: 134.7%;
  letter-spacing: 10px;
  text-transform: inherit;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-feature__wrapper .row>*:nth-child(2) {
    order: 3;
  }

  .eg-feature__wrapper .row>*:nth-child(3) {
    order: 2;
  }
}

.eg-feature-2 {
  position: relative;
  z-index: 1;
  background-color: #151818;
}

.eg-feature-2__bg {
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 41%;
}

.eg-feature-2__bg video,
.eg-banner-2__thumb video{
  height: 100%;
  object-fit: cover;
  object-position: bottom left;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-feature-2__bg {
    display: none;
  }
}

.eg-feature-2__content {
  padding: 150px 0;
  margin-left: -20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-feature-2__content .eg-section p {
    font-size: 14px;
  }
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-feature-2__content {
    padding-top: 100px;
    margin-left: 0;
  }
}

.eg-feature-2__list {
  margin-top: 53px;
}

.eg-feature-2__list_wrap {
  padding-left: 0;
}

.eg-feature-2__list_wrap li {
  font-family: var(--eg-heading-font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 44px;
  color: var(--eg-common-white);
  display: flex;
  align-items: center;
}

.eg-feature-2__list_wrap li:last-child {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .eg-feature-2__list_wrap li:last-child {
    margin-bottom: 30px;
  }
}

.eg-feature-2__list_wrap li span i {
  margin-right: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 34px;
  background: linear-gradient(265.48deg, #fff 21.72%, #fff 115.5%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-feature-2__list_wrap li:hover span i {
  background: linear-gradient(265.48deg, #d7b56d 21.72%, #a27029 115.5%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eg-feature-2__shape-1 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  animation: egswing 5s ease-in-out 0.1s forwards infinite alternate;
  transform-origin: bottom right;
}

.eg-feature-2__shape-2 {
  position: absolute;
  right: -75px;
  bottom: -60px;
  z-index: 1;
}

.eg-feature-2__shape-3 {
  position: absolute;
  left: -80px;
  top: -160px;
  z-index: 1;
  filter: blur(1.5px);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-feature-2__shape-3 {
    display: none;
  }
}

.eg-feature-2__shape-4 {
  position: absolute;
  right: -80px;
  top: -195px;
  z-index: 1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-feature-2__shape-4 {
    display: none;
  }
}

/*----------------------------------------*/
/*  7.9 Formula css
/*----------------------------------------*/
.eg-formula__wrapper {
  padding: 60px 81px 60px 116px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-formula__wrapper {
    padding: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-formula__wrapper {
    padding: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-formula__wrapper {
    padding: 50px;
  }
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-formula__content {
    text-align: center;
  }
}

.eg-formula__features {
  margin-top: 54px;
}

.eg-formula__features ul li {
  font-family: var(--tg-body-font-family);
  font-size: 18px;
  line-height: 28px;
  color: var(--tg-common-color-gray);
  margin-bottom: 18px;
  list-style: none;
}

.eg-formula__features ul li span{
  font-weight: 600;
}

.eg-formula__features ul li:last-child {
  margin-bottom: 0;
}

.eg-formula__features ul li i {
  font-size: 14px;
  background: linear-gradient(270.31deg, #d7b56d 14.51%, #a27029 122.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 5px;
}

.eg-formula__thumb {
  width: 527px;
  height: 527px;
  line-height: 527px;
  background: var(--eg-common-black-6);
  border-radius: 50%;
  text-align: center;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-formula__thumb {
    background: transparent;
    width: 100%;
    height: 100%;
    line-height: 1;
    margin-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-formula__thumb {
    margin: 0 auto;
  }
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-formula__thumb img {
    width: 100%;
  }
}

.eg-formula__shape {
  position: absolute;
  left: -127px;
  top: 190px;
  transform: translateY(-50%);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-formula__shape {
    display: none;
  }
}

.eg-pricing-2__wrapper {
  margin: 0 15px;
}

.eg-pricing-2__item {
  padding: 46px 50px;
  border-radius: 10px;
  border: 1px solid var(--eg-common-black-4);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-pricing-2__item {
    padding: 30px;
  }
}

.eg-pricing-2__item:hover,
.eg-pricing-2__item.active {
  background: var(--eg-common-black-4);
  border-color: var(--eg-common-black-4);
}

.eg-pricing-2__item:hover .eg-pricing-2__head-img,
.eg-pricing-2__item.active .eg-pricing-2__head-img {
  background: var(--eg-common-black);
}

.eg-pricing-2__item:hover .eg-btn-2,
.eg-pricing-2__item.active .eg-btn-2 {
  background-size: 200%, 1px;
  background-image: linear-gradient(to left, #d7b56d 0%, #a27029 70%, #d7b56d 100%);
}

.eg-pricing-2__head {
  display: flex;
  border-bottom: 1px solid var(--eg-common-black-4);
  padding-bottom: 15px;
}

.eg-pricing-2__head-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--eg-common-black-4);
  text-align: center;
  line-height: 55px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-pricing-2__head-text {
  margin: 6px 20px 0;
}

.eg-pricing-2__head-text p {
  font-size: 16px;
}

.eg-pricing-2__title {
  font-weight: 500;
  font-size: 18px;
  color: var(--eg-common-white);
  margin-bottom: 5px;
}

.eg-pricing-2__features {
  margin: 46px 0 48px;
}

.eg-pricing-2__features ul li {
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 17px;
  line-height: 1;
  list-style: none;
}

.eg-pricing-2__features ul li:last-child {
  margin-bottom: 0;
}

.eg-pricing-2__features ul li span {
  margin-right: 10px;
}

.eg-pricing-2__price {
  font-size: 34px;
  letter-spacing: -0.01em;
  color: var(--eg-common-white);
  line-height: 1;
  margin: 15px 0 50px;
}

.eg-pricing-2__price span {
  font-size: 16px;
  color: var(--eg-text-body);
}

.eg-pricing-2__total {
  font-size: 18px;
  line-height: 1;
  margin: 0;
  color: var(--eg-text-body);
}

.eg-pricing-2__btn .eg-btn-2 {
  width: 100%;
  background: var(--eg-common-black-3);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-pricing-2__btn .eg-btn-2 span {
  padding-left: 144px;
}

.eg-pricing-2__btn .eg-btn-2:hover {
  background-position: 100% 0;
}

.eg-pricing-2__bottom {
  font-size: 16px;
  color: var(--eg-text-body);
  display: block;
  margin-top: 13px;
}

.eg-pricing-2__offer {
  position: absolute;
  background: linear-gradient(265.48deg, #d7b56d 21.72%, #a27029 115.5%);
  transform: rotate(48deg);
  top: 20px;
  right: -80px;
  padding: 10px 74px 3px 74px;
}

.eg-pricing-2__offer h4 {
  font-size: 13px;
  color: var(--eg-common-white);
  letter-spacing: 2px;
  line-height: 1;
}

.eg-pricing-2__shape {
  position: absolute;
  right: -60px;
  bottom: -120px;
  z-index: 1;
  filter: blur(3px);
}

/*=============================
	Counter
===============================*/
.eg-counter {
  padding-top: 135px;
  padding-bottom: 107px;
}

.eg-counter__wrap {
  padding: 0 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-counter__wrap {
    display: block;
    padding: 0;
  }
}

.eg-counter__black {
  flex: 0 0 auto;
  position: relative;
}

.eg-counter__black img {
  width: 370px;
  height: 370px;
  object-fit: cover;
  border: 1px dashed var(--eg-border-2);
  border-radius: 50%;
  mix-blend-mode: luminosity;
  /* filter: brightness(0.5); */
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-counter__black img {
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-counter__black img {
    width: 300px;
    height: 300px;
  }
}

.eg-counter__black-1 {
  margin-right: -15px;
  z-index: 1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-counter__black-1 {
    margin-right: 0;
  }
}

.eg-counter__black-2 img {
  width: 490px;
  height: 490px;
  object-fit: cover;
  border: 1px dashed var(--eg-border-2);
  border-radius: 50%;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-counter__black-2 img {
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .eg-counter__black-2 img {
    width: 400px;
    height: 400px;
  }
}

.eg-counter__black-3 {
  margin-left: -15px;
  z-index: 1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .eg-counter__black-3 {
    margin-left: 0;
  }
}

.eg-counter__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.eg-counter__content .count {
  font-weight: 500;
  font-size: 45px;
  letter-spacing: -0.01em;
  color: var(--eg-common-white);
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  line-height: 1;
}

.eg-counter__content .count::after {
  content: "+";
  color: var(--eg-common-white);
  font-size: 45px;
}

.eg-counter__content .count .odometer {
  transform: translateY(-6px);
  margin-right: 9px;
}

.eg-counter__content p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  color: #BABCC2;
}

.eg-counter__shape-1 {
  position: absolute;
  left: -40px;
  bottom: 150px;
  transform: translateY(-50%);
  z-index: 1;
  filter: blur(1.8px);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-counter__shape-1 {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) and (max-width: 1599px) {
  .eg-counter__shape-1 {
    bottom: -70px;
  }
}

.eg-testimonial-2__item {
  padding: 100px 80px 91px 74px;
  border: 1px solid var(--eg-common-black-4);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-testimonial-2__item {
    padding: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .eg-testimonial-2__item {
    padding: 40px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .eg-testimonial-2__item {
    padding: 80px 30px 80px 30px;
  }
}

.eg-testimonial-2__item:hover {
  background: var(--eg-common-black-3);
  border-color: var(--eg-common-black-3);
}

.eg-testimonial-2__item:hover .eg-testimonial-2__quote span i {
  background: linear-gradient(265.48deg, #d7b56d 21.72%, #a27029 115.5%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eg-testimonial-2__content p {
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.9;
}

.eg-testimonial-2__content p span {
  color: var(--eg-common-white);
}

.eg-testimonial-2__avatar-img {
  flex: 0 0 auto;
  margin-right: 14px;
}

.eg-testimonial-2__avatar-text .title {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: var(--eg-common-white);
  margin-bottom: 6px;
}

.eg-testimonial-2__avatar-text p {
  font-size: 12px;
  color: var(--eg-common-white);
  opacity: 0.5;
  margin-bottom: 0;
}

.eg-testimonial-2__quote {
  text-align: right;
}

.eg-testimonial-2__quote span i {
  color: var(--eg-gray-2);
  font-size: 38px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.eg-testimonial-2__shape {
  position: absolute;
  right: -30px;
  top: -90px;
  transform: rotate(24deg);
  width: 165px;
  height: 124px;
}

.eg-testimonial-2__shape img {
  width: 100%;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .eg-testimonial-2__shape {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) and (max-width: 1599px) {
  .eg-testimonial-2__shape {
    top: -150px;
  }
}

@media (max-width: 991px) {
  .heroBanner {
    padding-top: 110px;
  }

  .eg-counter {
    padding-bottom: 0;
  }

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

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

  .eg-footer-2__widget-wrapper {
    margin-top: 0;
    padding: 30px 0 20px;
  }

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

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

  .eg-footer-2__social {
    margin-bottom: 25px;
  }

  .eg-feature-2__content {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .eg-section__title {
    font-size: 26px;
  }
}


.page-banner-area {
  background: linear-gradient(265.48deg, #d7b56d 21.72%, #a27029 115.5%);
  content: "";
  padding-top: 30px;
  padding-bottom: 30px;
}

.page-banner-content {
  text-align: center;
}

.page-banner-content h2, .page-banner-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--eg-common-white);
}

.page-banner-content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.page-banner-content ul li {
  display: inline-block;
  list-style-type: none;
  font-size: 14px;
  font-weight: 500;
  color: #e9e9ec;
  position: relative;
  margin-left: 25px;
}

.page-banner-content ul li:first-child {
  margin-left: 0;
}

.page-banner-content ul li a {
  display: block;
  color: var(--eg-common-white);
  text-decoration: underline;
}

.page-banner-content ul li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 12px;
  height: 1px;
  width: 10px;
  background: #c3c3c3;
}

.page-banner-content ul li:first-child:before {
  display: none;
}

.buy-area {
  padding: 50px 0;
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-form .form-group textarea.form-control {
  height: auto;
  padding: 15px;
  line-height: 1.5rem;
}

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

.contact-form .form-group .form-control {
  display: block;
  width: 100%;
  height: 60px;
  outline: 0;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 15px;
  font-size: 15px;
}

.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: var(--eg-common-white);
  background-color: var(--eg-red-2);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  border-radius: 5px;
  padding: 15px 50px 15px 25px;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: -5px;
}

.hidden {
  display: none;
}

.default-btn i {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 15px;
}

.contact-form .form-group textarea.form-control {
  height: auto;
  padding: 15px;
  line-height: 1.5rem;
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.buynow-section .mb-5.text-center.border.p-3 img {
  max-height: 150px;
}

.section-pages {
  padding: 50px 0;
}

.section-pages p:last-child {
  margin-bottom: 0;
}

.top-space{
  background-color: var(--eg-common-black-3);
  min-height: 120px;
}





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