/*
@File: Sekura Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Preloader Area CSS
** - Navbar Area CSS
** - Section Title CSS
** - Main Banner Area CSS
** - What We Do Area CSS
** - About Area CSS
** - Services Area CSS
** - Why Choose Us Area CSS
** - Fun Facts Area CSS
** - Projects Area CSS
** - Team Area CSS
** - Overview Area CSS
** - Products Area CSS
** - Testimonial Area CSS
** - Blog Area CSS
** - Subscribe Area CSS
** - Features Area CSS
** - Partner Area CSS
** - Pricing Area CSS
** - Page Banner Area CSS
** - Mission Vision Area CSS
** - Pagination Area CSS
** - FAQ Area CSS
** - Profile Authentication Area CSS
** - Privacy Policy Area CSS
** - Terms & Conditions Area CSS
** - Not Found Area CSS
** - Contact Us Area CSS
** - Widget Area CSS
** - Cart Area CSS
** - Wishlist Area CSS
** - Checkout Area CSS

*/
/*================================================
Default CSS
=================================================*/
:root {
  --fontFamily: "Libre Franklin", sans-serif;
  --primaryColor: #ff8405;
  --secondaryColor: #f9348d;
  --whiteColor: #ffffff;
  --blackColor: #0c0b0b;
  --paragraphColor: #646464;
  --fontSize: 15px;
  --transition: .6s;
  --primaryGradientColor: linear-gradient(135deg, #FF8405 0%, #F9348D 97.4%);
  --secondaryGradientColor: linear-gradient(90deg, #b601c4 0%, #9100dc 30.73%, #6500fd 64.06%, #0038fd 100%);
}

body {
  margin: 0;
  padding: 0;
  color: var(--paragraphColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--blackColor);
  font-weight: 800;
}

a {
  transition: var(--transition);
  color: var(--blackColor);
  text-decoration: none;
  outline: 0 !important;
}
a:hover {
  color: var(--blackColor);
  text-decoration: none;
}

:focus {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  color: var(--paragraphColor);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.8;
}
p:last-child {
  margin-bottom: 0;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

.ptb-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

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

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

.bg-F6F4F9 {
  background: #F6F4F9;
}

@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
.home-with-background-black-color {
  background-color: var(--blackColor);
}
.home-with-background-black-color .section-title h1, .home-with-background-black-color .section-title h2, .home-with-background-black-color .section-title h3, .home-with-background-black-color .section-title h4, .home-with-background-black-color .section-title h5, .home-with-background-black-color .section-title h6 {
  color: var(--whiteColor);
}
.home-with-background-black-color .section-title p {
  color: #A8A8A8;
}
.home-with-background-black-color .what-we-do-area {
  margin-top: -80px !important;
}
.home-with-background-black-color .what-we-do-card .content h3 a {
  color: var(--whiteColor);
}
.home-with-background-black-color .what-we-do-card .content .what-we-do-btn {
  background: var(--whiteColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-with-background-black-color .about-area {
  background: #131111;
}
.home-with-background-black-color .about-content h3 {
  color: var(--whiteColor);
}
.home-with-background-black-color .about-content p {
  color: #A8A8A8;
}

/*================================================
Default Btn Area CSS
=================================================*/
.default-btn {
  display: inline-flex;
  padding: 15px 35px;
  background: var(--primaryGradientColor);
  color: var(--whiteColor);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: var(--transition);
  border-radius: 8px;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.default-btn i {
  font-size: 20px;
  margin-left: 7px;
}
.default-btn::before {
  position: absolute;
  content: "";
  background: var(--secondaryGradientColor);
  height: 100%;
  width: 100%;
  left: 0;
  right: 9px;
  top: 0;
  border-radius: 8px;
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.default-btn:hover {
  color: var(--whiteColor);
}
.default-btn:hover::before {
  opacity: 1;
  visibility: visible;
}

.optional-btn {
  display: inline-flex;
  padding: 15px 35px;
  background: var(--primaryGradientColor);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: var(--transition);
  border-radius: 8px;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.optional-btn span {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}
.optional-btn span i {
  font-size: 20px;
  margin-left: 7px;
}
.optional-btn::after {
  position: absolute;
  content: "";
  background: #F6F4F9;
  border-radius: 8px;
  z-index: -1;
  transition: var(--transition);
  margin: 2px;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
}
.optional-btn:hover span {
  background: var(--whiteColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
}
.optional-btn:hover::after {
  background: var(--primaryGradientColor);
}
.optional-btn.with-white::after {
  background: var(--whiteColor);
}
.optional-btn.with-white:hover::after {
  background: var(--primaryGradientColor);
}

/*================================================
Section Title CSS
=================================================*/
.section-title {
  margin-bottom: 50px;
}
.section-title .sub {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  font-weight: 500;
}
.section-title h1, .section-title h2, .section-title h3, .section-title h4, .section-title h5, .section-title h6 {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 0;
}
.section-title p {
  max-width: 750px;
  margin: 15px auto 0;
  letter-spacing: 0.05em;
}

/*================================================
Preloader Text Area CSS
=================================================*/
.preloader-area {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: var(--primaryGradientColor);
}
.preloader-area .loader {
  left: 0;
  right: 0;
  top: 48%;
  position: absolute;
  transform: translateY(-48%);
}
.preloader-area .loader::before {
  display: none;
}
.preloader-area .loader .waviy span {
  animation: flip 2s infinite;
  color: var(--whiteColor);
  display: inline-block;
  animation-delay: 0.2s;
  font-size: 45px;
  font-weight: 800;
}
.preloader-area .loader .waviy span:nth-child(2) {
  animation-delay: 0.2s;
}
.preloader-area .loader .waviy span:nth-child(3) {
  animation-delay: 0.4s;
}
.preloader-area .loader .waviy span:nth-child(4) {
  animation-delay: 0.6s;
}
.preloader-area .loader .waviy span:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes flip {
  0%, 80% {
    transform: rotateY(360deg);
  }
}
/*
Preloader Spenner Area Style*/
.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: var(--whiteColor);
  top: 0;
  left: 0;
  z-index: 99999;
}
.preloader .lds-ripple {
  position: absolute;
  width: 80px;
  height: 80px;
  animation: spin-six 2.5s infinite cubic-bezier(0.17, 0.72, 0.55, 1.66);
  left: 50%;
  top: 50%;
  transform: translate(-40px, -50px);
}
.preloader .preloader-container {
  width: 80px;
  height: 80px;
}
.preloader .petal {
  position: absolute;
  width: 30%;
  height: 50%;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 50%;
  z-index: 2;
}
.preloader .petal::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0%;
  left: 0%;
  transform-origin: bottom center;
  border-radius: 50%;
  background: var(--secondaryGradientColor);
  z-index: 2;
  animation: opacity-nine 0.8s infinite linear;
  opacity: 1;
  border-left: 1px solid #ffffff;
}
.preloader .petal:nth-of-type(6) {
  transform: translate(-50%, 0%) rotate(225deg);
}
.preloader .petal:nth-of-type(6)::before {
  background-color: transparent;
  animation-delay: 0.5s;
}
.preloader .petal:nth-of-type(7) {
  transform: translate(-50%, 0%) rotate(270deg);
}
.preloader .petal:nth-of-type(7)::before {
  background-color: transparent;
  animation-delay: 0.6s;
}
.preloader .petal:nth-of-type(8) {
  transform: translate(-50%, 0%) rotate(315deg);
}
.preloader .petal:nth-of-type(8)::before {
  background-color: transparent;
  animation-delay: 0.7s;
}
.preloader .petal:nth-of-type(1) {
  transform: translate(-50%, 0%);
}
.preloader .petal:nth-of-type(1)::before {
  animation-delay: 0s;
}
.preloader .petal:nth-of-type(2) {
  transform: translate(-50%, 0%) rotate(45deg);
}
.preloader .petal:nth-of-type(2)::before {
  animation-delay: 0.1s;
}
.preloader .petal:nth-of-type(3) {
  transform: translate(-50%, 0%) rotate(90deg);
}
.preloader .petal:nth-of-type(3)::before {
  animation-delay: 0.2s;
}
.preloader .petal:nth-of-type(4) {
  transform: translate(-50%, 0%) rotate(135deg);
}
.preloader .petal:nth-of-type(4)::before {
  animation-delay: 0.3s;
}
.preloader .petal:nth-of-type(5) {
  transform: translate(-50%, 0%) rotate(180deg);
}
.preloader .petal:nth-of-type(5)::before {
  animation-delay: 0.4s;
}
.preloader .petal-1 {
  position: absolute;
  width: 30%;
  height: 50%;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 50%;
  z-index: -1;
}
.preloader .petal-1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0%;
  left: 0%;
  transform-origin: bottom center;
  border-radius: 50%;
  background: var(--secondaryGradientColor);
  z-index: 2;
  animation: opacity-nine 0.8s infinite linear;
  opacity: 1;
}
.preloader .petal-1:nth-of-type(9) {
  transform: translate(-50%, 0%) rotate(225deg);
}
.preloader .petal-1:nth-of-type(9)::before {
  animation-delay: 0.5s;
}
.preloader .petal-1:nth-of-type(10) {
  transform: translate(-50%, 0%) rotate(270deg);
}
.preloader .petal-1:nth-of-type(10)::before {
  animation-delay: 0.6s;
}
.preloader .petal-1:nth-of-type(11) {
  transform: translate(-50%, 0%) rotate(315deg);
}
.preloader .petal-1:nth-of-type(11)::before {
  animation-delay: 0.7s;
}
.preloader .ball {
  position: absolute;
  width: 28%;
  height: 28%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: var(--primaryGradientColor);
  z-index: 3;
}
.preloader.preloader-deactivate {
  visibility: hidden;
}
.preloader.preloader-img img {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
}
.preloader .text-center {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
}

@keyframes opacity-nine {
  0% {
    opacity: 1;
  }
  95% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
  }
}
/*================================================
Main Banner Area CSS
=================================================*/
.main-banner-area {
  background-image: url(../../assets/images/main-banner/video-bg.gif);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
.main-banner-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.main-banner-content h1, .main-banner-content h2, .main-banner-content h3, .main-banner-content h4, .main-banner-content h5, .main-banner-content h6 {
  font-size: 80px;
  color: var(--whiteColor);
  margin-bottom: 15px;
  font-weight: 800;
}
.main-banner-content h1 .security, .main-banner-content h2 .security, .main-banner-content h3 .security, .main-banner-content h4 .security, .main-banner-content h5 .security, .main-banner-content h6 .security {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main-banner-content h1 .data, .main-banner-content h2 .data, .main-banner-content h3 .data, .main-banner-content h4 .data, .main-banner-content h5 .data, .main-banner-content h6 .data {
  background: var(--secondaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main-banner-content p {
  letter-spacing: 0.05em;
  color: #ECECEC;
  max-width: 565px;
  margin-bottom: 0;
}
.main-banner-content .banner-btn {
  margin-top: 30px;
}
.main-banner-content .banner-btn .default-btn {
  background: var(--secondaryGradientColor);
}
.main-banner-content .banner-btn .default-btn::before {
  background: var(--primaryGradientColor);
}
.main-banner-content .banner-partner-swiper {
  margin-top: 120px;
  max-width: 750px;
  margin-left: 0;
}
.main-banner-content .banner-partner-swiper .swiper-wrapper .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-banner-image {
  position: relative;
  z-index: 1;
  padding-left: 100px;
  padding-bottom: 145px;
}
.main-banner-image .main-img {
  border-radius: 30px;
}
.main-banner-image .bottom-image {
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-banner-image .bottom-image img {
  border-radius: 20px;
}
.main-banner-image .shape1 {
  position: absolute;
  top: 50px;
  left: -35px;
  z-index: -1;
}
.main-banner-image .shape1 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.main-banner-image .shape2 {
  position: absolute;
  bottom: -20px;
  right: 140px;
  z-index: -1;
}
.main-banner-image .shape2 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.main-banner-area-with-line {
  background: rgba(251, 251, 251, 0.9);
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 265px;
  padding-bottom: 120px;
}
.main-banner-area-with-line .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.main-banner-line-content {
  max-width: 675px;
}
.main-banner-line-content h1, .main-banner-line-content h2, .main-banner-line-content h3, .main-banner-line-content h4, .main-banner-line-content h5, .main-banner-line-content h6 {
  font-size: 80px;
  margin-bottom: 15px;
  font-weight: 800;
}
.main-banner-line-content h1 span, .main-banner-line-content h2 span, .main-banner-line-content h3 span, .main-banner-line-content h4 span, .main-banner-line-content h5 span, .main-banner-line-content h6 span {
  background: linear-gradient(90deg, #FF8405 0%, #FF7448 21.17%, #F9348D 49.01%, #B601C4 67.29%, #9100DC 81.21%, #6500FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 900;
}
.main-banner-line-content p {
  letter-spacing: 0.05em;
  margin-bottom: 0;
  max-width: 555px;
}
.main-banner-line-content .banner-btn {
  margin-top: 30px;
}
.main-banner-line-content .banner-btn .default-btn {
  background: var(--secondaryGradientColor);
}
.main-banner-line-content .banner-btn .default-btn::before {
  background: var(--primaryGradientColor);
}

.main-banner-line-image {
  position: relative;
  padding-left: 75px;
}
.main-banner-line-image .key {
  position: absolute;
  left: -45px;
  top: -25px;
}
.main-banner-line-image .lock {
  position: absolute;
  bottom: 30px;
  left: -135px;
}

.banner-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 90vw;
  z-index: -1;
}
.banner-lines .line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: #F0F0F0;
  overflow: hidden;
}
.banner-lines .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
  animation: run 15s 0s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  border-radius: 50%;
}
.banner-lines .line:nth-child(1) {
  margin-left: -45.5%;
}
.banner-lines .line:nth-child(2) {
  margin-left: -35.5%;
}
.banner-lines .line:nth-child(3) {
  margin-left: -24%;
}
.banner-lines .line:nth-child(4) {
  margin-left: -12.5%;
}
.banner-lines .line:nth-child(5) {
  margin-left: 45.5%;
}
.banner-lines .line:nth-child(6) {
  margin-left: 35.5%;
}
.banner-lines .line:nth-child(7) {
  margin-left: 24%;
}
.banner-lines .line:nth-child(8) {
  margin-left: 12.5%;
}

@keyframes run {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
.main-banner-wrap-area {
  background-image: url(../../assets/images/main-banner/banner-wrap-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 400px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.main-banner-wrap-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(38, 20, 58, 0.45) 0%, rgba(38, 20, 58, 0.81) 100%);
  z-index: -1;
}

.main-banner-wrap-content {
  text-align: center;
}
.main-banner-wrap-content h1, .main-banner-wrap-content h2, .main-banner-wrap-content h3, .main-banner-wrap-content h4, .main-banner-wrap-content h5, .main-banner-wrap-content h6 {
  font-size: 72px;
  margin-bottom: 18px;
  color: var(--whiteColor);
  font-weight: 900;
}
.main-banner-wrap-content h1 span, .main-banner-wrap-content h2 span, .main-banner-wrap-content h3 span, .main-banner-wrap-content h4 span, .main-banner-wrap-content h5 span, .main-banner-wrap-content h6 span {
  background: linear-gradient(90deg, #FF8405 0%, #FF7448 21.17%, #F9348D 49.01%, #B601C4 67.29%, #9100DC 81.21%, #6500FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  filter: drop-shadow(2px 2px #fff);
  letter-spacing: 1px;
}
.main-banner-wrap-content p {
  letter-spacing: 0.05em;
  color: #ECECEC;
  max-width: 750px;
  margin: auto;
}
.main-banner-wrap-content .banner-btn {
  margin-top: 30px;
}

.main-banner-wrap-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: -1;
}

/*================================================
What We Do Area CSS
=================================================*/
.what-we-do-area {
  position: relative;
  z-index: 1;
}
.what-we-do-area.home-with-background-black-color {
  margin-top: -80px;
}

.what-we-do-card {
  margin-bottom: 25px;
}
.what-we-do-card .content {
  margin-left: 25px;
}
.what-we-do-card .content h3 {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: bold;
}
.what-we-do-card .content h3 a {
  color: var(--blackColor);
  transition: var(--transition);
}
.what-we-do-card .content h3 a:hover {
  color: var(--secondaryColor);
}
.what-we-do-card .content .what-we-do-btn {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.what-we-do-card .content .what-we-do-btn i {
  font-size: 18px;
  margin-left: 7px;
}

.what-we-do-shape1 {
  position: absolute;
  top: 25%;
  left: 20%;
  transform: translateY(-25%) translateX(-20%);
  z-index: -1;
}
.what-we-do-shape1 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.what-we-do-shape2 {
  position: absolute;
  top: 32%;
  right: 15%;
  transform: translateY(-32%) translateX(-15%);
  z-index: -1;
}
.what-we-do-shape2 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*================================================
About Area CSS
=================================================*/
.about-area {
  position: relative;
  z-index: 1;
}
.about-area.reducing-bottom .about-shape1 {
  bottom: 45px;
  right: 15%;
  transform: translateX(-15%);
  max-width: 200px;
}
.about-area.background-black-color {
  background: #131111;
}
.about-area.background-black-color .about-content h3 {
  color: var(--whiteColor);
}
.about-area.background-black-color .about-content p {
  color: #A8A8A8;
}

.about-image {
  position: relative;
  z-index: 1;
  padding: 20px 100px 45px 30px;
}
.about-image .wrap1 {
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: -1;
}
.about-image .wrap2 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  max-width: 375px;
}
.about-image .wrap3 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.about-image .wrap4 {
  position: absolute;
  right: 55px;
  bottom: 55px;
}

.about-content {
  padding-left: 50px;
}
.about-content span {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 15px;
}
.about-content h3 {
  font-size: 45px;
  margin-bottom: 25px;
}
.about-content p {
  max-width: 485px;
}
.about-content .about-btn {
  margin-top: 30px;
}

.about-shape1 {
  position: absolute;
  bottom: -50px;
  right: 8%;
  transform: translateX(-8%);
  z-index: -1;
  animation: moveleftbounce 3s linear infinite;
}

.about-shape2 {
  position: absolute;
  right: 150px;
  top: 0;
  opacity: 0.6;
  z-index: -1;
}
.about-shape2 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
  overflow: hidden;
}
.services-area .container-fluid {
  overflow: hidden;
  left: calc((100% - 1320px) / 2);
  position: relative;
}
.services-area.services-area-with-shape {
  position: relative;
  z-index: 1;
}
.services-area.services-area-with-shape .services-card {
  padding: 130px 40px 40px 40px;
}
.services-area.services-area-with-shape .services-card::after {
  margin: 15px;
}
.services-area .swiper-pointer-events {
  z-index: 2;
}

.services-card {
  margin-bottom: 25px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  background: var(--whiteColor);
  border-radius: 10px;
  padding: 130px 65px 65px 55px;
}
.services-card::after {
  position: absolute;
  content: "";
  background: linear-gradient(135deg, rgba(255, 132, 5, 0.1) 0%, rgba(249, 52, 141, 0.1) 97.4%);
  border-radius: 10px;
  z-index: -1;
  transition: var(--transition);
  margin: 20px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.services-card .image {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  text-align: center;
}
.services-card .image::after {
  position: absolute;
  content: "";
  background: var(--primaryGradientColor);
  border-radius: 10px;
  z-index: -1;
  transition: var(--transition);
  margin: 10px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
}
.services-card .content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.services-card .content h3 a {
  color: var(--blackColor);
  transition: var(--transition);
}
.services-card .content h3 a:hover {
  color: var(--secondaryColor);
}
.services-card .content p {
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.services-card .content .services-btn {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.services-card .content .services-btn i {
  font-size: 18px;
  margin-left: 7px;
}
.services-card.bg-2::after {
  background: linear-gradient(90deg, rgba(182, 1, 196, 0.1) 0%, rgba(145, 0, 220, 0.1) 30.73%, rgba(101, 0, 253, 0.1) 64.06%, rgba(0, 56, 253, 0.1) 100%);
}
.services-card.bg-2 .image::after {
  background: var(--secondaryGradientColor);
}
.services-card.bg-3::after {
  background: linear-gradient(323.64deg, rgba(255, 235, 28, 0.1) -40.48%, rgba(231, 227, 32, 0.1) -18.77%, rgba(169, 205, 41, 0.1) 28.27%, rgba(71, 171, 55, 0.1) 95.2%, rgba(0, 146, 66, 0.1) 140.42%);
}
.services-card.bg-3 .image::after {
  background: linear-gradient(323.64deg, #FFEB1C -40.48%, #E7E320 -18.77%, #A9CD29 28.27%, #47AB37 95.2%, #009242 140.42%);
}
.services-card.bg-4::after {
  background: linear-gradient(135deg, rgba(255, 132, 5, 0.1) 0%, rgba(249, 52, 141, 0.1) 97.4%);
}
.services-card.bg-4 .image::after {
  background: var(--primaryGradientColor);
}
.services-card.bg-5::after {
  background: linear-gradient(90deg, rgba(182, 1, 196, 0.1) 0%, rgba(145, 0, 220, 0.1) 30.73%, rgba(101, 0, 253, 0.1) 64.06%, rgba(0, 56, 253, 0.1) 100%);
}
.services-card.bg-5 .image::after {
  background: var(--secondaryGradientColor);
}
.services-card.bg-6::after {
  background: linear-gradient(135deg, rgba(255, 132, 5, 0.1) 0%, rgba(249, 52, 141, 0.1) 97.4%);
}
.services-card.bg-6 .image::after {
  background: var(--primaryGradientColor);
}
.services-card.bg-7::after {
  background: linear-gradient(90deg, rgba(182, 1, 196, 0.1) 0%, rgba(145, 0, 220, 0.1) 30.73%, rgba(101, 0, 253, 0.1) 64.06%, rgba(0, 56, 253, 0.1) 100%);
}
.services-card.bg-7 .image::after {
  background: var(--secondaryGradientColor);
}
.services-card.bg-8::after {
  background: linear-gradient(323.64deg, rgba(255, 235, 28, 0.1) -40.48%, rgba(231, 227, 32, 0.1) -18.77%, rgba(169, 205, 41, 0.1) 28.27%, rgba(71, 171, 55, 0.1) 95.2%, rgba(0, 146, 66, 0.1) 140.42%);
}
.services-card.bg-8 .image::after {
  background: linear-gradient(323.64deg, #FFEB1C -40.48%, #E7E320 -18.77%, #A9CD29 28.27%, #47AB37 95.2%, #009242 140.42%);
}
.services-card.bg-9::after {
  background: linear-gradient(135deg, rgba(255, 132, 5, 0.1) 0%, rgba(249, 52, 141, 0.1) 97.4%);
}
.services-card.bg-9 .image::after {
  background: var(--primaryGradientColor);
}
.services-card.bg-10::after {
  background: linear-gradient(90deg, rgba(182, 1, 196, 0.1) 0%, rgba(145, 0, 220, 0.1) 30.73%, rgba(101, 0, 253, 0.1) 64.06%, rgba(0, 56, 253, 0.1) 100%);
}
.services-card.bg-10 .image::after {
  background: var(--secondaryGradientColor);
}

.services-slide-swiper {
  position: relative;
  z-index: 9;
}

.services-area-with-wrap {
  overflow: hidden;
}
.services-area-with-wrap .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.services-with-simple-slide {
  display: flex;
  position: relative;
  padding-left: 112px;
}
.services-with-simple-slide .slide {
  flex: 1;
  transition: var(--transition);
  position: relative;
  margin-right: 5px;
}
.services-with-simple-slide .slide:last-child {
  margin-right: 0;
}
.services-with-simple-slide .slide .image {
  background-image: url(../../assets/images/services/services-main1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 680px;
}
.services-with-simple-slide .slide .image.bg-2 {
  background-image: url(../../assets/images/services/services-main2.jpg);
}
.services-with-simple-slide .slide .image.bg-3 {
  background-image: url(../../assets/images/services/services-main3.jpg);
}
.services-with-simple-slide .slide .image.bg-4 {
  background-image: url(../../assets/images/services/services-main4.jpg);
}
.services-with-simple-slide .slide .content {
  padding-top: 30px;
  transition: var(--transition);
  opacity: 1;
  visibility: visible;
  text-align: center;
}
.services-with-simple-slide .slide .content h3 {
  font-size: 22px;
  margin-bottom: 0;
}
.services-with-simple-slide .slide .content h3 a {
  color: var(--blackColor);
  transition: var(--transition);
}
.services-with-simple-slide .slide .content h3 a:hover {
  color: var(--secondaryColor);
}
.services-with-simple-slide .slide .bottom-content {
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--whiteColor);
  width: 100%;
  padding-top: 35px;
  padding-left: 35px;
  padding-right: 35px;
}
.services-with-simple-slide .slide .bottom-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.services-with-simple-slide .slide .bottom-content h3 a {
  color: var(--blackColor);
  transition: var(--transition);
}
.services-with-simple-slide .slide .bottom-content h3 a:hover {
  color: var(--secondaryColor);
}
.services-with-simple-slide .slide .bottom-content p {
  max-width: 520px;
}
.services-with-simple-slide .slide .bottom-content .services-btn {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.services-with-simple-slide .slide .bottom-content .services-btn i {
  font-size: 18px;
  margin-left: 7px;
}
.services-with-simple-slide .slide:hover {
  flex: 3;
}
.services-with-simple-slide .slide:hover .content {
  opacity: 0;
  visibility: hidden;
}
.services-with-simple-slide .slide:hover .bottom-content {
  opacity: 1;
  visibility: visible;
}

.services-item {
  margin-bottom: 25px;
}
.services-item .services-image {
  overflow: hidden;
}
.services-item .services-image a img {
  transition: var(--transition);
}
.services-item .services-content {
  padding-top: 35px;
  padding-left: 30px;
  padding-right: 30px;
}
.services-item .services-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.services-item .services-content h3 a {
  color: #E6E6E6;
}
.services-item .services-content p {
  color: #A8A8A8;
}
.services-item .services-content .services-btn {
  color: var(--whiteColor);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.services-item .services-content .services-btn i {
  font-size: 18px;
  margin-left: 7px;
}
.services-item:hover .services-image a img {
  transform: scale(1.2);
}

.services-shape1 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.mt-minus-50 {
  margin-top: -50px !important;
  position: relative;
}

.services-area-without-fluid {
  background-color: var(--blackColor);
}
.services-area-without-fluid .section-title h1, .services-area-without-fluid .section-title h2, .services-area-without-fluid .section-title h3, .services-area-without-fluid .section-title h4, .services-area-without-fluid .section-title h5, .services-area-without-fluid .section-title h6 {
  color: var(--whiteColor);
}
.services-area-without-fluid .section-title p {
  color: #a8a8a8;
}

/*================================================
Why Choose Us Area CSS
=================================================*/
.why-choose-us-area {
  position: relative;
  z-index: 1;
}
.why-choose-us-area.bg-131111 {
  overflow: hidden;
  background-color: #131111;
}
.why-choose-us-area.bg-131111 .why-choose-us-content h3 {
  color: var(--whiteColor);
}
.why-choose-us-area.bg-131111 .why-choose-us-content p {
  color: #A8A8A8;
}
.why-choose-us-area.bg-131111 .why-choose-us-content .list li {
  background: rgba(255, 255, 255, 0.05);
  color: #A8A8A8;
}
.why-choose-us-area.bg-131111 .why-choose-us-image {
  margin-left: -30px;
  position: relative;
}
.why-choose-us-area.bg-131111 .why-choose-us-image .wrap1 {
  position: absolute;
  right: -100px;
  top: 0;
  z-index: -1;
}
.why-choose-us-area.bg-131111 .why-choose-us-image .wrap1 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.why-choose-us-area.bg-131111 .why-choose-us-image .wrap2 {
  position: absolute;
  right: 30px;
  bottom: 10px;
}
.why-choose-us-area.bg-131111 .why-choose-us-image .wrap2 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.why-choose-us-content span {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 15px;
}
.why-choose-us-content h3 {
  font-size: 45px;
  margin-bottom: 15px;
}
.why-choose-us-content p {
  margin-bottom: 20px;
  max-width: 480px;
}
.why-choose-us-content .list {
  padding-left: 0;
  margin-bottom: 0;
}
.why-choose-us-content .list li {
  display: inline-block;
  list-style-type: none;
  background-color: var(--whiteColor);
  border-radius: 30px;
  letter-spacing: 0.02em;
  color: #504E4E;
  position: relative;
  padding: 12px 20px 12px 42px;
  margin-bottom: 20px;
}
.why-choose-us-content .list li:last-child {
  margin-bottom: 0;
}
.why-choose-us-content .list li i {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.why-choose-us-content .choose-btn {
  margin-top: 25px;
}

.why-choose-us-image {
  margin-left: -115px;
}

.why-choose-us-shape1 {
  position: absolute;
  left: 0;
  top: -365px;
  z-index: -2;
}

.why-choose-us-shape2 {
  position: absolute;
  right: 0;
  top: -55px;
  z-index: -1;
}

/*================================================
Fun Facts Area CSS
=================================================*/
.fun-facts-area.bg-131111 {
  background-color: #131111;
}
.fun-facts-area.bg-131111 .fun-facts-card .content span {
  color: #A8A8A8;
}
.fun-facts-area.bg-black {
  background-color: var(--blackColor) !important;
}
.fun-facts-area.bg-black .fun-facts-card .content span {
  color: #A8A8A8;
}

.fun-facts-card {
  margin-bottom: 25px;
  position: relative;
  padding-left: 90px;
}
.fun-facts-card .image {
  position: absolute;
  left: 0;
  top: 8px;
}
.fun-facts-card .content h3 {
  display: inline-block;
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 45px;
  margin-bottom: 10px;
  font-weight: 900;
}
.fun-facts-card .content span {
  color: var(--paragraphColor);
  font-size: 14px;
  display: block;
}

/*================================================
Projects Area CSS
=================================================*/
.projects-area {
  position: relative;
  z-index: 1;
}
.projects-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--whiteColor);
  width: 100%;
  height: 435px;
  z-index: -1;
}

.projects-with-simple-slide {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  margin-bottom: 50px;
}
.projects-with-simple-slide .slide {
  cursor: pointer;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
  transition: all 0.5s ease-in-out;
  padding: 50px 80px;
  position: relative;
}
.projects-with-simple-slide .slide.bg-1 {
  background: var(--secondaryGradientColor);
  box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}
.projects-with-simple-slide .slide.bg-2 {
  background: linear-gradient(323.64deg, #FFEB1C -40.48%, #E7E320 -18.77%, #A9CD29 28.27%, #47AB37 95.2%, #009242 140.42%);
  border-radius: 20px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  z-index: -1;
}
.projects-with-simple-slide .slide.bg-3 {
  background: var(--primaryGradientColor);
  border-radius: 20px;
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  z-index: -1;
}
.projects-with-simple-slide .slide .projects-content h3 {
  font-size: 45px;
  margin-bottom: 15px;
}
.projects-with-simple-slide .slide .projects-content h3 a {
  color: var(--whiteColor);
  transition: var(--transition);
}
.projects-with-simple-slide .slide .projects-content h3 a:hover {
  color: var(--secondaryColor);
}
.projects-with-simple-slide .slide .projects-content p {
  color: #EFEFEF;
  margin-bottom: 0;
  max-width: 475px;
}
.projects-with-simple-slide .slide .projects-content .projects-btn {
  margin-top: 30px;
}
.projects-with-simple-slide .slide .projects-content .projects-btn .default-btn {
  background: var(--secondaryGradientColor);
}
.projects-with-simple-slide .slide .projects-content .projects-btn .default-btn::before {
  background: var(--primaryGradientColor);
}
.projects-with-simple-slide .slide:hover {
  z-index: 9;
}
.projects-with-simple-slide.wrap-style-two .slide.bg-1 {
  background: linear-gradient(323.64deg, #FFEB1C -40.48%, #E7E320 -18.77%, #A9CD29 28.27%, #47AB37 95.2%, #009242 140.42%);
}
.projects-with-simple-slide.wrap-style-two .slide.bg-2 {
  background: var(--secondaryGradientColor);
}

.projects-wrap-area.bg-black {
  background-color: var(--blackColor) !important;
}
.projects-wrap-area .section-title h1, .projects-wrap-area .section-title h2, .projects-wrap-area .section-title h3, .projects-wrap-area .section-title h4, .projects-wrap-area .section-title h5, .projects-wrap-area .section-title h6 {
  color: var(--whiteColor);
}
.projects-wrap-area .section-title p {
  color: #a8a8a8;
}
.projects-wrap-area .projects-with-simple-slide .slide.bg-3 {
  z-index: 1;
}

.projects-card {
  margin-bottom: 25px;
  padding: 50px 25px 50px 50px;
}
.projects-card.bg-1 {
  background: var(--primaryGradientColor);
  box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}
.projects-card.bg-1 .projects-content .projects-btn .default-btn {
  background: var(--secondaryGradientColor);
}
.projects-card.bg-1 .projects-content .projects-btn .default-btn::before {
  background: var(--primaryGradientColor);
}
.projects-card.bg-2 {
  background: var(--secondaryGradientColor);
  box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}
.projects-card.bg-3 {
  background: linear-gradient(323.64deg, #FFEB1C -40.48%, #E7E320 -18.77%, #A9CD29 28.27%, #47AB37 95.2%, #009242 140.42%);
  box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 80px;
}
.projects-card.bg-3 .projects-content {
  padding-right: 45px;
}
.projects-card.bg-3 .projects-content h3 {
  font-size: 45px;
}
.projects-card.bg-3 .projects-content .projects-btn .default-btn {
  background: var(--secondaryGradientColor);
}
.projects-card.bg-3 .projects-content .projects-btn .default-btn::before {
  background: var(--primaryGradientColor);
}
.projects-card.bg-3 .projects-image {
  margin-left: 0;
}
.projects-card.bg-4 {
  background: var(--primaryGradientColor);
  box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}
.projects-card.bg-4 .projects-content .projects-btn .default-btn {
  background: var(--secondaryGradientColor);
}
.projects-card.bg-4 .projects-content .projects-btn .default-btn::before {
  background: var(--primaryGradientColor);
}
.projects-card.bg-5 {
  background: var(--secondaryGradientColor);
  box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}
.projects-card .projects-content h3 {
  font-size: 32px;
  margin-bottom: 15px;
}
.projects-card .projects-content h3 a {
  color: var(--whiteColor);
}
.projects-card .projects-content p {
  letter-spacing: 0.05em;
  color: #EFEFEF;
  margin-bottom: 0;
}
.projects-card .projects-content .projects-btn {
  margin-top: 25px;
}
.projects-card .projects-image {
  margin-left: -100px;
}

/*================================================
Team Area CSS
=================================================*/
.team-area {
  position: relative;
  z-index: 1;
}

.team-card {
  margin-bottom: 25px;
  transition: var(--transition);
}
.team-card .team-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.team-card .team-image img {
  transition: var(--transition);
  border-radius: 10px;
}
.team-card .team-image .social-links {
  position: absolute;
  right: 0;
  bottom: -30px;
  background-color: var(--whiteColor);
  border-radius: 10px 0px;
  padding: 20px;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.team-card .team-image .social-links li {
  display: inline-block;
  margin-right: 25px;
}
.team-card .team-image .social-links li:last-child {
  margin-right: 0;
}
.team-card .team-image .social-links li a i {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-size: 18px;
}
.team-card .team-content {
  margin-top: 25px;
}
.team-card .team-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.team-card .team-content span {
  letter-spacing: 0.02em;
}
.team-card:hover {
  transform: translateY(-5px);
}
.team-card:hover .team-image img {
  transform: scale(1.1);
}
.team-card:hover .team-image .social-links {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.team-shape1 {
  position: absolute;
  right: 50px;
  top: -80px;
  z-index: -1;
  animation: moveleftbounce 3s linear infinite;
}

/*================================================
Overview Area CSS
=================================================*/
.overview-area {
  position: relative;
  z-index: 1;
}
.overview-area::before {
  position: absolute;
  content: "";
  background: #F6F4F9;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 230px;
  z-index: -1;
}
.overview-area.without-before-color::before {
  display: none;
}

.overview-inner-area {
  background-image: url(../../assets/images/overview/overview-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 100px;
  padding-right: 100px;
}

.overview-content {
  text-align: center;
}
.overview-content h4 {
  color: var(--whiteColor);
  font-size: 20px;
  letter-spacing: 0.5em;
  margin-top: 20px;
  margin-bottom: 0;
}
.overview-content .overview-btn {
  margin-top: 30px;
}

.overview-shape1 {
  position: absolute;
  left: -30px;
  top: -30px;
  z-index: -1;
}
.overview-shape1 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.overview-shape2 {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: -1;
  animation: moveleftbounce 4s linear infinite;
}

.overview-shape3 {
  position: absolute;
  bottom: 15%;
  left: 25%;
  transform: translateY(-15%) translateX(-25%);
  z-index: -1;
  animation: moveleftbounce 3s linear infinite;
}

.overview-shape4 {
  position: absolute;
  bottom: -25px;
  right: 200px;
  z-index: -1;
}
.overview-shape4 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*================================================
Products Area CSS
=================================================*/
.products-area {
  position: relative;
  z-index: 1;
}

.products-card {
  margin-bottom: 25px;
}
.products-card .products-image {
  position: relative;
  text-align: center;
}
.products-card .products-image .products-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
}
.products-card .products-image .products-btn .add-to-cart-btn {
  display: inline-flex;
  padding: 17px 35px;
  background: var(--primaryGradientColor);
  color: var(--whiteColor);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: var(--transition);
  border-radius: 8px;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.products-card .products-image .products-btn .add-to-cart-btn i {
  font-size: 20px;
  margin-left: 7px;
}
.products-card .products-image .products-btn .add-to-cart-btn::before {
  position: absolute;
  content: "";
  background: var(--secondaryGradientColor);
  height: 100%;
  width: 100%;
  left: 0;
  right: 9px;
  top: 0;
  border-radius: 8px;
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.products-card .products-image .products-btn .add-to-cart-btn:hover {
  color: var(--whiteColor);
}
.products-card .products-image .products-btn .add-to-cart-btn:hover::before {
  opacity: 1;
  visibility: visible;
}
.products-card .products-image .products-btn .add-to-cart-btn.added {
  display: none;
}
.products-card .products-image .products-btn .wc-forward {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
  margin-left: 15px;
  padding: 14px 25px;
  border-radius: 8px;
  transition: var(--transition);
}
.products-card .products-image .products-btn .wc-forward:hover {
  background-color: var(--blackColor);
}
.products-card .products-image img {
  border-radius: 10px;
}
.products-card .products-image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(12, 11, 11, 0.6);
  border-radius: 10px;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.products-card .products-image .sale {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: var(--blackColor);
  color: var(--whiteColor);
  padding: 2px 10px;
  font-size: 15px;
  border-radius: 5px;
}
.products-card .products-content {
  margin-top: 25px;
}
.products-card .products-content h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.products-card .products-content h3 a {
  color: var(--blackColor);
}
.products-card .products-content h3 a:hover {
  color: var(--secondaryColor);
}
.products-card .products-content .price {
  font-size: 18px;
  display: block;
  margin-top: 15px;
  letter-spacing: 0.02em;
}
.products-card .products-content .price ins {
  text-decoration: none;
  margin-left: 15px;
}
.products-card:hover .products-image .products-btn {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.products-card:hover .products-image::before {
  opacity: 1;
  visibility: visible;
}

.products-shape1 {
  position: absolute;
  top: 8%;
  left: 15%;
  transform: translateY(-8%) translateX(-15%);
  z-index: -1;
  animation: moveleftbounce 3s linear infinite;
}

.products-shape2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

/*================================================
Testimonial Area CSS
=================================================*/
.testimonial-area {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.testimonial-area .section-title h1, .testimonial-area .section-title h2, .testimonial-area .section-title h3, .testimonial-area .section-title h4, .testimonial-area .section-title h5, .testimonial-area .section-title h6 {
  color: var(--whiteColor);
}
.testimonial-area .section-title p {
  color: var(--whiteColor);
}

.testimonial-area-with-wrap {
  overflow: hidden;
}
.testimonial-area-with-wrap .section-title p {
  margin-left: 0;
  max-width: 735px;
}

.testimonial-slide-swiper {
  max-width: 1070px;
  margin: auto;
}
.testimonial-slide-swiper .swiper-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  left: auto;
  text-align: end;
}
.testimonial-slide-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #DFCDCD;
  opacity: 1;
  margin: 0 7px;
}
.testimonial-slide-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primaryGradientColor);
  transform: scale(1.5);
}

.testimonial-item {
  position: relative;
  padding-left: 245px;
}
.testimonial-item .image {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 200px;
}
.testimonial-item .content p {
  font-size: 20px;
  color: var(--whiteColor);
  margin-bottom: 0;
}
.testimonial-item .content .info {
  margin-top: 30px;
}
.testimonial-item .content .info h3 {
  font-size: 18px;
  color: var(--whiteColor);
  font-weight: 500;
  margin-bottom: 0;
}
.testimonial-item .content .info span {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  letter-spacing: 0.05em;
  margin-top: 10px;
  font-weight: 500;
}

.testimonial-card {
  background: linear-gradient(90deg, rgba(182, 1, 196, 0.1) 0%, rgba(145, 0, 220, 0.1) 30.73%, rgba(101, 0, 253, 0.1) 64.06%, rgba(0, 56, 253, 0.1) 100%);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
}
.testimonial-card .info {
  margin-bottom: 20px;
}
.testimonial-card .info .image img {
  max-width: 80px;
}
.testimonial-card .info .title {
  margin-left: 20px;
}
.testimonial-card .info .title h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.testimonial-card .info .title span {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.testimonial-card .info .title .rating {
  margin-top: 10px;
}
.testimonial-card .info .title .rating li {
  display: inline-block;
  margin-right: 2px;
}
.testimonial-card .info .title .rating li:last-child {
  margin-right: 0;
}
.testimonial-card .info .title .rating li i {
  color: #F0C005;
}
.testimonial-card .content p {
  color: #3C3C3C;
}
.testimonial-card.bg-2 {
  background: linear-gradient(135deg, rgba(255, 132, 5, 0.1) 0%, rgba(249, 52, 141, 0.1) 97.4%);
}
.testimonial-card.bg-3 {
  background: linear-gradient(323.64deg, rgba(255, 235, 28, 0.1) -40.48%, rgba(231, 227, 32, 0.1) -18.77%, rgba(169, 205, 41, 0.1) 28.27%, rgba(71, 171, 55, 0.1) 95.2%, rgba(0, 146, 66, 0.1) 140.42%);
}
.testimonial-card.bg-4 {
  background: linear-gradient(135deg, rgba(255, 132, 5, 0.1) 0%, rgba(249, 52, 141, 0.1) 97.4%);
}
.testimonial-card.bg-5 {
  background: linear-gradient(323.64deg, rgba(255, 235, 28, 0.1) -40.48%, rgba(231, 227, 32, 0.1) -18.77%, rgba(169, 205, 41, 0.1) 28.27%, rgba(71, 171, 55, 0.1) 95.2%, rgba(0, 146, 66, 0.1) 140.42%);
}
.testimonial-card.bg-6 {
  background: linear-gradient(90deg, rgba(182, 1, 196, 0.1) 0%, rgba(145, 0, 220, 0.1) 30.73%, rgba(101, 0, 253, 0.1) 64.06%, rgba(0, 56, 253, 0.1) 100%);
}
.testimonial-card.bg-7 {
  background: linear-gradient(323.64deg, rgba(255, 235, 28, 0.1) -40.48%, rgba(231, 227, 32, 0.1) -18.77%, rgba(169, 205, 41, 0.1) 28.27%, rgba(71, 171, 55, 0.1) 95.2%, rgba(0, 146, 66, 0.1) 140.42%);
}
.testimonial-card.bg-8 {
  background: linear-gradient(90deg, rgba(182, 1, 196, 0.1) 0%, rgba(145, 0, 220, 0.1) 30.73%, rgba(101, 0, 253, 0.1) 64.06%, rgba(0, 56, 253, 0.1) 100%);
}
.testimonial-card.bg-9 {
  background: linear-gradient(135deg, rgba(255, 132, 5, 0.1) 0%, rgba(249, 52, 141, 0.1) 97.4%);
}
.testimonial-card.bg-10 {
  background: linear-gradient(135deg, rgba(255, 132, 5, 0.1) 0%, rgba(249, 52, 141, 0.1) 97.4%);
}

.testimonialSwiper {
  overflow: unset !important;
}

.testimonial-area-without-bg {
  position: relative;
  background-color: var(--blackColor);
  z-index: 1;
  overflow: hidden;
}
.testimonial-area-without-bg .section-title h1, .testimonial-area-without-bg .section-title h2, .testimonial-area-without-bg .section-title h3, .testimonial-area-without-bg .section-title h4, .testimonial-area-without-bg .section-title h5, .testimonial-area-without-bg .section-title h6 {
  color: var(--whiteColor);
}
.testimonial-area-without-bg .section-title p {
  color: #a8a8a8;
}

.testimonial-shape1 {
  position: absolute;
  left: 0;
  top: 30%;
  transform: translateY(-30%);
  z-index: -1;
}

.testimonial-shape2 {
  position: absolute;
  right: 0;
  top: 30%;
  transform: translateY(-30%);
  z-index: -1;
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area {
  position: relative;
  z-index: 1;
}
.blog-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.blog-area.bg-black {
  background-color: var(--blackColor) !important;
}
.blog-area.bg-black .section-title h1, .blog-area.bg-black .section-title h2, .blog-area.bg-black .section-title h3, .blog-area.bg-black .section-title h4, .blog-area.bg-black .section-title h5 {
  color: var(--whiteColor);
}

.blog-card {
  margin-bottom: 25px;
}
.blog-card .blog-image {
  border-radius: 10px;
  overflow: hidden;
}
.blog-card .blog-image img {
  border-radius: 10px;
  transition: var(--transition);
}
.blog-card .blog-image.without-radius {
  border-radius: 0;
}
.blog-card .blog-image.without-radius img {
  border-radius: 0;
}
.blog-card.style2 {
  background-color: #f8f8f8;
  border-radius: 10px;
}
.blog-card.style2 .blog-image {
  margin-bottom: 0;
}
.blog-card.style2 .blog-content {
  margin-top: 0;
  padding: 30px;
}
.blog-card .blog-content {
  margin-top: 28px;
}
.blog-card .blog-content.with-bottom {
  margin-top: 0;
  margin-bottom: 28px;
}
.blog-card .blog-content span {
  letter-spacing: 0.05em;
  font-size: 15px;
  display: block;
  margin-bottom: 12px;
}
.blog-card .blog-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.5;
  font-weight: bold;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.blog-card .blog-content h3 a {
  color: var(--blackColor);
  transition: var(--transition);
}
.blog-card .blog-content h3 a:hover {
  color: var(--secondaryColor);
}
.blog-card .blog-content .blog-btn {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.blog-card .blog-content .blog-btn i {
  font-size: 18px;
  margin-left: 7px;
}
.blog-card.sticky {
  background-color: #cfc4c4;
}
.blog-card.sticky .blog-image {
  margin-bottom: 0;
}
.blog-card.sticky .blog-content {
  margin-top: 0;
  padding: 30px;
}
.blog-card:hover .blog-image img {
  transform: scale(1.2);
}

.blog-item {
  margin-bottom: 25px;
  background: #1E1C1C;
}
.blog-item .blog-content {
  padding: 32px;
}
.blog-item .blog-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.blog-item .blog-content h3 a {
  color: var(--whiteColor);
}
.blog-item .blog-content .blog-btn {
  color: var(--whiteColor);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.blog-item .blog-content .blog-btn i {
  font-size: 18px;
  margin-left: 7px;
}
.blog-item .blog-image {
  overflow: hidden;
}
.blog-item .blog-image a img {
  transition: var(--transition);
}
.blog-item:hover .blog-image a img {
  transform: scale(1.1);
}

.blog-shape1 {
  position: absolute;
  top: 45px;
  right: 20%;
  transform: translateX(-20%);
  z-index: -1;
  animation: moveleftbounce 3s linear infinite;
}

.blog-shape2 {
  position: absolute;
  top: 0;
  left: 100px;
  z-index: -1;
}
.blog-shape2 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.blog-shape3 {
  position: absolute;
  top: 0;
  right: 100px;
  z-index: -1;
}
.blog-shape3 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*================================================
Subscribe Area CSS
=================================================*/
.subscribe-area {
  position: relative;
  z-index: 1;
}
.subscribe-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background: #131111;
  width: 100%;
  height: 210px;
  z-index: -1;
}
.subscribe-area.without-before-color::before {
  display: none;
}

.subscribe-inner-area {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 100px;
  padding-right: 100px;
}
.subscribe-inner-area.bg-2 {
  background-image: url(../../assets/images/subscribe/subscribe-bg2.jpg);
}
.subscribe-inner-area.bg-2 .subscribe-content .newsletter-form .default-btn {
  background: var(--primaryGradientColor);
}
.subscribe-inner-area.bg-2 .subscribe-content .newsletter-form .default-btn::before {
  background: var(--secondaryGradientColor);
}

.subscribe-content {
  max-width: 750px;
  margin: auto;
  text-align: center;
}
.subscribe-content h2 {
  font-size: 45px;
  color: var(--whiteColor);
  margin-bottom: 0;
}
.subscribe-content .newsletter-form {
  position: relative;
  max-width: 685px;
  margin: 35px auto 0;
}
.subscribe-content .newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  height: 60px;
  color: var(--blackColor);
  outline: 0;
  padding: 15px 230px 15px 25px;
}
.subscribe-content .newsletter-form .form-control::-moz-placeholder {
  color: var(--blackColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.subscribe-content .newsletter-form .form-control::placeholder {
  color: var(--blackColor);
  transition: var(--transition);
}
.subscribe-content .newsletter-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.subscribe-content .newsletter-form .form-control:focus::placeholder {
  color: transparent;
}
.subscribe-content .newsletter-form .default-btn {
  border: none;
  background: var(--secondaryGradientColor);
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
}
.subscribe-content .newsletter-form .default-btn::before {
  background: var(--primaryGradientColor);
}
.subscribe-content .newsletter-form p {
  color: var(--whiteColor);
}

/*================================================
Features Area CSS
=================================================*/
.features-area {
  position: relative;
  z-index: 1;
}
.features-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.features-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  background: rgba(251, 251, 251, 0.9);
  width: 100%;
  height: 100px;
  z-index: -1;
}
.features-area.without-before-color::before {
  display: none;
}
.features-area.extra-before-color::before {
  background: #F6F4F9;
}

.features-card {
  background-color: var(--whiteColor);
  box-shadow: 0px 2px 34px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  margin-bottom: 25px;
  position: relative;
  padding: 35px 35px 35px 130px;
}
.features-card .image {
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.features-card .content h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.features-card .content h3 a {
  color: var(--blackColor);
  transition: var(--transition);
}
.features-card .content h3 a:hover {
  color: var(--secondaryColor);
}
.features-card .content .features-btn {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.features-card .content .features-btn i {
  font-size: 18px;
  margin-left: 7px;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-swiper-slide .swiper-wrapper .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-area.bg-black-color {
  background-color: var(--blackColor);
}

/*================================================
Pricing Area CSS
=================================================*/
.pricing-area {
  position: relative;
  z-index: 1;
}

.pricing-card {
  padding: 40px;
  background: #EEEEEE;
  border-radius: 10px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.pricing-card::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  border-radius: 10px;
  background: var(--secondaryGradientColor);
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.pricing-card .pricing-header h3 {
  font-size: 20px;
  margin-bottom: 15px;
  transition: var(--transition);
}
.pricing-card .pricing-header p {
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.pricing-card .price {
  display: flex;
  align-items: end;
  margin-top: 20px;
  margin-bottom: 25px;
}
.pricing-card .price h3 {
  background: var(--secondaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 45px;
  font-weight: 900;
  margin-bottom: 0;
  transition: var(--transition);
}
.pricing-card .price span {
  font-weight: 400;
  font-size: 12px;
  color: #3E3E3E;
  position: relative;
  top: -10px;
  left: 8px;
  transition: var(--transition);
}
.pricing-card .list {
  margin-bottom: 30px;
}
.pricing-card .list li {
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  position: relative;
  padding-left: 22px;
  transition: var(--transition);
}
.pricing-card .list li:last-child {
  margin-bottom: 0;
}
.pricing-card .list li i {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 15px;
  position: absolute;
  left: 0;
  top: 0;
  transition: var(--transition);
}
.pricing-card .default-btn::before {
  background: linear-gradient(323.64deg, #FFEB1C -40.48%, #E7E320 -18.77%, #A9CD29 28.27%, #47AB37 95.2%, #009242 140.42%);
}
.pricing-card:hover::before {
  opacity: 1;
  visibility: visible;
}
.pricing-card:hover .pricing-header h3 {
  color: var(--whiteColor);
}
.pricing-card:hover .pricing-header p {
  color: #E7E7E7;
}
.pricing-card:hover .price h3 {
  background: var(--whiteColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card:hover .price span {
  color: #E7E7E7;
}
.pricing-card:hover .list li {
  color: #E7E7E7;
}
.pricing-card:hover .list li i {
  background: var(--whiteColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-shape1 {
  position: absolute;
  top: 100px;
  right: 150px;
  z-index: -1;
}
.pricing-shape1 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*================================================
Page Banner Area CSS
=================================================*/
.page-banner-area {
  background-color: var(--blackColor);
  background-image: url(../images/main-banner/video-bg.gif) !important;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  padding-top: 145px;
  padding-bottom: 145px;
}

.page-banner-content {
  text-align: center;
}
.page-banner-content h1, .page-banner-content h2, .page-banner-content h3 {
  font-size: 45px;
  color: var(--whiteColor);
  margin-bottom: 20px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.page-banner-content .list li {
  display: inline-block;
  letter-spacing: 0.1em;
  color: #B0ADAD;
  position: relative;
  margin-right: 35px;
  text-transform: uppercase;
}
.page-banner-content .list li::before {
  position: absolute;
  content: ">>";
  right: -30px;
  top: 0;
  color: #B0ADAD;
  font-size: 15px;
}
.page-banner-content .list li:last-child {
  margin-right: 0;
}
.page-banner-content .list li:last-child::before {
  display: none;
}
.page-banner-content .list li a {
  color: #B0ADAD;
}
.page-banner-content .list li a:hover {
  color: var(--whiteColor);
}

.page-banner-shape1 {
  position: absolute;
  top: 45%;
  right: 15%;
  transform: translateY(-45%) translateX(-15%);
  z-index: -1;
}
.page-banner-shape1 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.page-banner-shape2 {
  position: absolute;
  bottom: -50px;
  left: 250px;
  z-index: 1;
}
.page-banner-shape2 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*================================================
Mission Vision Area CSS
=================================================*/
.mission-vision-area {
  background: #F6F4F9;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.mission-vision-content {
  padding-left: 50px;
}
.mission-vision-content span {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 15px;
}
.mission-vision-content h3 {
  font-size: 45px;
  margin-bottom: 0;
}
.mission-vision-content .nav-tabs {
  border-bottom: none;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mission-vision-content .nav-tabs .nav-item {
  display: inline-block;
  margin-right: 20px;
}
.mission-vision-content .nav-tabs .nav-item .nav-link {
  border: 1px solid var(--whiteColor);
  padding: 15px 35px;
  border-radius: 30px;
  color: var(--blackColor);
  background-color: var(--whiteColor);
  transition: var(--transition);
  font-size: 15px;
  font-weight: bold;
}
.mission-vision-content .nav-tabs .nav-item .nav-link:hover, .mission-vision-content .nav-tabs .nav-item .nav-link.active {
  border: 1px solid var(--blackColor);
}
.mission-vision-content .nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.mission-vision-content .tab-content .mission-vision-btn {
  margin-top: 25px;
}

.mission-vision-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 20px;
  text-align: center;
}
.pagination-area .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-area .page-numbers {
  width: 45px;
  height: 45px;
  overflow: hidden;
  line-height: 45px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  color: var(--blackColor);
  background-color: transparent;
  transition: var(--transition);
  font-size: var(--fontSize);
  font-weight: 500;
  margin-left: 8px;
  margin-right: 8px;
}
.pagination-area .page-numbers:hover, .pagination-area .page-numbers.current {
  color: var(--primaryColor);
  background: var(--whiteColor);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.07);
}
.pagination-area .page-numbers.next, .pagination-area .page-numbers.prev {
  position: relative;
  z-index: 1;
  background: var(--primaryGradientColor);
  transition: var(--transition);
}
.pagination-area .page-numbers.next::before, .pagination-area .page-numbers.prev::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--secondaryGradientColor);
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.pagination-area .page-numbers.next i, .pagination-area .page-numbers.prev i {
  font-size: 22px;
  color: var(--whiteColor);
}
.pagination-area .page-numbers.next:hover::before, .pagination-area .page-numbers.prev:hover::before {
  opacity: 1;
  visibility: visible;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-area .section-title {
  max-width: 635px;
  margin: 0 auto 50px;
}

.faq-accordion {
  max-width: 970px;
  margin: auto;
}
.faq-accordion .accordion-item {
  border: 0;
  border-radius: 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
  padding: 25px 30px;
}
.faq-accordion .accordion-item .accordion-button {
  border: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: unset;
  color: var(--blackColor);
  background-color: transparent;
  font-size: 20px;
  font-weight: 600;
}
.faq-accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}
.faq-accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 15px 35px 0 0;
}
.faq-accordion .accordion-item .accordion-collapse .accordion-body p strong {
  color: var(--blackColor);
}
.faq-accordion .accordion-item:first-child {
  border-top: 1px solid #eeeeee;
}

/*================================================
Profile Authentication Area CSS
=================================================*/
.login-form {
  max-width: 580px;
  margin: auto;
  background-color: #f9f9f9;
  padding: 50px;
}
.login-form h3 {
  font-size: 32px;
  margin-bottom: 45px;
}
.login-form form .form-group {
  margin-bottom: 25px;
}
.login-form form .form-group label {
  display: block;
  margin-bottom: 12px;
  color: var(--blackColor);
  font-size: 15px;
  font-weight: 500;
}
.login-form form .form-group .form-control {
  transition: var(--transition);
  border: 1px solid var(--whiteColor);
  background-color: var(--whiteColor);
  font-size: var(--fontSize);
  color: var(--blackColor);
  border-radius: 5px;
  box-shadow: unset;
  height: 60px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.login-form form .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.login-form form .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.login-form form .form-group .form-control:focus {
  border-color: var(--blackColor);
  background-color: transparent;
}
.login-form form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.login-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.login-form form .form-check {
  color: var(--paragraphColor);
  margin-bottom: 25px;
}
.login-form form .form-check a {
  color: var(--secondaryColor);
}
.login-form form .form-check a:hover {
  text-decoration: underline;
}
.login-form form .form-check .form-check-input {
  margin-top: 0.24em;
  box-shadow: unset !important;
}
.login-form form .form-check .form-check-input[type=checkbox] {
  border-radius: 0;
}
.login-form form .form-check .form-check-input:checked {
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
}
.login-form form .form-check .form-check-input:focus {
  border-color: var(--secondaryColor);
}
.login-form form .form-check .form-check-label {
  cursor: pointer;
}
.login-form form .default-btn {
  width: 100%;
  border: none;
  justify-content: center;
}
.login-form form .forgot-password {
  text-decoration: underline;
  display: inline-block;
  margin-top: 20px;
}

.register-form {
  max-width: 630px;
  margin: auto;
  background-color: #f9f9f9;
  padding: 50px;
}
.register-form h3 {
  font-size: 32px;
  margin-bottom: 45px;
}
.register-form form .form-group {
  margin-bottom: 25px;
}
.register-form form .form-group label {
  display: block;
  margin-bottom: 12px;
  color: var(--blackColor);
  font-size: 15px;
  font-weight: 500;
}
.register-form form .form-group .form-control {
  transition: var(--transition);
  border: 1px solid var(--whiteColor);
  background-color: var(--whiteColor);
  font-size: var(--fontSize);
  color: var(--blackColor);
  border-radius: 5px;
  box-shadow: unset;
  height: 60px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.register-form form .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.register-form form .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.register-form form .form-group .form-control:focus {
  border-color: var(--blackColor);
  background-color: transparent;
}
.register-form form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.register-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.register-form form .default-btn {
  width: 100%;
  border: none;
  justify-content: center;
}
.register-form form p {
  margin-top: 20px;
  font-style: italic;
}

.forgot-password-box {
  max-width: 580px;
  margin: auto;
  background-color: #f9f9f9;
  padding: 50px;
}
.forgot-password-box p {
  margin-bottom: 25px;
}
.forgot-password-box .form-group {
  margin-bottom: 20px;
}
.forgot-password-box .form-group label {
  display: block;
  margin-bottom: 12px;
  color: var(--blackColor);
  font-size: 15px;
  font-weight: 500;
}
.forgot-password-box .form-group .form-control {
  transition: var(--transition);
  border: 1px solid var(--whiteColor);
  background-color: var(--whiteColor);
  font-size: var(--fontSize);
  color: var(--blackColor);
  border-radius: 5px;
  box-shadow: unset;
  height: 60px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.forgot-password-box .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.forgot-password-box .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.forgot-password-box .form-group .form-control:focus {
  border-color: var(--blackColor);
  background-color: transparent;
}
.forgot-password-box .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.forgot-password-box .form-group .form-control:focus::placeholder {
  color: transparent;
}
.forgot-password-box .default-btn {
  width: 100%;
  border: none;
  justify-content: center;
}

/*================================================
Privacy Policy Area CSS
=================================================*/
.privacy-policy-content {
  max-width: 1080px;
  margin: auto;
}
.privacy-policy-content .h1, .privacy-policy-content .h2, .privacy-policy-content .h3, .privacy-policy-content .h4, .privacy-policy-content .h5, .privacy-policy-content .h6, .privacy-policy-content h1, .privacy-policy-content h2, .privacy-policy-content h3, .privacy-policy-content h4, .privacy-policy-content h5, .privacy-policy-content h6 {
  margin-bottom: 15px;
  font-size: 25px;
}
.privacy-policy-content .h1:not(:first-child), .privacy-policy-content .h2:not(:first-child), .privacy-policy-content .h3:not(:first-child), .privacy-policy-content .h4:not(:first-child), .privacy-policy-content .h5:not(:first-child), .privacy-policy-content .h6:not(:first-child), .privacy-policy-content h1:not(:first-child), .privacy-policy-content h2:not(:first-child), .privacy-policy-content h3:not(:first-child), .privacy-policy-content h4:not(:first-child), .privacy-policy-content h5:not(:first-child), .privacy-policy-content h6:not(:first-child) {
  margin-top: 25px;
}
.privacy-policy-content strong {
  color: var(--blackColor);
  font-weight: 600;
}
.privacy-policy-content p a {
  color: var(--paragraphColor);
}
.privacy-policy-content p a:hover {
  text-decoration: underline;
}
.privacy-policy-content ul li, .privacy-policy-content ol li {
  color: var(--paragraphColor);
  margin-bottom: 12px;
}
.privacy-policy-content ul li a, .privacy-policy-content ol li a {
  color: var(--paragraphColor);
}
.privacy-policy-content ul li a:hover, .privacy-policy-content ol li a:hover {
  text-decoration: underline;
}
.privacy-policy-content ul li:last-child, .privacy-policy-content ol li:last-child {
  margin-bottom: 0;
}

/*================================================
Terms & Conditions Area CSS
=================================================*/
.terms-conditions-content {
  max-width: 1080px;
  margin: auto;
}
.terms-conditions-content .h1, .terms-conditions-content .h2, .terms-conditions-content .h3, .terms-conditions-content .h4, .terms-conditions-content .h5, .terms-conditions-content .h6, .terms-conditions-content h1, .terms-conditions-content h2, .terms-conditions-content h3, .terms-conditions-content h4, .terms-conditions-content h5, .terms-conditions-content h6 {
  margin-bottom: 15px;
  font-size: 25px;
}
.terms-conditions-content .h1:not(:first-child), .terms-conditions-content .h2:not(:first-child), .terms-conditions-content .h3:not(:first-child), .terms-conditions-content .h4:not(:first-child), .terms-conditions-content .h5:not(:first-child), .terms-conditions-content .h6:not(:first-child), .terms-conditions-content h1:not(:first-child), .terms-conditions-content h2:not(:first-child), .terms-conditions-content h3:not(:first-child), .terms-conditions-content h4:not(:first-child), .terms-conditions-content h5:not(:first-child), .terms-conditions-content h6:not(:first-child) {
  margin-top: 25px;
}
.terms-conditions-content strong {
  color: var(--blackColor);
  font-weight: 600;
}
.terms-conditions-content p a {
  color: var(--paragraphColor);
}
.terms-conditions-content p a:hover {
  text-decoration: underline;
}
.terms-conditions-content ul li, .terms-conditions-content ol li {
  color: var(--paragraphColor);
  margin-bottom: 12px;
}
.terms-conditions-content ul li a, .terms-conditions-content ol li a {
  color: var(--paragraphColor);
}
.terms-conditions-content ul li a:hover, .terms-conditions-content ol li a:hover {
  text-decoration: underline;
}
.terms-conditions-content ul li:last-child, .terms-conditions-content ol li:last-child {
  margin-bottom: 0;
}

/*================================================
Not Found Area CSS
=================================================*/
.not-found-content img {
  margin-bottom: 35px;
}
.not-found-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
}
.not-found-content .default-btn {
  margin-top: 15px;
}

/*================================================
Contact Us Area CSS
=================================================*/
.contact-us-info .info-item {
  position: relative;
  padding: 8.5px 0 8.5px 150px;
  margin-bottom: 35px;
}
.contact-us-info .info-item:last-child {
  margin-bottom: 0;
}
.contact-us-info .info-item .image {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contact-us-info .info-item .content h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 18px;
}
.contact-us-info .info-item .content span {
  color: var(--paragraphColor);
  display: block;
  margin-bottom: 8px;
}
.contact-us-info .info-item .content span:last-child {
  margin-bottom: 0;
}
.contact-us-info .info-item .content span a {
  color: var(--paragraphColor);
}

.contact-us-form .title {
  font-size: 30px;
  margin-bottom: 30px;
}
.contact-us-form .form-group {
  margin-bottom: 25px;
}
.contact-us-form .form-group label {
  position: absolute;
  left: 25px;
  top: 14.5px;
  border-right: 2px solid #C9C6CE;
  padding-right: 15px;
  margin-right: 15px;
}
.contact-us-form .form-group label i {
  color: #7D7A83;
  font-size: 22px;
}
.contact-us-form .form-group .form-control {
  background-color: #EFEDF2;
  border: 1px solid #EFEDF2;
  border-radius: 30px;
  height: 62px;
  width: 100% !important;
  padding: 15px 25px 15px 25px;
  letter-spacing: 0.07em;
  color: #7D7A83;
  outline: 0;
  box-shadow: unset;
}
.contact-us-form .form-group .form-control::-moz-placeholder {
  color: #7D7A83;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.contact-us-form .form-group .form-control::placeholder {
  color: #7D7A83;
  transition: var(--transition);
}
.contact-us-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.contact-us-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.contact-us-form .form-group textarea.form-control {
  min-height: 200px;
  width: 100% !important;
  padding: 20px 25px 15px 25px;
}
.contact-us-form .form-check {
  color: var(--paragraphColor);
  margin-bottom: 25px;
  padding-left: 0;
}
.contact-us-form .form-check a {
  color: var(--secondaryColor);
}
.contact-us-form .form-check a:hover {
  text-decoration: underline;
}
.contact-us-form .form-check .form-check-input {
  margin-top: 0.24em;
  box-shadow: unset !important;
}
.contact-us-form .form-check .form-check-input[type=checkbox] {
  border-radius: 50px;
}
.contact-us-form .form-check .form-check-input:checked {
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
}
.contact-us-form .form-check .form-check-input:focus {
  border-color: var(--secondaryColor);
}
.contact-us-form .form-check .form-check-label {
  cursor: pointer;
}
.contact-us-form .default-btn {
  border: none;
  border-radius: 30px;
}

/*================================================
Widget Area CSS
=================================================*/
.widget-area {
  padding-left: 50px;
}
.widget-area.left {
  padding-left: 0;
  padding-right: 50px;
}
.widget-area .widget {
  margin-bottom: 45px;
}
.widget-area .widget .title {
  font-size: 20px;
  margin-bottom: 25px;
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}
.widget-area .widget_search form {
  position: relative;
}
.widget-area .widget_search form button {
  border: none;
  background-color: transparent;
  font-size: 22px;
  position: absolute;
  right: 10px;
  top: 1px;
  height: 62px;
}
.widget-area .widget_sekura_posts_thumbs .item {
  border: 1px solid #E1DEE5;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 15px;
  transition: var(--transition);
}
.widget-area .widget_sekura_posts_thumbs .item:last-child {
  margin-bottom: 0;
}
.widget-area .widget_sekura_posts_thumbs .item span {
  font-weight: 500;
  font-size: 14px;
  color: var(--blackColor);
  display: block;
  margin-bottom: 12px;
}
.widget-area .widget_sekura_posts_thumbs .item h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}
.widget-area .widget_sekura_posts_thumbs .item h3 a {
  color: var(--blackColor);
}
.widget-area .widget_sekura_posts_thumbs .item .read-btn {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.widget-area .widget_sekura_posts_thumbs .item .read-btn i {
  font-size: 18px;
  margin-left: 7px;
}
.widget-area .widget_sekura_posts_thumbs .item:hover {
  border: 1px solid var(--blackColor);
}
.widget-area .widget_tag_cloud .title {
  margin-bottom: 15px;
}
.widget-area .widget_tag_cloud .tagcloud a {
  display: inline-block;
  background: #EFEDF2;
  border-radius: 30px;
  padding: 10px 20px;
  color: #726D7A;
  font-weight: 500;
  font-size: 14px !important;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  margin-top: 10px;
  margin-right: 5px;
}
.widget-area .widget_tag_cloud .tagcloud a:last-child {
  margin-right: 0;
}
.widget-area .widget_tag_cloud .tagcloud a::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--primaryGradientColor);
  border-radius: 30px;
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.widget-area .widget_tag_cloud .tagcloud a:hover {
  color: var(--whiteColor);
}
.widget-area .widget_tag_cloud .tagcloud a:hover::before {
  opacity: 1;
  visibility: visible;
}
.widget-area .widget_add a img {
  border-radius: 10px;
}
.widget-area .widget_categories .list li {
  margin-bottom: 15px;
}
.widget-area .widget_categories .list li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_categories .list li a {
  display: inline-block;
  border: 1px solid #E1DEE5;
  border-radius: 50px;
  padding: 20px 20px 20px 75px;
  position: relative;
}
.widget-area .widget_categories .list li a::before {
  position: absolute;
  content: "";
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  height: 55px;
  width: 55px;
  border-radius: 50px;
  background-image: url(../../assets/images/products/products1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.widget-area .widget_categories .list li a span {
  color: var(--blackColor);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.widget-area .widget_categories .list li a span i {
  color: #959292;
  font-size: 22px;
}
.widget-area .widget_categories .list li a:hover {
  border: 1px solid var(--blackColor);
}
.widget-area .widget_categories .list li a:hover span {
  font-weight: 600;
}
.widget-area .widget_categories .list li:nth-child(2) a::before {
  background-image: url(../../assets/images/products/products2.jpg);
}
.widget-area .widget_categories .list li:nth-child(3) a::before {
  background-image: url(../../assets/images/products/products3.jpg);
}
.widget-area .widget_categories .list li:nth-child(4) a::before {
  background-image: url(../../assets/images/products/products4.jpg);
}
.widget-area .widget_categories .list li:nth-child(5) a::before {
  background-image: url(../../assets/images/products/products5.jpg);
}
.widget-area .widget_categories .list li:nth-child(6) a::before {
  background-image: url(../../assets/images/products/products6.jpg);
}
.widget-area .widget_products .item {
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  border: 1px solid #E1DEE5;
  border-radius: 10px;
  padding: 20px;
  transition: var(--transition);
}
.widget-area .widget_products .item .thumb {
  display: block;
  flex: 0 0 auto;
  width: 35%;
}
.widget-area .widget_products .item .thumb img {
  border-radius: 20px;
}
.widget-area .widget_products .item .info {
  padding-left: 25px;
  flex: 0 0 auto;
  width: 65%;
}
.widget-area .widget_products .item .info span {
  color: var(--paragraphColor);
  letter-spacing: 0.1em;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.widget-area .widget_products .item .info .title {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 600;
}
.widget-area .widget_products .item .info .price {
  font-size: 15px;
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 600;
}
.widget-area .widget_products .item:last-child {
  margin-bottom: 0;
}
.widget-area .widget_products .item:hover {
  border: 1px solid var(--blackColor);
}

/*================================================
Cart Area CSS
=================================================*/
.cart-area .container {
  max-width: 1100px;
  margin: auto;
}

.cart-table table {
  margin-bottom: 0;
}
.cart-table table thead tr {
  border: none;
}
.cart-table table thead tr th {
  vertical-align: middle;
  padding: 0 25px 25px 25px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 15px;
  border: none;
  color: #7B7B7B;
  letter-spacing: 0.05em;
}
.cart-table table thead tr th:last-child {
  text-align: end;
}
.cart-table table tbody tr {
  border: none;
  background: #FBFBFB;
  margin-bottom: 25px;
  border-bottom: 1px solid #F1F1F1;
}
.cart-table table tbody tr.border-none {
  border-bottom: none;
}
.cart-table table tbody tr td {
  vertical-align: middle;
  white-space: nowrap;
  padding: 25px;
  border: none;
}
.cart-table table tbody tr td:last-child {
  text-align: end;
}
.cart-table table tbody tr td.product-thumbnail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cart-table table tbody tr td.product-thumbnail .image a img {
  width: 120px;
  border-radius: 20px;
}
.cart-table table tbody tr td.product-thumbnail .title {
  margin-left: 30px;
}
.cart-table table tbody tr td.product-thumbnail .title h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.5;
}
.cart-table table tbody tr td.product-thumbnail .title h3 a {
  color: var(--blackColor);
}
.cart-table table tbody tr td.product-thumbnail .title h3 span {
  display: block;
}
.cart-table table tbody tr td.product-price .unit-amount {
  color: var(--paragraphColor);
  font-weight: 500;
  font-size: 14px;
}
.cart-table table tbody tr td.product-subtotal .subtotal-amount {
  color: var(--paragraphColor);
  font-weight: bold;
  font-size: 14px;
}
.cart-table table tbody tr td.product-quantity #add-to-cart-counter {
  text-align: center;
  display: inline-block;
  position: relative;
  background: #F1F1F1;
  border-radius: 50px;
  padding: 15px 35px;
}
.cart-table table tbody tr td.product-quantity #add-to-cart-counter #decrement-btn {
  border: none;
  padding: 0;
}
.cart-table table tbody tr td.product-quantity #add-to-cart-counter #decrement-btn i {
  font-size: 20px;
}
.cart-table table tbody tr td.product-quantity #add-to-cart-counter #count {
  margin: 0 25px;
  position: relative;
  top: -3.5px;
}
.cart-table table tbody tr td.product-quantity #add-to-cart-counter #increment-btn {
  border: none;
  padding: 0;
}
.cart-table table tbody tr td.product-quantity #add-to-cart-counter #increment-btn i {
  font-size: 20px;
}
.cart-table table tbody tr td.remove a i {
  font-size: 25px;
  color: var(--blackColor);
}
.cart-table table tbody:not(:first-child) {
  border-top: unset;
}

.cart-totals-inner {
  margin-top: 40px;
}
.cart-totals-inner .cart-shopping-content a {
  position: relative;
  font-weight: 500;
  color: var(--blackColor);
  padding-left: 22px;
}
.cart-totals-inner .cart-shopping-content a i {
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
}
.cart-totals-inner .cart-totals-box {
  position: relative;
  max-width: 390px;
  margin-left: auto;
}
.cart-totals-inner .cart-totals-box .cart-note-shipping {
  background: #EEEEEE;
  padding: 15px;
}
.cart-totals-inner .cart-totals-box .cart-note-shipping .cart-note {
  background-color: var(--whiteColor);
  padding: 20px;
  text-align: center;
  width: 100%;
  margin-right: 7.5px;
}
.cart-totals-inner .cart-totals-box .cart-note-shipping .cart-note span {
  color: #161414;
  font-weight: 600;
  display: block;
  margin-top: 15px;
  font-size: 14px;
}
.cart-totals-inner .cart-totals-box .cart-note-shipping .cart-shipping {
  background-color: var(--whiteColor);
  padding: 20px;
  text-align: center;
  width: 100%;
  margin-left: 7.5px;
}
.cart-totals-inner .cart-totals-box .cart-note-shipping .cart-shipping span {
  color: #161414;
  font-weight: 600;
  display: block;
  margin-top: 15px;
  font-size: 14px;
}
.cart-totals-inner .cart-totals-box .cart-subtotal {
  margin-top: 30px;
  padding: 0 20px;
}
.cart-totals-inner .cart-totals-box .cart-subtotal .sub {
  font-weight: 600;
  color: #161414;
}
.cart-totals-inner .cart-totals-box .cart-subtotal .total {
  font-weight: bold;
  color: #161414;
}
.cart-totals-inner .cart-totals-box .cart-btn {
  margin-top: 30px;
  text-align: center;
}
.cart-totals-inner .cart-totals-box .cart-btn .default-btn {
  width: 100%;
  border-radius: 30px;
  justify-content: center;
}

/*================================================
Wishlist Area CSS
=================================================*/
.wishlist-area .container {
  max-width: 1100px;
  margin: auto;
}

.wishlist-table table {
  margin-bottom: 0;
}
.wishlist-table table thead tr {
  border: none;
}
.wishlist-table table thead tr th {
  vertical-align: middle;
  padding: 0 25px 25px 25px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 15px;
  border: none;
  color: #7B7B7B;
  letter-spacing: 0.05em;
}
.wishlist-table table thead tr th:last-child {
  text-align: end;
}
.wishlist-table table tbody tr {
  border: none;
  background: #FBFBFB;
  margin-bottom: 25px;
  border-bottom: 1px solid #F1F1F1;
}
.wishlist-table table tbody tr.border-none {
  border-bottom: none;
}
.wishlist-table table tbody tr td {
  vertical-align: middle;
  white-space: nowrap;
  padding: 25px;
  border: none;
}
.wishlist-table table tbody tr td:last-child {
  text-align: end;
}
.wishlist-table table tbody tr td.product-thumbnail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.wishlist-table table tbody tr td.product-thumbnail .image a img {
  width: 120px;
  border-radius: 20px;
}
.wishlist-table table tbody tr td.product-thumbnail .title {
  margin-left: 30px;
}
.wishlist-table table tbody tr td.product-thumbnail .title h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.5;
}
.wishlist-table table tbody tr td.product-thumbnail .title h3 a {
  color: var(--blackColor);
}
.wishlist-table table tbody tr td.product-thumbnail .title h3 span {
  display: block;
}
.wishlist-table table tbody tr td.product-price .unit-amount {
  color: var(--paragraphColor);
  font-weight: 500;
  font-size: 14px;
}
.wishlist-table table tbody tr td.instock span {
  letter-spacing: 0.02em;
  color: #08BC66;
  font-weight: 500;
}
.wishlist-table table tbody tr td.add-to-cart a {
  letter-spacing: 0.02em;
  text-decoration-line: underline;
  color: var(--blackColor);
}
.wishlist-table table tbody tr td.add-to-cart.bg-B1A4A4 a {
  color: #B1A4A4;
}
.wishlist-table table tbody tr td.out span {
  letter-spacing: 0.02em;
  color: #CC4B42;
  font-weight: 500;
}
.wishlist-table table tbody tr td.remove a i {
  font-size: 25px;
  color: var(--blackColor);
}
.wishlist-table table tbody:not(:first-child) {
  border-top: unset;
}

.wishlist-shopping-content {
  margin-top: 30px;
}
.wishlist-shopping-content a {
  position: relative;
  font-weight: 500;
  color: var(--blackColor);
  padding-left: 22px;
}
.wishlist-shopping-content a i {
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
}

/*================================================
Checkout Area CSS
=================================================*/
.checkout-information .contact-information {
  margin-bottom: 40px;
}
.checkout-information .contact-information h3 {
  font-size: 25px;
  margin-bottom: 45px;
}
.checkout-information .form-group {
  margin-bottom: 25px;
  position: relative;
}
.checkout-information .form-group label {
  color: var(--blackColor);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.checkout-information .form-group .form-control {
  display: inline-block;
  width: 100%;
  height: 60px;
  border: none;
  background: #F9F9F9;
  border-radius: 0;
  padding: 15px 20px;
  outline: 0;
  box-shadow: unset;
  letter-spacing: 0.02em;
  color: var(--paragraphColor);
  transition: var(--transition);
  font-size: 14px;
}
.checkout-information .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.checkout-information .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.checkout-information .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.checkout-information .form-group .form-control:focus::placeholder {
  color: transparent;
}
.checkout-information .form-group .form-select {
  display: inline-block;
  width: 100%;
  height: 55px;
  border: none;
  background-color: #F9F9F9;
  border-radius: 0;
  padding: 15px 20px;
  outline: 0;
  box-shadow: unset;
  letter-spacing: 0.02em;
  color: var(--paragraphColor);
  transition: var(--transition);
}
.checkout-information .form-group option {
  color: var(--paragraphColor);
}
.checkout-information .shipping-address h3 {
  font-size: 18px;
  margin-bottom: 30px;
}
.checkout-information .shipping-address .cart-btn {
  font-size: 14px;
  font-weight: bold;
  color: var(--blackColor);
}
.checkout-information .form-cookies-consent {
  margin-bottom: 0;
}
.checkout-information .form-cookies-consent [type=checkbox]:checked, .checkout-information .form-cookies-consent [type=checkbox]:not(:checked) {
  display: none;
}
.checkout-information .form-cookies-consent [type=checkbox]:checked + label, .checkout-information .form-cookies-consent [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  color: var(--paragraphColor);
  font-size: 15px;
}
.checkout-information .form-cookies-consent [type=checkbox]:checked + label:before, .checkout-information .form-cookies-consent [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
  background: #D9D9D9;
  border-radius: 5px;
}
.checkout-information .form-cookies-consent [type=checkbox]:checked + label:after, .checkout-information .form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--blackColor);
  border-radius: 50px;
  position: absolute;
  top: 8.5px;
  left: 5px;
  transition: all 0.2s ease;
}
.checkout-information .form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.checkout-information .form-cookies-consent [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.checkout-totals-box {
  background: #F9F9F9;
  padding: 35px;
  margin-left: 30px;
}
.checkout-totals-box h2 {
  font-size: 18px;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.checkout-totals-box .list {
  padding-left: 0;
  margin-bottom: 0;
}
.checkout-totals-box .list li {
  list-style-type: none;
  margin-bottom: 20px;
}
.checkout-totals-box .list li:last-child {
  margin-bottom: 0;
}
.checkout-totals-box .list li span {
  color: var(--paragraphColor);
}
.checkout-totals-box .list li .semi-bold {
  font-weight: 600;
  color: var(--blackColor);
}
.checkout-totals-box .list li .bold {
  font-weight: 700;
  font-size: 20px;
  color: var(--blackColor);
}
.checkout-totals-box h3 {
  font-size: 18px;
  border-top: 1px solid #E5E5E5;
  padding-top: 25px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.checkout-totals-box .payment-list {
  padding-left: 0;
  margin-bottom: 0;
}
.checkout-totals-box .payment-list li {
  list-style-type: none;
  margin-bottom: 15px;
}
.checkout-totals-box .payment-list li:last-child {
  margin-bottom: 0;
}
.checkout-totals-box .payment-list li .form-cookies-consent {
  margin-bottom: 0;
}
.checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:checked, .checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:not(:checked) {
  display: none;
}
.checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:checked + label, .checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  color: var(--blackColor);
  border-radius: 30px;
}
.checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:checked + label:before, .checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
  background: #D9D9D9;
  border-radius: 30px;
}
.checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:checked + label:after, .checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--blackColor);
  border-radius: 50px;
  position: absolute;
  top: 7.5px;
  left: 5px;
  transition: all 0.2s ease;
}
.checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.checkout-totals-box .checkout-btn {
  margin-top: 30px;
  text-align: center;
}
.checkout-totals-box .checkout-btn .default-btn {
  width: 100%;
  border-radius: 50px;
  justify-content: center;
}/*# sourceMappingURL=sekura-main-style.css.map */