:root {
  --theme-color: rgb(244, 204, 115);
  --theme-color-opacity: 244, 204, 115;
  --title-color: #131A22;
  --title-font: "Plus Jakarta Sans", sans-serif;
  --body-font: "DM Sans", sans-serif;
  --body-color: #777777;
  --at-border-color: rgba(19, 26, 34, 0.1);
  --white-color: #ffffff;
}
body {
  font-family: var(--body-font);
  font-size: 16px;
  background-color: #ffffff;
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1170px;
  }
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--title-font);
}
/*------------------- 3.1. Preloader -------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--white-color);
}

.preloader {
  width: 100px;
  height: 100px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
}

.preloader span {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: var(--theme-color);
  animation: preloader 1.3s linear infinite;
  -webkit-animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
/*------------------- 2.5. Mobile Menu -------------------*/
.at-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}
.at-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background-color: var(--smoke-color2);
}
.at-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}
.at-menu-wrapper .at-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 35px;
  font-size: 18px;
  z-index: 1;
  color: var(--title-color);
  background-color: var(--theme-color);
  border-radius: 50%;
  transition: 0.4s;
}
.at-menu-wrapper .at-menu-toggle:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}
.at-menu-wrapper .at-menu-toggle svg {
  width: 18px;
}
.at-menu-wrapper .at-menu-toggle:hover svg {
  filter: brightness(99) grayscale(9) invert(1);
}
.at-menu-wrapper .at-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 1s;
  z-index: 1;
}
.at-menu-wrapper.at-body-visible {
  opacity: 1;
  visibility: visible;
}
.at-menu-wrapper.at-body-visible .at-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.at-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 23px;
  text-align: left;
}
.at-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}
.at-mobile-menu ul li {
  border-bottom: 1px solid var(--at-border-color);
  list-style-type: none;
}
.at-mobile-menu ul li li:first-child {
  border-top: 1px solid var(--at-border-color);
}
.at-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
  text-decoration: none;
}
.at-mobile-menu ul li a.at-btn {
  display: flex;
  margin-top: 30px;
}
.at-mobile-menu ul li a:hover {
  text-shadow: -0.3px -0.3px 0 var(--title-color), 0.3px 0.3px var(--title-color);
}
.at-mobile-menu ul li.at-active > a {
  color: var(--title-color);
  text-shadow: -0.3px -0.3px 0 var(--title-color), 0.3px 0.3px var(--title-color);
}
.at-mobile-menu ul li.at-active > a:before {
  transform: rotate(90deg);
}
.at-mobile-menu ul li ul li {
  padding-left: 10px;
}
.at-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}
.at-mobile-menu ul .menu-item-has-children > a .at-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--title-color);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}
.at-mobile-menu ul .menu-item-has-children > a .at-mean-expand:before {
  content: "\f067";
  font-family: var(--icon-font);
}
.at-mobile-menu ul .menu-item-has-children > a:after {
  content: "\f067";
  font-family: var(--icon-font);
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--smoke-color);
  float: right;
  margin-top: 1px;
}
.at-mobile-menu ul .menu-item-has-children.at-active > a .at-mean-expand:before {
  content: "\f068";
}
.at-mobile-menu ul .menu-item-has-children.at-active > a:after {
  content: "\f068";
}
.at-mobile-menu > ul {
  padding: 0 30px;
}
.at-mobile-menu > ul > li:last-child {
  border-bottom: none;
}

.at-menu-toggle {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 20px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  color: var(--title-color);
  display: inline-block;
  border-radius: 50%;
  transition: 0.4s;
}
.at-menu-toggle:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}
.at-menu-toggle.style-text, .at-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}
.at-menu-toggle.style-text i, .at-menu-toggle.style-text-white i {
  margin-right: 10px;
}
.at-menu-toggle.style-text-white {
  color: var(--white-color);
}

@media (max-width: 400px) {
  .at-menu-wrapper .at-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .at-mobile-menu > ul {
    padding: 0 20px;
  }
}
/***default-btn-area***/
.at-btn {
  position: relative;
  z-index: 2;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  border: none;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 0.7;
  min-height: 64px;
  padding: 20px 45px;
  min-width: 170px;
  border-radius: 50px;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* Extra small devices */
}
.at-btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--title-color);
  z-index: -1;
  transition: 0.5s;
  mask-image: url(../img/btn-mask.png);
  mask-size: 3000% 100%;
  mask-repeat: no-repeat;
  animation: ani2 0.7s steps(29) forwards;
}
.at-btn:focus, .at-btn:hover, .at-btn:active {
  background: var(--theme-color);
  color: var(--title-color);
}
.at-btn:focus:after, .at-btn:hover:after, .at-btn:active:after {
  animation: ani 0.7s steps(29) forwards;
}
.at-btn.style2 {
  background: var(--title-color);
  color: var(--title-color);
}
.at-btn.style2:after {
  background: var(--theme-color);
}
.at-btn.style2:focus, .at-btn.style2:hover, .at-btn.style2:active {
  color: var(--white-color);
}
.at-btn.style3 {
  background: var(--white-color);
  color: var(--title-color);
}
.at-btn.style3:after {
  background: var(--theme-color);
}
.at-btn.style3:focus, .at-btn.style3:hover, .at-btn.style3:active {
  color: var(--title-color);
}
.at-btn.style4 {
  color: var(--white-color);
  background: rgba(19, 26, 34, 0.2);
}
.at-btn.style4:after {
  backdrop-filter: blur(7px);
  background: rgba(255, 255, 255, 0.2);
}
.at-btn.style4:focus, .at-btn.style4:hover, .at-btn.style4:active {
  color: var(--title-color);
  background: var(--white-color);
}
.at-btn.style4:focus:after, .at-btn.style4:hover:after, .at-btn.style4:active:after {
  background: var(--title-color);
}
.at-btn.style5 {
  color: var(--white-color);
}
.at-btn.style5:focus, .at-btn.style5:hover, .at-btn.style5:active {
  color: var(--white-color);
}
.at-btn.style6 {
  background: var(--title-color);
  color: var(--white-color);
}
.at-btn.style6:after {
  background: var(--theme-color);
}
.at-btn.style6:focus, .at-btn.style6:hover, .at-btn.style6:active {
  color: var(--white-color);
}
.at-btn.style7 {
  background: var(--white-color);
  color: var(--white-color);
}
.at-btn.style7:after {
  background: var(--title-color);
}
.at-btn.style7:focus, .at-btn.style7:hover, .at-btn.style7:active {
  color: var(--title-color);
}
.at-btn.style8 {
  background: var(--theme-color);
  color: var(--title-color);
}
.at-btn.style8:after {
  background: var(--white-color);
}
.at-btn.style8:focus, .at-btn.style8:hover, .at-btn.style8:active {
  color: var(--title-color);
}
.at-btn.style-border {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  background: transparent;
}
.at-btn.style-border:active, .at-btn.style-border:focus, .at-btn.style-border:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--title-color);
}
.at-btn.style-border2 {
  border: 1px solid var(--at-border-color);
  color: var(--title-color);
  background: transparent;
}
.at-btn.style-border2:after {
  background: transparent;
}
.at-btn.style-border2:active, .at-btn.style-border2:focus, .at-btn.style-border2:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--title-color);
}
.at-btn.style-border2:active:after, .at-btn.style-border2:focus:after, .at-btn.style-border2:hover:after {
  background: var(--white-color);
}
.at-btn.style-border3 {
  border: 1px solid var(--white-color);
  color: var(--white-color);
  background: transparent;
}
.at-btn.style-border3:after {
  background: transparent;
}
.at-btn.style-border3:active, .at-btn.style-border3:focus, .at-btn.style-border3:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--title-color);
}
.at-btn.style-border3:active:after, .at-btn.style-border3:focus:after, .at-btn.style-border3:hover:after {
  background: var(--white-color);
}
.at-btn.style-border4 {
  border: 1px solid var(--at-border-color);
  color: var(--title-color);
  background: transparent;
}
.at-btn.style-border4:after {
  background: transparent;
}
.at-btn.style-border4:active, .at-btn.style-border4:focus, .at-btn.style-border4:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--white-color);
}
.at-btn.style-border4:active:after, .at-btn.style-border4:focus:after, .at-btn.style-border4:hover:after {
  background: var(--white-color);
}
.at-btn.style-border5 {
  border: 1px solid var(--title-color);
  color: var(--title-color);
  background: transparent;
}
.at-btn.style-border5:after {
  background: transparent;
}
.at-btn.style-border5:active, .at-btn.style-border5:focus, .at-btn.style-border5:hover {
  background: var(--title-color);
  border-color: var(--theme-color);
  color: var(--white-color);
}
.at-btn.style-border5:active:after, .at-btn.style-border5:focus:after, .at-btn.style-border5:hover:after {
  background: var(--white-color);
}
.at-btn.style-border6 {
  border: 1px solid var(--at-border-color);
  color: var(--title-color);
  background: transparent;
}
.at-btn.style-border6:after {
  background: transparent;
}
.at-btn.style-border6:active, .at-btn.style-border6:focus, .at-btn.style-border6:hover {
  background: var(--title-color);
  border-color: var(--title-color);
  color: var(--white-color);
}
.at-btn.style-border6:active:after, .at-btn.style-border6:focus:after, .at-btn.style-border6:hover:after {
  background: var(--white-color);
}
.at-btn.btn-fw {
  width: 100%;
}
.at-btn.btn-fw:before, .at-btn.btn-fw:after {
  display: none;
}
.at-btn.btn-fw:hover {
  background: var(--theme-color);
  color: var(--white-color);
}
.at-btn.btn-md {
  padding: 20px 48px;
}
.at-btn.btn-sm {
  padding: 16px 25px;
  min-width: 140px;
  min-height: 46px;
}
.at-btn.btn-sm.style-border2 {
  padding: 15px 16px;
}
.at-btn.btn-radius-0 {
  border-radius: 0;
}
.at-btn.btn-radius-8 {
  border-radius: 8px;
}
.at-btn.btn-radius-10 {
  border-radius: 10px;
}
@media (max-width: 575px) {
  .at-btn {
    padding: 16px 30px;
    min-height: 50px;
  }
}

@keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}
@keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}
/*------------------------------------------------
    ## Back Top
------------------------------------------------*/
#back-to-top {
  display: inline-block;
  background-color: var(--theme-color);
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 0px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  animation: backto-top-bounce 4s infinite ease-in-out;
  visibility: hidden;
  z-index: 1000;
}
#back-to-top::after {
  content: "";
  position: absolute;
  background: var(--title-color);
  top: 50%;
  margin-top: -2.5px;
  height: 3px;
  width: 14px;
  line-height: 50px;
  transform: rotate(
-43deg
);
  left: 8.5px;
}
#back-to-top::before {
  content: "";
  position: absolute;
  background: var(--title-color);
  top: 50%;
  margin-top: -2.5px;
  height: 2px;
  width: 12px;
  line-height: 50px;
  transform: rotate(
50deg
);
  right: 10.5px;
}
#back-to-top:active,
#back-to-top:hover {
  cursor: pointer;
  background-color: var(--title-color);
}
#back-to-top:active:before,
#back-to-top:hover:before,
#back-to-top:active:after,
#back-to-top:hover:after {
  background: var(--white-color);
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

@keyframes backto-top-bounce {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-5px);
  }
}
/***navbar-area***/
.navbar-area {
  background: transparent;
  padding: 0;
  top: 0;
  position: fixed;
  z-index: 98;
  width: 100% !important;
  transition: all 0.4s;
  background: transparent;
}
.navbar {
  background: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  transition: all 0.3s linear;
}
.top-nav-collapse {
  box-shadow: 0px 4px 6px 0px rgb(12 0 46 / 5%);
  top: 0;
  padding: 0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.88);
}
.navbar-area .nav-container {
  transition: all 0.4s;
  padding: 16px 12px;
}
.top-nav-collapse .nav-container {
  background-color: transparent;
  padding: 16px 12px;
  transition: all 0.4s;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  margin-top: 0;
  display: inline-block;
  font-weight: 400;
  line-height: 50px;
  text-transform: capitalize;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
  color: var(--title-color);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--title-font);
  text-decoration: none;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
  margin-left: 30px;
}
.nav-right-part-desktop {
  margin-left: 30px;
}
.nav-right-part ul {
  padding: 0;
  margin: 0;
  display: inline-flex;
}
.nav-right-part ul li {
  list-style: none;
  align-self: center;
}
.nav-right-part-mobile {
  display: none;
}
.nav-right-part-mobile ul li a {
  text-decoration: none;
  color: #fff;
  padding: 0 10px;
}
.nav-right-part-mobile ul li .cart {
  display: none;
}
.nav-right-part-mobile ul li .cart img {
  height: 20px;
  width: 20px;
  filter: invert(1);
}
/***banner-area***/
.banner-area {
  padding: 250px 0px 250px;
  background-size: cover !important;
  position: relative;
  background-position: center !important;
  overflow: hidden;
  background: fixed;
  background-color: #fff;
}
.banner-area:after {
  content: "";
  position: absolute;
  /* background: #080C24; */
  opacity: 0.98;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.banner-area .sidebar-links {
  position: fixed;
  right: 0;
  top: 50%;
  display: inline-block;
  margin-right: -124px;
  transition: 0.4s;
  transform: translateY(-50%);
  margin-top: -70px;
  z-index: 9;
}
.banner-area .sidebar-links:hover {
  margin-right: 0;
}
.banner-area .sidebar-links .at-btn {
  border-radius: 0;
  margin-bottom: 5px;
  width: 100%;
  padding: 15px 18px;
  display: block;
  margin-right: 0;
  text-align: start;
  min-height: auto;
}
.banner-area .sidebar-links .at-btn i {
  margin-right: 18px;
  font-size: 22px;
  float: left;
  margin-top: -4px;
}
.banner-inner {
  position: relative;
  z-index: 9;
}
.banner-inner .at-btn-area {
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
}
.banner-logo {
  animation: 1.5s 0.4s fadeInUp both;
}
.banner-inner h1 {
  font-weight: 600;
  font-size: 74px;
  margin-bottom: 35px;
  animation: 1.5s 0.4s fadeInUp both;
  margin-top: -0.2em;
}
.banner-inner h1 span {
  color: #ffd934;
  display: block;
}
.banner-inner p {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 36px;
}
.banner-inner .me-5 {
  animation: 1.5s 0.6s fadeInUp both;
}
.banner-inner .banner-counter-wrap {
  animation: 1.5s 0.7s fadeInUp both;
}
.banner-inner .btn-area {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-thumb-wrap {
  text-align: center;
  position: relative;
  padding-top: 72px;
  padding-bottom: 120px;
  margin: 0 100px;
  z-index: 1;
}
.hero-thumb-wrap .hero-thumb6,
.hero-thumb-wrap .hero-thumb5,
.hero-thumb-wrap .hero-thumb4,
.hero-thumb-wrap .hero-thumb3,
.hero-thumb-wrap .hero-thumb2,
.hero-thumb-wrap .hero-thumb1 {
  box-shadow: 7px -7px 20px 0px rgba(40, 40, 40, 0.25);
  border-radius: 10px;
  display: inline-block;
  overflow: hidden;  
}
.hero-thumb-wrap .hero-thumb2 {
  bottom: 15px;
  left: 0;
  position: absolute;
}
.hero-thumb-wrap .hero-thumb3 {
  bottom: 0;
  right: 112px;
  position: absolute;
}
.hero-thumb-wrap .hero-thumb4 {
  top: 0;
  right: 0;
  z-index: -1;
  position: absolute;
}
.hero-thumb-wrap .hero-thumb5 {
  top: 0;
  left: 106px;
  z-index: -1;
  position: absolute;
}
.hero-thumb-wrap .hero-thumb6 {
  bottom: -50px;
  left: 50%;
  margin-left: -225px;
  position: absolute;
}

.hero-thumb-wrap .hero-thumb1 img {
  max-width: 722px;
}
.hero-thumb-wrap .hero-thumb2 img {
  max-width: 500px;
}
.hero-thumb-wrap .hero-thumb3 img {
  max-width: 350px;
}
.hero-thumb-wrap .hero-thumb4 img {
  max-width: 450px;
}
.hero-thumb-wrap .hero-thumb5 img {
  max-width: 360px;
}
.hero-thumb-wrap .hero-thumb6 img {
  max-width: 450px;
}
.jump-reverse {
  animation: jumpReverseAni 7s linear infinite;
}
@keyframes jumpReverseAni {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
.jump {
  animation: jumpAni 7s linear infinite;
}
.jump1 {
  animation: jumpAni 6s linear infinite;
}
.jump2 {
  animation: jumpAni 5s linear infinite;
}
.jump3 {
  animation: jumpAni 4s linear infinite;
}
@keyframes jumpAni {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
/********* single-counter-inner *********/
.counter-area {
  transform: translateY(-50%);
}
.counter-area-inner {
  background: var(--theme-color);
  padding: 50px 0 0 0;
  border-radius: 10px;
}
.single-counter-inner {
  margin-bottom: 50px;
}
.single-counter-inner h2 {
  font-size: 54px;
  font-weight: 500;
  color: var(--title-color);
}
.single-counter-inner p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--title-color);
}

/***inner-item***/
.inner-item {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.inner-item .al-batch {
  height: 50px;
  width: 50px;
  font-size: 14px;
  background: var(--theme-color);
  border-radius: 50%;
  position: absolute;
  right: -12px;
  top: -20px;
  line-height: 50px;
  color: #fff;
  font-weight: 600;
}
/* .inner-item .thumb img {
  transition: transform 5000ms cubic-bezier(.455, .030, .515, .955);
} */
/* .inner-item:hover .thumb img {
  transform: translateY(calc(-100% + 430px));
} */
.inner-item a {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: #1d1d1d;
  text-decoration: none;
  position: relative;
}
.inner-item a .thumb {
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 5px;
  margin-bottom: 15px;
  box-shadow: 0px 5px 50px 0px rgb(0 0 0 / 20%);
  min-height: 430px;
  transition: 0.6s;
}
.inner-item a .thumb:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}
.inner-item a img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scale(1) translateY(1);
  transition: transform 12s;
  display: block;
  width: 100%;
  height: initial;
}
.inner-item:hover a .thumb:after {
  visibility: visible;
  opacity: 1;
}
.header-item {
  display: block;
}
.header-item .thumb {
  position: relative;
  display: block;
}
.header-item .thumb:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  border-radius: 5px;
}
.header-item .thumb img {
  transition: 0.4s;
  border-radius: 5px;
}
.header-item:hover .thumb img {
  transform: scale(1.05);
}
.header-item:hover .thumb:after {
  visibility: visible;
  opacity: 1;
  transform: scale(1.05);
}

.inner-item.coming-soon a .thumb img {
  filter: blur(12px);
}
.cm-soon-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.inner-item:hover .cm-soon-title {
  color: #fff;
}
.inner-item .btn-group {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #fff;
  margin-top: -22px;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  gap: 20px;
  flex-wrap: wrap;
}
.inner-item .btn-group .at-btn {
  font-size: 14px;
  width: 100%;
  min-width: max-content;
  min-height: auto;
  padding: 20px 30px;
  display: inline-flex;
}
.inner-item .item-title {
  font-size: 18px;
  color: var(--body-color);
}
.inner-item:hover .btn-group {
  visibility: visible;
  opacity: 1;
}

/***section-title***/
.section-title {
  margin-bottom: 60px;
}
.section-title h5 {
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 6px;
}
.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--title-color);
}
.section-title p {
  font-size: 18px;
  font-weight: 400;
  color: var(--body-color);
}
/***default-padding***/
.pd-top-100 {
  padding-top: 100px;
}
.pd-top-47 {
  padding-top: 47px;
}
.pd-top-70 {
  padding-top: 70px;
}
.pd-top-87 {
  padding-top: 87px;
}
.pd-top-110 {
  padding-top: 110px;
}
.pd-top-120 {
  padding-top: 120px;
}
.pd-top-135 {
  padding-top: 135px;
}
.pd-top-130 {
  padding-top: 130px;
}
.pd-top-140 {
  padding-top: 140px;
}
.pd-top-150 {
  padding-top: 150px;
}

.pd-bottom-100 {
  padding-bottom: 100px;
}
.pd-bottom-97 {
  padding-bottom: 97px;
}
.pd-bottom-65 {
  padding-bottom: 65px;
}
.pd-bottom-105 {
  padding-bottom: 105px;
}
.pd-bottom-110 {
  padding-bottom: 110px;
}
.pd-bottom-120 {
  padding-bottom: 120px;
}
.pd-bottom-130 {
  padding-bottom: 130px;
}
.pd-bottom-140 {
  padding-bottom: 140px;
}
.pd-bottom-150 {
  padding-bottom: 150px;
}

@media all and (max-width: 1599px) {
  .banner-area {
    padding: 220px 0px 200px;
  }
  .hero-thumb-wrap .hero-thumb5 {
    left: 0;
  }
  .hero-thumb-wrap .hero-thumb4 img {
    max-width: 400px;
  }
  .hero-thumb-wrap .hero-thumb2 img {
    max-width: 360px;
  }
  .hero-thumb-wrap .hero-thumb3 {
    right: 20px;
  }
  .hero-thumb-wrap .hero-thumb6 img {
    max-width: 300px;
  }
  .hero-thumb-wrap .hero-thumb6 {
    bottom: -20px;
    margin-left: -150px;
  }
}
@media all and (max-width: 1199px) {
  .hero-thumb-wrap {
    display: none;
  }
  .banner-area .bg-image {
    opacity: 0.2;
    z-index: 0;
  }
  .banner-inner p {
    margin: 0 20px !important;
  }
  .at-btn {
    height: 50px;
    line-height: 50px;
  }
  .pd-top-140 {
    padding-top: 100px;
  }
  .pd-bottom-97 {
    padding-bottom: 57px;
  }
  .pd-top-87 {
    padding-top: 47px;
  }
  .banner-area {
    padding: 228px 0px 218px;
  }
  .banner-inner h1 {
    font-size: 64px;
  }
  .banner-area .sidebar-links .at-btn {
    padding: 0px 18px;
  }
  .inner-item a .thumb {
    min-height: 350px;
  }
}
@media all and (max-width: 991px) {
  .nav-right-part-mobile {
    display: block;
  }
  .banner-inner h1 {
    font-size: 48px;
  }
}
@media all and (max-width: 767px) {
  .counter-area {
    transform: none;
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .single-counter-inner h2 {
    font-size: 40px;
  }
  .single-counter-inner p {
    font-size: 16px;
  }
}
@media all and (max-width: 575px) {
  .nav-right-part-desktop {
    margin-left: 10px;
  }
  .section-title h5 {
    font-size: 18px;
  }
  .single-counter-inner h2 {
    font-size: 30px;
  }
  .banner-area {
      padding: 180px 0px 120px;
  }
}
@media all and (max-width: 767px) {
  .nav-right-part ul li .at-btn {
    display: none;
  }
  .nav-right-part-mobile ul li .cart {
    display: block;
  }
  .nav-right-part-desktop {
    margin-left: 0px;
  }
  .banner-inner h1 {
    line-height: 46px;
    font-size: 33px;
  }
  .banner-inner p {
    font-size: 18px;
    line-height: inherit;
    letter-spacing: 0;
  }
  .banner-inner p span {
    font-size: 20px;
  }
  .banner-area {
    padding: 180px 0px 100px;
  }
  .section-title h2 {
    font-size: 30px;
  }
  .at-btn {
    padding: 0 21px;
  }
  .footer-widget.pd-bottom-100 {
    padding-bottom: 70px;
  }
  .footer-widget h5 {
    font-size: 16px;
  }
  .main-logo img {
    width: 160px;
  }
}
@media all and (max-width: 320px) {
  .main-logo img {
    width: 110px;
  }
  .nav-right-part ul li {
    font-size: 15px;
  }
  .nav-right-part ul li a {
    padding: 0 7px;
  }
}
.featured-item {
  box-shadow: 0 0 40px rgb(82 85 90 / 10%);
  text-align: center;
  margin-bottom: 30px;
  padding: 40px 20px 35px 20px;
  background: #fff;
  border-radius: 5px;
  color: #1d1d1d;
  font-size: 22px;
}
.featured-item img {
  display: block;
  margin: 0 auto 20px;
  box-shadow: 0 0 40px rgb(82 85 90 / 20%);
  border-radius: 50%;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px 0;
  position: relative;
  z-index: 2;
}
.footer-bottom p {
  margin-bottom: 0;
  color: #fff;
}
.footer-bottom p a {
  color: var(--theme-color);
  text-decoration: none;
  font-weight: 600;
}
.footer-area {
  position: relative;
}
.footer-widget {
  position: relative;
  z-index: 9;
}
