@charset "UTF-8";
/*
@File: Qyaa 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
** - Default Btn CSS
** - Section Title CSS
** - Preloader Area CSS
** - Main Slides Area CSS
** - Main Banner Area CSS
** - Hero Slides Area CSS
** - Features Area CSS
** - About Area CSS
** - Funfact Area CSS
** - Services Area CSS
** - Services Details Area CSS
** - Choose Area CSS
** - Appointment Area CSS
** - Partner Area CSS
** - Pricing Area CSS
** - Country Area CSS
** - Team Area CSS
** - Testimonial Area CSS
** - Blog Area CSS
** - Blog Details Area CSS
** - Project Area CSS
** - Project Details Area CSS
** - FAQ Area CSS
** - Shop Area CSS
** - Page Banner CSS
** - Login Area CSS
** - Register Area CSS
** - Terms of Service Area CSS
** - Privacy Policy Area CSS
** - 404 Error Area CSS
** - Coming Soon Area CSS
** - Contact Area CSS
** - Cart Area CSS
** - Wishlist Area CSS
** - Checkout Area CSS
** - Single Shop Area CSS
** - Widget Sidebar CSS
** - Pagination Area CSS
** - Go Top CSS

*/
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --main-font-family: "Inter", sans-serif;
  --main-color: #1cb9c8;
  --optional-color: #1f77d8;
  --white-color: #ffffff;
  --black-color: #222222;
  --paragraph-color: #6c7177;
  --font-size: 16px;
  --transition: .6s;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--main-font-family);
  font-size: var(--font-size);
}

a {
  text-decoration: none;
  transition: var(--transition);
  color: var(--black-color);
  display: inline-block;
}
a:hover, a:focus {
  color: var(--main-color);
  text-decoration: none;
}

button {
  outline: 0 !important;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--paragraph-color);
  font-weight: 400;
  font-family: var(--main-font-family);
  font-size: var(--font-size);
}
p:last-child {
  margin-bottom: 0;
}

i {
  line-height: normal;
}

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

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

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

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

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

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

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--black-color);
  font-family: var(--main-font-family);
  font-weight: bold;
}
.h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

/*================================================
Default Btn CSS
=================================================*/
.default-btn {
  padding: 15px 35px;
  text-align: center;
  color: var(--white-color) !important;
  font-size: var(--font-size);
  font-weight: 400;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  background: var(--main-color);
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
}
.default-btn:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 550px;
  height: 550px;
  margin: auto;
  background: var(--optional-color);
  border-radius: 50%;
  z-index: -1;
  transform-origin: top center;
  transform: translateX(-50%) translateY(-5%) scale(0.4);
  transition: transform 0.9s;
}
.default-btn:hover {
  color: var(--white-color);
}
.default-btn:hover:before {
  transition: transform 1s;
  transform: translateX(-45%) translateY(0) scale(1);
  transform-origin: bottom center;
}
.default-btn.border-radius {
  border-radius: 30px;
}

/*================================================
Section Title CSS
=================================================*/
.section-title-wrap {
  margin-bottom: 45px;
}
.section-title-wrap span {
  font-size: var(--font-size);
  color: var(--main-color);
  display: inline-block;
  margin-bottom: 15px;
}
.section-title-wrap h2 {
  font-size: 42px;
  margin-bottom: 0;
  line-height: 1.4;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  z-index: 999999;
  background-color: var(--white-color);
  width: 100%;
  height: 100%;
  text-align: center;
  left: 0;
  right: 0;
}
.preloader .lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.preloader .lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.preloader .lds-spinner div::after {
  content: " ";
  display: block;
  position: absolute;
  top: 5px;
  left: 35px;
  width: 5px;
  height: 20px;
  border-radius: 20%;
  background: var(--main-color);
}
.preloader .lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.preloader .lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.preloader .lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.preloader .lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.preloader .lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.preloader .lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.preloader .lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.preloader .lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.preloader .lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.preloader .lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.preloader .lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.preloader .lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*================================================
Main Slides Area CSS
=================================================*/
.main-slides-area {
  background-image: url(../../assets/images/main-slides/slides-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 55px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.main-slides-area::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 385px;
  height: 100%;
  background-color: var(--optional-color);
  z-index: -1;
}

.main-slides-content span {
  font-size: var(--font-size);
  font-weight: 400;
  color: var(--main-color);
  display: inline-block;
  margin-bottom: 20px;
}
.main-slides-content h1 {
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--white-color);
}
.main-slides-content p {
  color: var(--white-color);
  margin-bottom: 0;
}
.main-slides-content .slides-btn {
  margin-top: 30px;
}

.main-slides-info {
  position: relative;
  padding-left: 85px;
  margin-top: 45px;
}
.main-slides-info .icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.main-slides-info .icon i {
  font-size: 65px;
  color: var(--white-color);
}
.main-slides-info span {
  font-size: var(--font-size);
  font-weight: 400;
  color: var(--main-color);
  display: block;
  margin-bottom: 12px;
}
.main-slides-info a {
  font-size: 25px;
  color: var(--white-color);
}

.home-slides.owl-theme .owl-nav {
  margin-top: 25px;
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 0;
}
.home-slides.owl-theme .owl-nav [class*=owl-] {
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 68px;
  background: var(--white-color);
  color: var(--black-color);
  border-radius: 0;
  text-align: center;
  font-size: 20px;
  transition: var(--transition);
  border: 1px solid var(--white-color);
  margin: 0 2px 0 0;
}
.home-slides.owl-theme .owl-nav [class*=owl-]:last-child {
  margin-right: 0;
}
.home-slides.owl-theme .owl-nav [class*=owl-]:hover {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: var(--white-color);
}

/*================================================
Main Banner Area CSS
=================================================*/
.main-banner-area {
  background-image: url(../../assets/images/main-banner-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 250px;
  background-attachment: fixed;
}
.main-banner-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  z-index: -1;
  opacity: 0.55;
}

.main-banner-content {
  max-width: 680px;
}
.main-banner-content span {
  font-size: var(--font-size);
  font-weight: 400;
  color: var(--main-color);
  display: inline-block;
  margin-bottom: 20px;
}
.main-banner-content h1 {
  font-size: 75px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--white-color);
}
.main-banner-content p {
  color: var(--white-color);
  margin-bottom: 0;
}
.main-banner-content .banner-btn {
  margin-top: 30px;
}

/*================================================
Hero Slides Area CSS
=================================================*/
.hero-slides-area {
  position: relative;
  z-index: 1;
}

.hero-slides-content {
  text-align: center;
}
.hero-slides-content h1 {
  font-size: 72px;
  margin-bottom: 0;
}
.hero-slides-content .hero-image {
  margin-top: 45px;
}

.hero-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.hero-slides.owl-theme .owl-nav [class*=owl-] {
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 68px;
  background: transparent;
  color: var(--black-color);
  border-radius: 0;
  text-align: center;
  font-size: 25px;
  transition: var(--transition);
  border: 1px solid var(--main-color);
  margin: 0;
  position: absolute;
  left: -75px;
  top: 55%;
  transform: translateY(-55%);
}
.hero-slides.owl-theme .owl-nav [class*=owl-].owl-prev::before {
  display: inline-block;
  position: absolute;
  content: "";
  height: 35px;
  width: 35px;
  background-color: var(--white-color);
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: var(--transition);
}
.hero-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -75px;
}
.hero-slides.owl-theme .owl-nav [class*=owl-].owl-next::before {
  display: inline-block;
  position: absolute;
  content: "";
  height: 35px;
  width: 35px;
  background-color: var(--white-color);
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: var(--transition);
}
.hero-slides.owl-theme .owl-nav [class*=owl-]:hover {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: var(--white-color);
}
.hero-slides.owl-theme .owl-nav [class*=owl-]:hover.owl-prev::before {
  background-color: var(--main-color);
}
.hero-slides.owl-theme .owl-nav [class*=owl-]:hover.owl-next::before {
  background-color: var(--main-color);
}

.hero-down-icon {
  position: absolute;
  right: 5px;
  bottom: 45px;
  transform: rotate(-90deg);
}
.hero-down-icon a {
  color: var(--black-color);
}
.hero-down-icon a:hover {
  color: var(--main-color);
}
.hero-down-icon a i {
  font-size: 20px;
  position: relative;
  top: 5px;
}

/*================================================
Features Area CSS
=================================================*/
.features-area .row .col-lg-4 {
  position: relative;
}

.features-inner-box {
  background-color: #1a1e27;
  padding-left: 50px;
  padding-right: 50px;
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

.single-features-box {
  position: relative;
  margin-bottom: 25px;
  padding-left: 120px;
}
.single-features-box .icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-features-box .icon i {
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 112px;
  background-color: var(--white-color);
  color: var(--main-color);
  text-align: center;
  border-radius: 50px;
  font-size: 55px;
  transition: var(--transition);
}
.single-features-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--white-color);
}
.single-features-box p {
  color: var(--white-color);
}
.single-features-box:hover .icon i {
  background-color: var(--main-color);
  color: var(--white-color);
}

.single-features-card {
  text-align: center;
  max-width: 350px;
  margin: 0 auto 25px;
}
.single-features-card .icon {
  margin-bottom: 25px;
}
.single-features-card .icon i {
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 112px;
  background-color: var(--white-color);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  color: var(--main-color);
  text-align: center;
  border-radius: 50px;
  font-size: 55px;
  transition: var(--transition);
}
.single-features-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.single-features-card:hover .icon i {
  background-color: var(--main-color);
  color: var(--white-color);
}

.arrow-shape {
  position: absolute;
  right: -80px;
  top: 20%;
  transform: translateY(-20%);
}

/*================================================
About Area CSS
=================================================*/
.about-image {
  position: relative;
  margin-top: 30px;
  margin-left: 30px;
}
.about-image::before {
  position: absolute;
  content: "";
  height: 95%;
  width: 95%;
  background-color: var(--main-color);
  left: -30px;
  top: -30px;
  z-index: -1;
}
.about-image .about-years {
  background-color: var(--white-color);
  padding: 30px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 30px;
}
.about-image .about-years h3 {
  font-size: 80px;
  color: var(--main-color);
  margin-bottom: 5px;
}
.about-image .about-years span {
  color: var(--paragraph-color);
}

.about-content {
  margin-left: 30px;
}
.about-content span {
  font-size: var(--font-size);
  color: var(--main-color);
  display: inline-block;
  margin-bottom: 18px;
}
.about-content h3 {
  font-size: 42px;
  margin-bottom: 18px;
  line-height: 1.4;
}
.about-content p {
  margin-bottom: 0;
}
.about-content .about-signature {
  position: relative;
  padding-left: 165px;
  margin-top: 30px;
}
.about-content .about-signature img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about-content .about-signature::before {
  position: absolute;
  left: 130px;
  top: 5px;
  width: 1px;
  content: "";
  height: 45px;
  background-color: var(--main-color);
}
.about-content .about-signature h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--main-color);
  font-weight: 600;
}
.about-content .about-signature span {
  font-size: var(--font-size);
  color: var(--paragraph-color);
}
.about-content .about-btn {
  margin-top: 30px;
}
.about-content .about-list {
  padding: 0;
  margin-bottom: 0;
  margin-top: 20px;
}
.about-content .about-list li {
  list-style-type: none;
  color: var(--paragraph-color);
  margin-bottom: 15px;
  position: relative;
  padding-left: 22px;
}
.about-content .about-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--main-color);
}
.about-content .about-list li:last-child {
  margin-bottom: 0;
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap .about-years {
  background-color: var(--white-color);
  padding: 30px;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 185px;
}
.about-image-wrap .about-years h3 {
  font-size: 80px;
  color: var(--main-color);
  margin-bottom: 5px;
}
.about-image-wrap .about-years span {
  color: var(--paragraph-color);
}

/*================================================
Funfact Area CSS
=================================================*/
.fun-fact-area {
  background-color: #f9fafb;
}
.fun-fact-area.bg-image {
  background-color: transparent;
  background-image: url(../../assets/images/fun-fact-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.fun-fact-area.bg-image .single-funfact-content h3 {
  color: var(--white-color);
}
.fun-fact-area.bg-image .single-funfact-card .icon::before {
  border: 1px solid var(--main-color);
}
.fun-fact-area.bg-image .single-funfact-card .icon::after {
  background-color: #1a1e27;
}
.fun-fact-area.bg-image .single-funfact-card .icon i {
  color: var(--white-color);
}
.fun-fact-area.bg-image .single-funfact-card p {
  color: var(--white-color);
}

.single-funfact-content span {
  font-size: var(--font-size);
  color: var(--main-color);
  display: inline-block;
  margin-bottom: 15px;
}
.single-funfact-content h3 {
  font-size: 42px;
  margin-bottom: 0;
}

.single-funfact-card {
  margin-bottom: 25px;
}
.single-funfact-card .icon {
  display: inline-block;
  line-height: 0;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  padding: 5px 20px;
}
.single-funfact-card .icon::before {
  display: inline-block;
  position: absolute;
  content: "";
  height: 85px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--main-color);
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}
.single-funfact-card .icon::after {
  display: inline-block;
  position: absolute;
  content: "";
  height: 80px;
  width: 80px;
  background-color: #f9fafb;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: -1;
}
.single-funfact-card .icon i {
  font-size: 70px;
  color: var(--optional-color);
  line-height: 0;
}
.single-funfact-card h3 {
  line-height: 0;
  font-size: 35px;
  color: var(--main-color);
  margin-bottom: 5px;
}
.single-funfact-card h3 .small-text {
  font-size: 35px;
  position: relative;
  left: -5px;
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
  overflow: hidden;
  background-color: #1a1e27;
}
.services-area .container-fluid {
  overflow: hidden;
}
.services-area .section-title-wrap h2 {
  color: var(--white-color);
}
.services-area .section-title-wrap p {
  color: var(--white-color);
}
.services-area.bg-transparent {
  background-color: var(--white-color);
}
.services-area.bg-transparent .section-title-wrap h2 {
  color: var(--black-color);
}
.services-area.bg-transparent .section-title-wrap p {
  color: var(--paragraph-color);
}
.services-area.bg-transparent .single-services-card .services-content {
  background-color: #f9fafb;
  box-shadow: unset;
}
.services-area.bg-transparent .single-services-card:hover .services-content {
  background-color: var(--main-color);
}
.services-area.bg-f9fafb {
  background-color: #f9fafb;
}

.single-services-card {
  margin-bottom: 25px;
}
.single-services-card a img {
  display: inline-block !important;
}
.single-services-card .services-content {
  background-color: var(--white-color);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px 85px 25px 25px;
  position: relative;
  transition: var(--transition);
}
.single-services-card .services-content h3 {
  font-size: 15px;
  margin-bottom: 0;
}
.single-services-card .services-content h3 a {
  color: var(--black-color);
}
.single-services-card .services-content .add-icon {
  display: inline-block;
  height: 55px;
  width: 55px;
  line-height: 58px;
  background-color: var(--main-color);
  text-align: center;
  font-size: 25px;
  color: var(--white-color);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.single-services-card:hover .services-content {
  background-color: var(--main-color);
}
.single-services-card:hover .services-content h3 a {
  color: var(--white-color);
}
.single-services-card:hover .services-content .add-icon {
  background-color: var(--optional-color);
}

.single-services-box {
  margin-bottom: 25px;
  background-color: var(--white-color);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 35px;
  border: 1px solid #ebebeb;
  margin-left: 2px;
}
.single-services-box .icon {
  margin-bottom: 15px;
}
.single-services-box .icon i {
  font-size: 65px;
  color: var(--main-color);
}
.single-services-box p {
  margin-bottom: 20px;
}
.single-services-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.single-services-box h3 a {
  color: var(--black-color);
}
.single-services-box .default-btn {
  background-color: #f9fafb;
  border: 1px solid var(--main-color);
  color: var(--black-color) !important;
}
.single-services-box .default-btn:hover {
  color: var(--white-color) !important;
}

.services-slides {
  left: calc((100% - 1290px) / 2);
  position: relative;
}
.services-slides.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: left;
}
.services-slides.owl-theme .owl-nav [class*=owl-] {
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 68px;
  background: var(--white-color);
  color: var(--black-color);
  border-radius: 0;
  text-align: center;
  font-size: 20px;
  transition: var(--transition);
  border: 1px solid var(--white-color);
  margin: 0 2px 0 0;
}
.services-slides.owl-theme .owl-nav [class*=owl-]:last-child {
  margin-right: 0;
}
.services-slides.owl-theme .owl-nav [class*=owl-]:hover {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: var(--white-color);
}

.services-slides-two.owl-theme .owl-nav {
  margin-top: 0;
}
.services-slides-two.owl-theme .owl-nav [class*=owl-] {
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 68px;
  background: #f9fafb;
  color: var(--black-color);
  border-radius: 0;
  text-align: center;
  font-size: 20px;
  transition: var(--transition);
  border: 1px solid #ebebeb;
  margin: 0;
  position: absolute;
  left: -75px;
  top: 40%;
  transform: translateY(-40%);
}
.services-slides-two.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -75px;
}
.services-slides-two.owl-theme .owl-nav [class*=owl-]:hover {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: var(--white-color);
}

.services-more-item {
  display: none;
}

/*================================================
Services Details Area CSS
=================================================*/
.services-details-desc h3 {
  font-size: 30px;
  margin-bottom: 18px;
  margin-top: 30px;
}
.services-details-desc h4 {
  font-size: 30px;
  margin-bottom: 18px;
}
.services-details-desc .services-details-image {
  margin-top: 35px;
  margin-bottom: 5px;
}

.services-details-form {
  background-color: var(--white-color);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 45px;
  margin-top: 45px;
}
.services-details-form .content {
  margin-bottom: 35px;
  text-align: center;
}
.services-details-form .content h3 {
  font-size: 30px;
  margin-bottom: 0;
  margin-top: 0;
}
.services-details-form .form-group {
  margin-bottom: 25px;
}
.services-details-form .form-group .form-control {
  height: unset;
  display: inline-block;
  padding: 20px 25px;
  width: 100%;
  border: none;
  border: 1px solid #ebebeb;
  background-color: #f9fafb;
  border-radius: 0;
  color: var(--paragraph-color);
  font-size: var(--font-size);
  font-weight: 400;
  transition: var(--transition);
}
.services-details-form .form-group .form-control::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: var(--paragraph-color);
}
.services-details-form .form-group .form-control::placeholder {
  transition: var(--transition);
  color: var(--paragraph-color);
}
.services-details-form .form-group .form-control:focus {
  box-shadow: unset;
  border: 1px solid var(--main-color);
}
.services-details-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.services-details-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.services-details-form .form-group textarea.form-control {
  height: 150px !important;
  display: inherit;
}
.services-details-form .form-group .selectize-input {
  display: block;
  padding: 20px 45px 20px 20px;
  width: 100%;
  border: 1px solid #ebebeb;
  background-color: #f9fafb;
  border-radius: 0;
  color: var(--paragraph-color);
  font-size: var(--font-size);
  font-weight: 400;
  overflow: inherit;
  text-align: start;
  box-shadow: unset;
}
.services-details-form .form-group .selectize-input:after {
  content: "\ea4e";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  margin-top: 0;
  font-size: 20px;
  width: unset;
  height: unset;
  border-style: unset;
  border-width: unset;
  color: var(--paragraph-color);
  font-family: "remixicon";
}
.services-details-form .form-group .selectize-input > * {
  line-height: 1.5;
  text-align: start;
}
.services-details-form .form-group .selectize-input input {
  font-size: 16px;
  line-height: 1.5;
  text-align: start;
}
.services-details-form .form-group .selectize-dropdown {
  box-shadow: none;
  border: none;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  border-radius: 0;
  text-align: start;
}
.services-details-form .form-group .selectize-dropdown [data-selectable] {
  font-size: 15px;
  border-radius: 0;
  padding: 12px 20px;
  border-radius: 0;
  text-align: start;
}
.services-details-form .default-btn {
  border: none;
  width: 100%;
  padding: 20px 25px;
}
.services-details-form .default-btn::before {
  width: 950px;
  height: 950px;
}

/*================================================
Choose Area CSS
=================================================*/
.choose-area.bg-f9fafb {
  background-color: #f9fafb;
}

.choose-content span {
  font-size: var(--font-size);
  color: var(--main-color);
  display: inline-block;
  margin-bottom: 15px;
}
.choose-content h3 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.choose-content p {
  margin-bottom: 0;
}
.choose-content .choose-inner-content {
  margin-top: 30px;
  position: relative;
  padding-left: 110px;
}
.choose-content .choose-inner-content .icon {
  position: absolute;
  left: 0;
  top: 0;
}
.choose-content .choose-inner-content .icon i {
  display: inline-block;
  height: 85px;
  width: 85px;
  line-height: 90px;
  background-color: var(--optional-color);
  color: var(--white-color);
  font-size: 45px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
}
.choose-content .choose-inner-content .icon.bg-1cb9c8 i {
  line-height: 95px;
  background-color: var(--main-color);
}
.choose-content .choose-inner-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
}
.choose-content .choose-inner-content p {
  margin-bottom: 0;
}

.choose-image {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  margin-right: 30px;
}
.choose-image::before {
  position: absolute;
  content: "";
  height: 95%;
  width: 95%;
  background-color: var(--optional-color);
  right: -30px;
  top: -30px;
  z-index: -1;
}
.choose-image .choose-warrenty {
  background-color: var(--white-color);
  padding: 30px;
  text-align: center;
  position: absolute;
  right: -30px;
  top: 30px;
}
.choose-image .choose-warrenty h3 {
  font-size: 50px;
  color: var(--main-color);
  margin-bottom: 5px;
}
.choose-image .choose-warrenty span {
  color: var(--paragraph-color);
}

.choose-image-wrap {
  position: relative;
  z-index: 1;
  margin-right: 35px;
}
.choose-image-wrap img {
  border-radius: 50%;
}
.choose-image-wrap::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: var(--optional-color);
  right: -35px;
  top: 0;
  z-index: -1;
  border-radius: 50%;
}
.choose-image-wrap .choose-warrenty {
  background-color: var(--optional-color);
  padding: 62px 35px;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 35px;
  border-radius: 50%;
}
.choose-image-wrap .choose-warrenty h3 {
  font-size: 50px;
  color: var(--white-color);
  margin-bottom: 5px;
}
.choose-image-wrap .choose-warrenty span {
  color: var(--white-color);
}

/*================================================
Appointment Area CSS
=================================================*/
.appointment-area {
  background-image: url(../../assets/images/appointment/appointment-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.appointment-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #0d4190;
  z-index: -1;
  opacity: 0.95;
}
.appointment-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white-color);
  z-index: -1;
  height: 70px;
}
.appointment-area.bg-black {
  background-image: url(../../assets/images/appointment/appointment-bg-2.jpg);
}
.appointment-area.bg-black::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--black-color);
  z-index: -1;
  opacity: 0.95;
}
.appointment-area.bg-black::after {
  display: none;
}
.appointment-area.bg-black .appointment-form-wrap {
  margin-top: 0;
  position: relative;
  top: -90px;
}

.appointment-form-wrap {
  background-color: var(--white-color);
  padding: 45px;
  text-align: center;
  margin-top: 70px;
}
.appointment-form-wrap.with-border {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  margin-top: 0;
}
.appointment-form-wrap.with-border .appointment-form .default-btn::before {
  width: 1550px;
  height: 1550px;
}
.appointment-form-wrap .content {
  margin-bottom: 35px;
}
.appointment-form-wrap .content h3 {
  font-size: 40px;
  margin-bottom: 0;
}
.appointment-form-wrap .appointment-form .form-group {
  margin-bottom: 25px;
}
.appointment-form-wrap .appointment-form .form-group .form-control {
  height: unset;
  display: inline-block;
  padding: 20px 25px;
  width: 100%;
  border: none;
  border: 1px solid #ebebeb;
  background-color: #f9fafb;
  border-radius: 0;
  color: var(--paragraph-color);
  font-size: var(--font-size);
  font-weight: 400;
  transition: var(--transition);
}
.appointment-form-wrap .appointment-form .form-group .form-control::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: var(--paragraph-color);
}
.appointment-form-wrap .appointment-form .form-group .form-control::placeholder {
  transition: var(--transition);
  color: var(--paragraph-color);
}
.appointment-form-wrap .appointment-form .form-group .form-control:focus {
  box-shadow: unset;
  border: 1px solid var(--main-color);
}
.appointment-form-wrap .appointment-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.appointment-form-wrap .appointment-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.appointment-form-wrap .appointment-form .form-group textarea.form-control {
  height: 150px !important;
  display: inherit;
}
.appointment-form-wrap .appointment-form .form-group .selectize-input {
  display: block;
  padding: 20px 45px 20px 20px;
  width: 100%;
  border: 1px solid #ebebeb;
  background-color: #f9fafb;
  border-radius: 0;
  color: var(--paragraph-color);
  font-size: var(--font-size);
  font-weight: 400;
  overflow: inherit;
  text-align: start;
  box-shadow: unset;
}
.appointment-form-wrap .appointment-form .form-group .selectize-input:after {
  content: "\ea4e";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  margin-top: 0;
  font-size: 20px;
  width: unset;
  height: unset;
  border-style: unset;
  border-width: unset;
  color: var(--paragraph-color);
  font-family: "remixicon";
}
.appointment-form-wrap .appointment-form .form-group .selectize-input > * {
  line-height: 1.5;
  text-align: start;
}
.appointment-form-wrap .appointment-form .form-group .selectize-input input {
  font-size: 16px;
  line-height: 1.5;
  text-align: start;
}
.appointment-form-wrap .appointment-form .form-group .selectize-dropdown {
  box-shadow: none;
  border: none;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  border-radius: 0;
  text-align: start;
}
.appointment-form-wrap .appointment-form .form-group .selectize-dropdown [data-selectable] {
  font-size: 15px;
  border-radius: 0;
  padding: 12px 20px;
  border-radius: 0;
  text-align: start;
}
.appointment-form-wrap .appointment-form .default-btn {
  border: none;
  width: 100%;
  padding: 20px 25px;
}
.appointment-form-wrap .appointment-form .default-btn::before {
  width: 950px;
  height: 950px;
}

.ui-datepicker {
  border: 0 !important;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
}
.ui-datepicker .ui-datepicker-prev {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  left: -2px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  border-radius: 50px;
  background-color: var(--main-color);
  color: var(--white-color);
}
.ui-datepicker .ui-datepicker-prev span {
  display: none;
}
.ui-datepicker .ui-datepicker-prev:before {
  content: "\ea64";
  font-family: "remixicon";
}
.ui-datepicker .ui-datepicker-prev:hover {
  background-color: var(--optional-color) !important;
  border: 1px solid var(--optional-color) !important;
}
.ui-datepicker .ui-datepicker-next {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  cursor: pointer;
  text-align: center;
  right: -2px;
  transition: var(--transition);
  border-radius: 50px;
  background-color: var(--main-color);
  color: var(--white-color);
}
.ui-datepicker .ui-datepicker-next span {
  display: none;
}
.ui-datepicker .ui-datepicker-next:before {
  content: "\ea6e";
  font-family: "remixicon";
}
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--optional-color) !important;
  border: 1px solid var(--optional-color) !important;
}
.ui-datepicker th {
  color: var(--black-color);
  font-size: 15px;
  font-weight: 500;
}
.ui-datepicker .ui-datepicker-header {
  padding: 0;
  background-color: transparent;
  border: 0;
}
.ui-datepicker .ui-datepicker-title {
  font-size: var(--font-size);
  color: var(--black-color);
}
.ui-datepicker .ui-state-default, .ui-datepicker .ui-widget-content .ui-state-default {
  border: 1px solid #eeeeee;
  background: #eeeeee;
  color: var(--paragraph-color);
  text-align: center;
  border-radius: 50px;
}
.ui-datepicker .ui-state-active, .ui-datepicker .ui-widget-content .ui-state-active {
  border-color: var(--main-color);
  background: var(--main-color);
  color: var(--white-color) !important;
  transition: var(--transition);
}
.ui-datepicker .ui-state-hover, .ui-datepicker .ui-datepicker-next-hover {
  border: 1px solid var(--main-color) !important;
  background: var(--main-color) !important;
  font-weight: 600 !important;
  transition: var(--transition);
  color: var(--white-color) !important;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area {
  background-color: #f9fafb;
}
.partner-area.bg-transparent {
  background-color: var(--white-color);
}

.partner-content span {
  font-size: var(--font-size);
  color: var(--main-color);
  display: inline-block;
  margin-bottom: 15px;
}
.partner-content h3 {
  font-size: 42px;
  margin-bottom: 0;
}

.partner-slides .image-box {
  text-align: center;
  background-color: var(--white-color);
  border: 1px solid #ebebeb;
  padding: 35px 20px;
}
.partner-slides .image-box img {
  display: inline-block;
  max-width: 100%;
  width: auto;
  margin: auto;
}

.partner-slides-two .image-box {
  text-align: center;
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  padding: 35px 20px;
}
.partner-slides-two .image-box img {
  display: inline-block;
  max-width: 100%;
  width: auto;
  margin: auto;
}

/*================================================
Pricing Area CSS
=================================================*/
.pricing-area.bg-f9fafb {
  background-color: #f9fafb;
}
.pricing-area.bg-f9fafb .pricing-slides.owl-theme .owl-nav [class*=owl-] {
  background-color: var(--white-color);
}
.pricing-area.bg-f9fafb .pricing-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--optional-color);
}

.pricing-content span {
  font-size: var(--font-size);
  color: var(--main-color);
  display: inline-block;
  margin-bottom: 15px;
}
.pricing-content h3 {
  font-size: 42px;
  margin-bottom: 18px;
}

.single-pricing-box {
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  padding: 45px 35px;
  transition: var(--transition);
}
.single-pricing-box .pricing-header {
  text-align: center;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 30px;
  margin-bottom: 30px;
  transition: var(--transition);
}
.single-pricing-box .pricing-header h3 {
  font-size: 20px;
  margin-bottom: 25px;
  transition: var(--transition);
}
.single-pricing-box .pricing-header .price {
  font-size: 50px;
  color: var(--black-color);
  font-weight: bold;
  line-height: 1;
  transition: var(--transition);
}
.single-pricing-box .pricing-header .price span {
  font-size: var(--font-size);
  color: var(--paragraph-color);
  font-weight: 400;
  position: relative;
  top: -5px;
  left: -5px;
  transition: var(--transition);
}
.single-pricing-box .pricing-features {
  padding: 0;
  margin-bottom: 0;
}
.single-pricing-box .pricing-features li {
  list-style-type: none;
  color: var(--paragraph-color);
  font-weight: 400;
  margin-bottom: 18px;
  position: relative;
  padding-left: 30px;
  transition: var(--transition);
}
.single-pricing-box .pricing-features li:last-child {
  margin-bottom: 0;
}
.single-pricing-box .pricing-features li i {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  font-size: 15px;
  background-color: var(--paragraph-color);
  color: var(--white-color);
  text-align: center;
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}
.single-pricing-box .pricing-btn {
  margin-top: 30px;
}
.single-pricing-box .pricing-btn .default-btn {
  padding: 15px 45px;
  transition: var(--transition);
  background-color: var(--optional-color);
  transition: var(--transition);
}
.single-pricing-box:hover {
  background-color: var(--optional-color);
  border: 1px solid --optional-color;
}
.single-pricing-box:hover .pricing-header {
  border-bottom: 1px solid #619fe3;
}
.single-pricing-box:hover .pricing-header h3 {
  color: var(--white-color);
}
.single-pricing-box:hover .pricing-header .price {
  color: var(--white-color);
}
.single-pricing-box:hover .pricing-header .price span {
  color: var(--white-color);
}
.single-pricing-box:hover .pricing-features li {
  color: var(--white-color);
}
.single-pricing-box:hover .pricing-features li i {
  background-color: var(--white-color);
  color: var(--main-color);
}
.single-pricing-box:hover .pricing-btn .default-btn {
  background-color: var(--white-color);
  color: var(--black-color) !important;
}
.single-pricing-box:hover .pricing-btn .default-btn::before {
  background-color: var(--main-color);
}
.single-pricing-box:hover .pricing-btn .default-btn:hover {
  color: var(--white-color) !important;
}
.single-pricing-box.bg-image {
  position: relative;
  z-index: 1;
  border: none;
  background-color: var(--white-color);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  margin-bottom: 25px;
}
.single-pricing-box.bg-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0%;
  background-image: url(../images/pricing.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: var(--transition);
  opacity: 0;
}
.single-pricing-box.bg-image::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0%;
  background-color: var(--black-color);
  transition: var(--transition);
  opacity: 0;
}
.single-pricing-box.bg-image:hover::before {
  height: 100%;
  opacity: 1;
}
.single-pricing-box.bg-image:hover::after {
  height: 100%;
  opacity: 0.9;
}

.pricing-slides.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: left;
  position: absolute;
  bottom: 35%;
  left: -60%;
  transform: translateY(-35%) translateX(60%);
}
.pricing-slides.owl-theme .owl-nav [class*=owl-] {
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 68px;
  background: #f9fafb;
  color: var(--black-color);
  border-radius: 0;
  text-align: center;
  font-size: 20px;
  transition: var(--transition);
  border: 1px solid #ebebeb;
  margin: 0 2px 0 0;
}
.pricing-slides.owl-theme .owl-nav [class*=owl-]:last-child {
  margin-right: 0;
}
.pricing-slides.owl-theme .owl-nav [class*=owl-]:hover {
  border: 1px solid var(--optional-color);
  background: var(--optional-color);
  color: var(--white-color);
}

/*================================================
Country Area CSS
=================================================*/
.country-area {
  background-color: #f9fafb;
}
.country-area.bg-ffffff {
  background-color: var(--white-color);
}

.country-content span {
  font-size: var(--font-size);
  color: var(--main-color);
  display: inline-block;
  margin-bottom: 15px;
}
.country-content h3 {
  font-size: 42px;
  margin-bottom: 18px;
}
.country-content .country-list {
  padding: 0;
  margin-bottom: 0;
  margin-top: 15px;
}
.country-content .country-list li {
  list-style-type: none;
  margin-bottom: 18px;
  position: relative;
  padding-left: 22px;
}
.country-content .country-list li:last-child {
  margin-bottom: 0;
}
.country-content .country-list li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--optional-color);
}

.country-map {
  text-align: center;
}
.country-map .map-text {
  margin-top: 30px;
}

/*================================================
Team Area CSS
=================================================*/
.team-area {
  overflow: hidden;
}
.team-area .container-fluid {
  overflow: hidden;
}
.team-area.bg-image {
  background-image: url(../../assets/images/team-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.team-area.bg-image .section-title-wrap h2 {
  color: var(--white-color);
}

.single-team-card {
  margin-bottom: 25px;
}
.single-team-card .team-content {
  position: relative;
  background-color: #f9fafb;
  padding: 20px;
}
.single-team-card .team-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.single-team-card .team-content span 
{
    font-weight:bold;
    color: var(--main-color);
  font-size: 15px;
  
}
.single-team-card .team-content .social-btn {
  margin-bottom: 0;
  padding: 0;
  position: absolute;
  right: 85px;
  top: 85px;
}
.single-team-card .team-content .social-btn li {
  display: inline-block;
  position: absolute;
  bottom: 0;
  transition: var(--transition);
  list-style-type: none;
}
.single-team-card .team-content .social-btn li:nth-child(1) {
  z-index: 1;
}
.single-team-card .team-content .social-btn li:nth-child(2) {
  bottom: 0;
}
.single-team-card .team-content .social-btn li:nth-child(3) {
  bottom: 0;
}
.single-team-card .team-content .social-btn li:nth-child(4) {
  bottom: 0;
}
.single-team-card .team-content .social-btn li a {
  color: var(--white-color);
}
.single-team-card .team-content .social-btn li a i {
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background-color: var(--main-color);
  color: var(--white-color);
  text-align: center;
  font-size: 20px;
  transition: var(--transition);
}
.single-team-card .team-content .social-btn li a:hover i {
  background-color: var(--optional-color);
}
.single-team-card .team-content .social-btn:hover li:nth-child(1) {
  z-index: 1;
}
.single-team-card .team-content .social-btn:hover li:nth-child(2) {
  bottom: 58px;
}
.single-team-card .team-content .social-btn:hover li:nth-child(3) {
  bottom: 115px;
}
.single-team-card .team-content .social-btn:hover li:nth-child(4) {
  bottom: 172px;
}

.team-slides {
  left: calc((100% - 1290px) / 2);
  position: relative;
}
.team-slides.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: left;
}
.team-slides.owl-theme .owl-nav [class*=owl-] {
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 68px;
  background: #f9fafb;
  color: var(--black-color);
  border-radius: 0;
  text-align: center;
  font-size: 20px;
  transition: var(--transition);
  border: 1px solid #ebebeb;
  margin: 0 2px 0 0;
}
.team-slides.owl-theme .owl-nav [class*=owl-]:last-child {
  margin-right: 0;
}
.team-slides.owl-theme .owl-nav [class*=owl-]:hover {
  border: 1px solid var(--optional-color);
  background: var(--optional-color);
  color: var(--white-color);
}

/*================================================
Testimonial Area CSS
=================================================*/
.testimonial-image {
  position: relative;
}
.testimonial-image::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000000;
  opacity: 0.7;
}
.testimonial-image .video-view {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.testimonial-image .video-view i {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 92px;
  background-color: transparent;
  border: 5px solid var(--white-color);
  color: var(--optional-color);
  text-align: center;
  font-size: 50px;
  transition: var(--transition);
  border-radius: 50px;
}
.testimonial-image .video-view i:hover {
  background-color: var(--optional-color);
  border: 5px solid var(--optional-color);
  color: var(--white-color);
}

.testimonial-content {
  margin-bottom: 35px;
}
.testimonial-content h3 {
  font-size: 42px;
  margin-bottom: 0;
}

.single-testimonial-card {
  background-color: #f9fafb;
  padding: 45px 55px;
  position: relative;
}
.single-testimonial-card.bg-1a1e27 {
  background-color: #1a1e27;
}
.single-testimonial-card.bg-1a1e27 p {
  color: var(--white-color);
}
.single-testimonial-card.bg-1a1e27 .info h4 {
  color: var(--white-color);
}
.single-testimonial-card.bg-1a1e27 .info span {
  color: var(--white-color);
}
.single-testimonial-card.bg-1a1e27 .info .quote-icon i {
  color: var(--main-color);
}
.single-testimonial-card p {
  margin-bottom: 0;
}
.single-testimonial-card .info {
  margin-top: 35px;
  position: relative;
  padding-left: 80px;
  margin-left: 20px;
}
.single-testimonial-card .info img {
  display: inline-block;
  width: 58px;
  height: 58px;
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-testimonial-card .info h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.single-testimonial-card .info span {
  color: var(--paragraph-color);
}
.single-testimonial-card .info .quote-icon {
  position: absolute;
  left: -20px;
  top: -10px;
}
.single-testimonial-card .info .quote-icon i {
  color: var(--optional-color);
  font-size: 30px;
}
.single-testimonial-card .rating {
  position: absolute;
  bottom: 45px;
  right: 55px;
}
.single-testimonial-card .rating i {
  color: #fcdf69;
}

.testimonial-box {
  margin-left: -100px;
}

.testimonial-slides.owl-theme .owl-nav {
  margin-top: 30px;
  text-align: right;
}
.testimonial-slides.owl-theme .owl-nav [class*=owl-] {
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 68px;
  background: #f9fafb;
  color: var(--black-color);
  border-radius: 0;
  text-align: center;
  font-size: 20px;
  transition: var(--transition);
  border: 1px solid #ebebeb;
  margin: 0 2px 0 0;
}
.testimonial-slides.owl-theme .owl-nav [class*=owl-]:last-child {
  margin-right: 0;
}
.testimonial-slides.owl-theme .owl-nav [class*=owl-]:hover {
  border: 1px solid var(--optional-color);
  background: var(--optional-color);
  color: var(--white-color);
}

/*================================================
Blog Area CSS
=================================================*/
.single-blog-card {
  margin-bottom: 25px;
}
.single-blog-card .blog-image {
  position: relative;
}
.single-blog-card .blog-image a img {
  display: inline-block;
}
.single-blog-card .blog-image .date {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--optional-color);
  padding: 15px 30px;
}
.single-blog-card .blog-image .date h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--white-color);
}
.single-blog-card .blog-image .date span {
  font-size: var(--font-size);
  color: var(--white-color);
}
.single-blog-card .blog-content {
  margin-top: 25px;
}
.single-blog-card .blog-content .entry-meta {
  padding: 0;
  margin-bottom: 15px;
}
.single-blog-card .blog-content .entry-meta li {
  color: var(--paragraph-color);
  list-style-type: none;
  display: inline-block;
  margin-right: 20px;
  position: relative;
  padding-left: 22px;
}
.single-blog-card .blog-content .entry-meta li:last-child {
  margin-right: 0;
  padding-left: 0;
}
.single-blog-card .blog-content .entry-meta li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--main-color);
}
.single-blog-card .blog-content .entry-meta li a {
  color: var(--paragraph-color);
}
.single-blog-card .blog-content .entry-meta li a:hover {
  color: var(--main-color);
}
.single-blog-card .blog-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.single-blog-card .blog-content h3 a {
  color: var(--black-color);
}
.single-blog-card .blog-content .blog-btn {
  color: var(--optional-color);
  font-weight: 500;
}
.single-blog-card:hover .blog-content h3 a {
  color: var(--optional-color);
}

.blog-item-right-box {
  margin-bottom: 25px;
}
.blog-item-right-box .post-image {
  background-image: url(../../assets/images/blog/blog-2.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
.blog-item-right-box .post-image.bg-2 {
  background-image: url(../../assets/images/blog/blog-3.jpg);
}
.blog-item-right-box .post-content {
  padding: 40px 0 40px 15px;
}
.blog-item-right-box .post-content .entry-meta {
  padding: 0;
  margin-bottom: 15px;
}
.blog-item-right-box .post-content .entry-meta li {
  color: var(--paragraph-color);
  list-style-type: none;
  display: inline-block;
  margin-right: 20px;
  position: relative;
  padding-left: 22px;
}
.blog-item-right-box .post-content .entry-meta li:last-child {
  margin-right: 0;
  padding-left: 0;
}
.blog-item-right-box .post-content .entry-meta li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--main-color);
}
.blog-item-right-box .post-content .entry-meta li a {
  color: var(--paragraph-color);
}
.blog-item-right-box .post-content .entry-meta li a:hover {
  color: var(--main-color);
}
.blog-item-right-box .post-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.blog-item-right-box .post-content h3 a {
  color: var(--black-color);
}
.blog-item-right-box .post-content .post-btn {
  color: var(--optional-color);
  font-weight: 500;
}
.blog-item-right-box:hover .post-content h3 a {
  color: var(--optional-color);
}

.blog-more-item {
  display: none;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-content .article-image {
  margin-bottom: 30px;
}
.blog-details-desc .article-content .entry-meta {
  padding: 0;
  margin-bottom: 20px;
}
.blog-details-desc .article-content .entry-meta li {
  display: inline-block;
  font-size: var(--font-size);
  color: var(--paragraph-color);
  margin-right: 32px;
  position: relative;
}
.blog-details-desc .article-content .entry-meta li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50px;
  background-color: var(--main-color);
  right: -22px;
  top: 8px;
}
.blog-details-desc .article-content .entry-meta li:last-child {
  margin-right: 0;
}
.blog-details-desc .article-content .entry-meta li:last-child::before {
  display: none;
}
.blog-details-desc .article-content .entry-meta li a {
  color: var(--paragraph-color);
}
.blog-details-desc .article-content .entry-meta li a:hover {
  color: var(--main-color);
}
.blog-details-desc .article-content h3 {
  font-size: 40px;
  margin-bottom: 15px;
}
.blog-details-desc .article-content .blog-desc-quote {
  position: relative;
  background: #f9fafb;
  padding: 35px 35px 35px 85px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.blog-details-desc .article-content .blog-desc-quote i {
  font-size: 32px;
  color: var(--main-color);
  position: absolute;
  left: 35px;
  top: 40px;
}
.blog-details-desc .article-content .blog-desc-quote span {
  color: var(--main-color);
  position: relative;
  padding-left: 65px;
}
.blog-details-desc .article-content .blog-desc-quote span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 50px;
  background-color: var(--main-color);
}
.blog-details-desc .article-tags {
  margin-top: 30px;
}
.blog-details-desc .article-tags ul {
  padding: 0;
  margin-bottom: 0;
}
.blog-details-desc .article-tags ul li {
  display: inline-block;
  list-style-type: none;
  margin-right: 10px;
}
.blog-details-desc .article-tags ul li:last-child {
  margin-right: 0;
}
.blog-details-desc .article-tags ul li span {
  font-size: var(--font-size);
  color: var(--paragraph-color);
  position: relative;
  top: -1px;
}
.blog-details-desc .article-tags ul li a {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #e1e1e1;
  font-size: 15px;
}
.blog-details-desc .article-tags ul li a:hover {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  color: var(--white-color);
}
.blog-details-desc .article-share {
  margin-top: 30px;
  text-align: right;
}
.blog-details-desc .article-share ul {
  padding: 0;
  margin-bottom: 0;
}
.blog-details-desc .article-share ul li {
  display: inline-block;
  list-style-type: none;
  margin-right: 10px;
}
.blog-details-desc .article-share ul li:last-child {
  margin-right: 0;
}
.blog-details-desc .article-share ul li span {
  font-size: var(--font-size);
  color: var(--paragraph-color);
  position: relative;
  top: -1px;
}
.blog-details-desc .article-share ul li a i {
  font-size: 18px;
  position: relative;
  top: 2px;
  transition: var(--transition);
  display: inline-block;
  color: var(--paragraph-color);
}
.blog-details-desc .article-share ul li a i:hover {
  transform: translateY(-5px);
  color: var(--main-color);
}
.blog-details-desc .article-comments {
  margin-top: 38px;
}
.blog-details-desc .article-comments h3 {
  font-size: 35px;
  margin-bottom: 0;
}
.blog-details-desc .article-comments .comments-list {
  position: relative;
  margin-top: 35px;
  padding-left: 105px;
}
.blog-details-desc .article-comments .comments-list img {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  height: 85px;
  width: 85px;
  border-radius: 0;
}
.blog-details-desc .article-comments .comments-list h5 {
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 600;
}
.blog-details-desc .article-comments .comments-list p {
  margin-bottom: 0;
}
.blog-details-desc .article-comments .comments-list span {
  font-size: 15px;
  color: var(--paragraph-color);
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 15px;
}
.blog-details-desc .article-comments .comments-list .reply-btn {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--main-color);
}
.blog-details-desc .article-comments .comments-list .reply-btn i {
  position: relative;
  top: 1px;
}
.blog-details-desc .article-leave-comment {
  margin-top: 35px;
}
.blog-details-desc .article-leave-comment h3 {
  font-size: 35px;
  margin-bottom: 15px;
}
.blog-details-desc .article-leave-comment form {
  margin-top: 30px;
}
.blog-details-desc .article-leave-comment form .form-group {
  margin-bottom: 25px;
}
.blog-details-desc .article-leave-comment form .form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--paragraph-color);
  font-weight: 500;
  font-size: 15px;
}
.blog-details-desc .article-leave-comment form .form-group .form-control {
  height: 60px;
  padding: 15px 25px;
  line-height: initial;
  color: var(--paragraph-color);
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  box-shadow: unset;
  transition: var(--transition);
  font-size: var(--font-size);
  font-weight: 400;
}
.blog-details-desc .article-leave-comment form .form-group .form-control::-moz-placeholder {
  color: var(--paragraph-color);
}
.blog-details-desc .article-leave-comment form .form-group .form-control::placeholder {
  color: var(--paragraph-color);
}
.blog-details-desc .article-leave-comment form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.blog-details-desc .article-leave-comment form .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.blog-details-desc .article-leave-comment form .form-group textarea.form-control {
  min-height: 115px;
}
.blog-details-desc .article-leave-comment form .default-btn {
  border: none;
}

/*================================================
Project Area CSS
=================================================*/
.project-area .container-fluid {
  overflow: hidden;
}

.single-project-card {
  margin-bottom: 25px;
}
.single-project-card .project-image {
  position: relative;
  z-index: 1;
}
.single-project-card .project-image::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--optional-color);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.single-project-card .project-image .search-icon {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.single-project-card .project-image .search-icon i {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 25px;
  background-color: var(--white-color);
  color: var(--paragraph-color);
  transition: var(--transition);
}
.single-project-card .project-image .search-icon i:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}
.single-project-card .project-image a img {
  display: inline-block !important;
}
.single-project-card .project-content {
  background-color: #f9fafb;
  transition: var(--transition);
  padding: 25px;
}
.single-project-card .project-content h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.single-project-card .project-content h3 a {
  color: var(--black-color);
}
.single-project-card:hover .project-image::before {
  opacity: 1;
  visibility: visible;
  opacity: 0.5;
}
.single-project-card:hover .project-image .search-icon {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.single-project-card:hover .project-content {
  background-color: var(--main-color);
}
.single-project-card:hover .project-content h3 a {
  color: var(--white-color);
}

.project-slides {
  left: calc((100% - 1290px) / 2);
  position: relative;
}
.project-slides.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: left;
}
.project-slides.owl-theme .owl-nav [class*=owl-] {
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 68px;
  background: #f9fafb;
  color: var(--black-color);
  border-radius: 0;
  text-align: center;
  font-size: 20px;
  transition: var(--transition);
  border: 1px solid #ebebeb;
}
.project-slides.owl-theme .owl-nav [class*=owl-]:hover {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: var(--white-color);
}

.project-more-item {
  display: none;
}

/*================================================
Project Details Area CSS
=================================================*/
.project-details-desc h3 {
  font-size: 30px;
  margin-bottom: 18px;
  margin-top: 30px;
}
.project-details-desc h4 {
  font-size: 30px;
  margin-bottom: 18px;
}
.project-details-desc .project-details-image {
  margin-top: 35px;
  margin-bottom: 5px;
}

.project-information {
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  padding: 35px;
}
.project-information h3 {
  font-size: 22px;
  margin-bottom: 25px;
}
.project-information .list {
  padding: 0;
  margin-bottom: 0;
}
.project-information .list li {
  list-style-type: none;
  margin-bottom: 20px;
  font-size: var(--font-size);
  color: var(--black-color);
  font-weight: 500;
}
.project-information .list li:last-child {
  margin-bottom: 0;
}
.project-information .list li span {
  color: var(--paragraph-color);
  font-weight: 400;
}
.project-information .list li span a {
  color: var(--paragraph-color);
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-image {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
.faq-image img {
  border-radius: 50% 50% 0 0;
}
.faq-image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: var(--optional-color);
  right: 0;
  top: -20px;
  z-index: -1;
  border-radius: 50% 50% 0 0;
}
.faq-image .video-view {
  position: absolute;
  right: 0;
  bottom: 0;
}
.faq-image .video-view a i {
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: var(--optional-color);
  color: var(--white-color);
  font-size: 55px;
  text-align: center;
  border-radius: 50px 50px 0 50px;
  transition: var(--transition);
}
.faq-image .video-view a i:hover {
  background-color: var(--main-color);
}

.faq-item {
  margin-left: 35px;
}
.faq-item .faq-content {
  margin-bottom: 30px;
}
.faq-item .faq-content span {
  font-size: var(--font-size);
  color: var(--main-color);
  display: inline-block;
  margin-bottom: 15px;
}
.faq-item .faq-content h3 {
  font-size: 42px;
  margin-bottom: 18px;
}
.faq-item .accordion-item {
  border: none;
  margin-bottom: 10px;
  background-color: transparent;
}
.faq-item .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-item .accordion-item .accordion-button {
  color: var(--black-color);
  position: relative;
  text-align: start;
  box-shadow: unset;
  margin-bottom: 0;
  display: block;
  border: 1px solid #ebebeb;
  width: 100%;
  text-transform: capitalize;
  font-size: var(--font-size);
  font-weight: 500;
  padding: 20px 65px 20px 25px;
  transition: var(--transition);
  background-color: #f9fafb;
}
.faq-item .accordion-item .accordion-button::before {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  content: "\ea78";
  font-family: "remixicon";
  font-size: 20px;
  color: var(--white-color);
}
.faq-item .accordion-item .accordion-button.collapsed::before {
  content: "\ea4e";
  color: var(--black-color);
}
.faq-item .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--main-color);
  color: var(--white-color);
  border: 1px solid var(--main-color);
}
.faq-item .accordion-item .accordion-body {
  padding: 25px;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
.faq-item .accordion-item .accordion-body p {
  color: var(--paragraph-color);
}

/*================================================
Shop Area CSS
=================================================*/
.shop-list-tabs .nav {
  padding: 0;
  list-style-type: none;
  display: block;
  border: none;
  margin-bottom: 0;
}
.shop-list-tabs .nav .nav-item {
  display: inline-block;
  margin-right: 10px;
}
.shop-list-tabs .nav .nav-item:last-child {
  margin-right: 0;
}
.shop-list-tabs .nav .nav-item .nav-link {
  color: var(--black-color);
  border: 1px solid #ebebeb;
  padding: 15px 45px;
  background-color: #f9fafb;
  border-radius: 0;
  transition: var(--transition);
}
.shop-list-tabs .nav .nav-item .nav-link:hover, .shop-list-tabs .nav .nav-item .nav-link.active {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  color: var(--white-color);
}

.single-shop-card {
  margin-bottom: 25px;
}
.single-shop-card .shop-image {
  position: relative;
  overflow: hidden;
  background-color: #f6f7fb;
  text-align: center;
  padding: 65px 30px;
}
.single-shop-card .shop-image a img {
  display: inline-block;
  max-width: 200px;
}
.single-shop-card .shop-content {
  margin-top: 25px;
  position: relative;
}
.single-shop-card .shop-content h3 {
  font-size: 22px;
  margin-bottom: 0;
}
.single-shop-card .shop-content h3 a {
  color: var(--black-color);
}
.single-shop-card .shop-content span {
  color: var(--paragraph-color);
  font-size: 18px;
  display: inline-block;
  margin-top: 12px;
}
.single-shop-card .shop-content .cart-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-shop-card .shop-content .cart-icon a i {
  display: inline-block;
  height: 55px;
  width: 55px;
  line-height: 55px;
  background-color: #f9fafb;
  text-align: center;
  font-size: 20px;
  color: var(--paragraph-color);
  transition: var(--transition);
  border: 1px solid var(--main-color);
}
.single-shop-card:hover .shop-content .cart-icon a i {
  background-color: var(--main-color);
  color: var(--white-color);
  border: 1px solid var(--main-color);
}

.shop-slides.owl-theme .owl-dots {
  margin-top: 30px;
}
.shop-slides.owl-theme .owl-dots .owl-dot span {
  width: 35px;
  height: 5px;
  background-color: #b5b8bb;
  transition: var(--transition);
  border-radius: 0;
  margin: 0 5px;
}
.shop-slides.owl-theme .owl-dots .owl-dot:hover span, .shop-slides.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--main-color);
}

.kadi-grid-sorting {
  margin-bottom: 35px;
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  padding: 15px;
}
.kadi-grid-sorting .result-count p {
  font-weight: 500;
}
.kadi-grid-sorting .result-count p .count {
  font-weight: 700;
  color: var(--black-color);
}
.kadi-grid-sorting .ordering {
  text-align: right;
}
.kadi-grid-sorting .ordering .selectize-input {
  display: block;
  padding: 18px 20px;
  width: 100%;
  border: 1px solid #ebebeb;
  background-color: var(--white-color);
  border-radius: 0;
  color: var(--paragraph-color);
  font-size: var(--font-size);
  font-weight: 400;
  font-family: var(--heading-font-family);
  overflow: inherit;
  text-align: start;
  box-shadow: unset;
}
.kadi-grid-sorting .ordering .selectize-input:after {
  content: "\ea4e";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px !important;
  margin-top: 2px;
  font-size: 18px;
  width: unset;
  height: unset;
  border-style: unset;
  border-width: unset;
  border-color: #6f8ba4;
  font-family: "remixicon";
  transition: var(--transition);
}
.kadi-grid-sorting .ordering .selectize-input > * {
  line-height: 1.5 !important;
  text-align: start;
}
.kadi-grid-sorting .ordering .selectize-input input {
  font-size: 16px;
  line-height: 1.5 !important;
  text-align: start;
}
.kadi-grid-sorting .ordering .selectize-dropdown {
  box-shadow: none;
  border: none;
  border-radius: 0;
  text-align: start;
}
.kadi-grid-sorting .ordering .selectize-dropdown [data-selectable] {
  font-size: 15px;
  border-radius: 0;
  padding: 10px 20px;
  border-radius: 0;
  text-align: start;
}
.kadi-grid-sorting .ordering span {
  display: inline-block;
}

/*================================================
Page Banner CSS
=================================================*/
.page-banner-area {
  padding-top: 100px;
  padding-bottom: 115px;
  position: relative;
  z-index: 1;
  background-image: url(../../assets/images/page-banner/banner-bg-1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.page-banner-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../../assets/images/page-banner/banner-shape.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 90%;
}
.page-banner-area.item-bg-2 {
  background-image: url(../../assets/images/page-banner/banner-bg-2.jpg);
}
.page-banner-area.item-bg-3 {
  background-image: url(../../assets/images/page-banner/banner-bg-3.jpg);
}
.page-banner-area.item-bg-4 {
  background-image: url(../../assets/images/page-banner/banner-bg-4.jpg);
}
.page-banner-area.item-bg-5 {
  background-image: url(../../assets/images/page-banner/banner-bg-5.jpg);
}

.page-banner-content {
  text-align: center;
}
.page-banner-content h2 {
  margin-bottom: 15px;
  font-size: 70px;
  font-weight: 900;
}
.page-banner-content .pages-list {
  text-align: center;
  padding-left: 0;
  margin-bottom: 0;
}
.page-banner-content .pages-list li {
  display: inline-block;
  list-style-type: none;
  margin-left: 30px;
  font-weight: 500;
  color: var(--paragraph-color);
  font-size: var(--font-size);
  position: relative;
}
.page-banner-content .pages-list li::before {
  position: absolute;
  content: ">";
  top: -2px;
  left: -22px;
  color: var(--paragraph-color);
  font-size: 20px;
}
.page-banner-content .pages-list li:first-child {
  margin-left: 0;
}
.page-banner-content .pages-list li:first-child::before {
  display: none;
}
.page-banner-content .pages-list li a {
  display: block;
  color: var(--main-color);
}
.page-banner-content .pages-list li a:hover {
  color: var(--main-color);
}

/*================================================
Login Area CSS
=================================================*/
.login-form {
  padding: 35px 50px;
  max-width: 650px;
  margin: auto;
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
}
.login-form h2 {
  margin-bottom: 30px;
  font-size: 30px;
}
.login-form form .form-group {
  margin-bottom: 25px;
}
.login-form form .form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--paragraph-color);
  font-weight: 500;
}
.login-form form .form-group .form-control {
  height: 60px;
  padding: 15px 25px;
  line-height: initial;
  color: var(--paragraph-color);
  background-color: var(--white-color);
  border: 1px solid #ebebeb;
  border-radius: 5px;
  box-shadow: unset;
  transition: var(--transition);
  font-size: var(--font-size);
  font-weight: 400;
}
.login-form form .form-group .form-control::-moz-placeholder {
  color: var(--paragraph-color);
}
.login-form form .form-group .form-control::placeholder {
  color: var(--paragraph-color);
}
.login-form form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.login-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.login-form form .remember-me-wrap {
  margin-bottom: 0;
}
.login-form form .remember-me-wrap a {
  color: var(--main-color);
}
.login-form form .remember-me-wrap [type=checkbox]:checked, .login-form form .remember-me-wrap [type=checkbox]:not(:checked) {
  display: none;
}
.login-form form .remember-me-wrap [type=checkbox]:checked + label, .login-form form .remember-me-wrap [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  color: var(--paragraph-color);
  font-weight: 500;
  font-size: 15px;
}
.login-form form .remember-me-wrap [type=checkbox]:checked + label:before, .login-form form .remember-me-wrap [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  background: var(--white-color);
}
.login-form form .remember-me-wrap [type=checkbox]:checked + label:after, .login-form form .remember-me-wrap [type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--main-color);
  position: absolute;
  top: 7.5px;
  left: 5px;
  transition: all 0.2s ease;
  border-radius: 30px;
}
.login-form form .remember-me-wrap [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.login-form form .remember-me-wrap [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.login-form form .remember-me-wrap [type=checkbox]:hover + label:before {
  border-color: var(--main-color);
}
.login-form form .remember-me-wrap [type=checkbox]:checked + label:before {
  border-color: var(--main-color);
}
.login-form form .lost-your-password-wrap {
  text-align: right;
}
.login-form form .lost-your-password-wrap a {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--paragraph-color);
  font-family: var(--heading-font-family);
}
.login-form form .lost-your-password-wrap a::before {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  transition: var(--transition);
  background-color: #eeeeee;
}
.login-form form .lost-your-password-wrap a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  transition: var(--transition);
  bottom: 0;
  content: "";
  background-color: var(--main-color);
}
.login-form form .lost-your-password-wrap a:hover::before {
  width: 0;
}
.login-form form .lost-your-password-wrap a:hover::after {
  width: 100%;
}
.login-form form .default-btn {
  border: none;
  width: 100%;
  margin-top: 25px;
}
.login-form form .default-btn::before {
  width: 750px;
  height: 750px;
}
.login-form form .account-text {
  margin-top: 15px;
}
.login-form form .account-text p {
  color: var(--paragraph-color);
}
.login-form form .account-text p a {
  color: var(--paragraph-color);
  font-weight: 500;
}
.login-form form .account-text p a:hover {
  color: var(--main-color);
}

/*================================================
Register Area CSS
=================================================*/
.register-form {
  padding: 35px 50px;
  max-width: 650px;
  margin: auto;
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
}
.register-form h2 {
  margin-bottom: 30px;
  font-size: 30px;
}
.register-form form .form-group {
  margin-bottom: 25px;
}
.register-form form .form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--paragraph-color);
  font-weight: 500;
}
.register-form form .form-group .form-control {
  height: 60px;
  padding: 15px 25px;
  line-height: initial;
  color: var(--paragraph-color);
  background-color: var(--white-color);
  border: 1px solid #ebebeb;
  border-radius: 5px;
  box-shadow: unset;
  transition: var(--transition);
  font-size: var(--font-size);
  font-weight: 400;
}
.register-form form .form-group .form-control::-moz-placeholder {
  color: var(--paragraph-color);
}
.register-form form .form-group .form-control::placeholder {
  color: var(--paragraph-color);
}
.register-form form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.register-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.register-form form .remember-me-wrap {
  margin-bottom: 0;
}
.register-form form .remember-me-wrap a {
  color: var(--main-color);
}
.register-form form .remember-me-wrap [type=checkbox]:checked, .register-form form .remember-me-wrap [type=checkbox]:not(:checked) {
  display: none;
}
.register-form form .remember-me-wrap [type=checkbox]:checked + label, .register-form form .remember-me-wrap [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  color: var(--paragraph-color);
  font-weight: 500;
  font-size: 15px;
}
.register-form form .remember-me-wrap [type=checkbox]:checked + label:before, .register-form form .remember-me-wrap [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  background: var(--white-color);
}
.register-form form .remember-me-wrap [type=checkbox]:checked + label:after, .register-form form .remember-me-wrap [type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--main-color);
  position: absolute;
  top: 7.5px;
  left: 5px;
  transition: all 0.2s ease;
  border-radius: 30px;
}
.register-form form .remember-me-wrap [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.register-form form .remember-me-wrap [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.register-form form .remember-me-wrap [type=checkbox]:hover + label:before {
  border-color: var(--main-color);
}
.register-form form .remember-me-wrap [type=checkbox]:checked + label:before {
  border-color: var(--main-color);
}
.register-form form .remember-me-wrap a {
  color: var(--main-color);
}
.register-form form .default-btn {
  border: none;
  width: 100%;
  margin-top: 25px;
}
.register-form form .default-btn::before {
  width: 750px;
  height: 750px;
}
.register-form form .account-text {
  margin-top: 15px;
}
.register-form form .account-text p {
  color: var(--paragraph-color);
}
.register-form form .account-text p a {
  color: var(--paragraph-color);
  font-weight: 500;
}
.register-form form .account-text p a:hover {
  color: var(--main-color);
}

/*================================================
Terms of Service Area CSS
=================================================*/
.terms-of-service-content h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 22px;
}
.terms-of-service-content .blockquote, .terms-of-service-content blockquote {
  margin-top: 25px;
  margin-bottom: 30px;
  background-color: #e6f2f5;
  text-align: left !important;
  padding: 15px 25px !important;
  border-radius: 5px;
  line-height: 1.5;
}
.terms-of-service-content .blockquote p, .terms-of-service-content blockquote p {
  margin-bottom: 0;
  line-height: 1.8;
  font-weight: 400;
}
.terms-of-service-content .blockquote::after, .terms-of-service-content blockquote::after {
  display: none;
}
.terms-of-service-content .blockquote::before, .terms-of-service-content blockquote::before {
  display: none;
}
.terms-of-service-content ol, .terms-of-service-content ul {
  margin-top: 20px;
}
.terms-of-service-content ol li, .terms-of-service-content ul li {
  margin-bottom: 10px;
  color: var(--font-size);
  line-height: 1.8;
  font-weight: 400;
  font-size: var(--font-size);
  color: var(--paragraph-color);
}

/*================================================
Privacy Policy Area CSS
=================================================*/
.privacy-policy-content h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 22px;
}
.privacy-policy-content .blockquote, .privacy-policy-content blockquote {
  margin-top: 25px;
  margin-bottom: 30px;
  background-color: #e6f2f5;
  text-align: left !important;
  padding: 15px 25px !important;
  border-radius: 5px;
  line-height: 1.5;
}
.privacy-policy-content .blockquote p, .privacy-policy-content blockquote p {
  margin-bottom: 0;
  line-height: 1.8;
  font-weight: 400;
}
.privacy-policy-content .blockquote::after, .privacy-policy-content blockquote::after {
  display: none;
}
.privacy-policy-content .blockquote::before, .privacy-policy-content blockquote::before {
  display: none;
}
.privacy-policy-content ol, .privacy-policy-content ul {
  margin-top: 20px;
}
.privacy-policy-content ol li, .privacy-policy-content ul li {
  margin-bottom: 10px;
  color: var(--font-size);
  line-height: 1.8;
  font-weight: 400;
  font-size: var(--font-size);
  color: var(--paragraph-color);
}

/*================================================
404 Error Area CSS
=================================================*/
.error-content {
  text-align: center;
}
.error-content h3 {
  margin-top: 45px;
  margin-bottom: 20px;
  font-size: 35px;
}
.error-content p {
  max-width: 550px;
  margin: auto;
}
.error-content .default-btn {
  margin-top: 30px;
}

/*================================================
Coming Soon Area CSS
=================================================*/
.coming-soon-area {
  background-image: url(../../assets/images/coming-soon-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 150px;
}

.coming-soon-content {
  max-width: 700px;
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 45px 65px;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  margin: 0 auto 0 0;
}
.coming-soon-content .logo {
  display: inline-block;
}
.coming-soon-content h2 {
  font-size: 45px;
  margin-top: 35px;
  margin-bottom: 0;
}
.coming-soon-content #timer {
  margin-top: 45px;
}
.coming-soon-content #timer div {
  background-color: var(--main-color);
  color: var(--white-color);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  font-size: 40px;
  font-weight: bold;
  margin-left: 5px;
  margin-right: 5px;
}
.coming-soon-content #timer div span {
  display: block;
  margin-top: -2px;
  font-size: 15px;
  font-weight: 500;
}
.coming-soon-content form {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}
.coming-soon-content form .form-group {
  margin-bottom: 15px;
}
.coming-soon-content form .form-group .form-control {
  height: 60px;
  padding: 15px 25px;
  line-height: initial;
  color: var(--paragraph-color);
  background-color: #f3f7fb;
  border: none;
  border-radius: 30px;
  box-shadow: unset;
  transition: var(--transition);
  font-size: var(--font-size);
  font-weight: 400;
}
.coming-soon-content form .form-group .form-control::-moz-placeholder {
  color: var(--paragraph-color);
}
.coming-soon-content form .form-group .form-control::placeholder {
  color: var(--paragraph-color);
}
.coming-soon-content form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.coming-soon-content form .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.coming-soon-content form .default-btn {
  border-radius: 30px;
  width: 100%;
  border: none;
}
.coming-soon-content form .default-btn::before {
  width: 850px;
  height: 850px;
}
.coming-soon-content form .validation-danger {
  margin-top: 15px;
  color: red;
}
.coming-soon-content form .validation-success {
  margin-top: 15px;
}
.coming-soon-content form p {
  margin-bottom: 0;
  margin-top: 20px;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-form-wrap h3 {
  font-size: 24px;
  margin-bottom: 30px;
}
.contact-form-wrap #contactForm .form-group {
  margin-bottom: 25px;
}
.contact-form-wrap #contactForm .form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--paragraph-color);
  font-weight: 500;
  font-size: 15px;
}
.contact-form-wrap #contactForm .form-group .form-control {
  height: 60px;
  padding: 15px 25px;
  line-height: initial;
  color: var(--paragraph-color);
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  box-shadow: unset;
  transition: var(--transition);
  font-size: var(--font-size);
  font-weight: 400;
}
.contact-form-wrap #contactForm .form-group .form-control::-moz-placeholder {
  color: var(--paragraph-color);
}
.contact-form-wrap #contactForm .form-group .form-control::placeholder {
  color: var(--paragraph-color);
}
.contact-form-wrap #contactForm .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.contact-form-wrap #contactForm .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.contact-form-wrap #contactForm .form-group textarea.form-control {
  min-height: 115px;
}
.contact-form-wrap #contactForm .list-unstyled {
  padding: 0;
  color: red;
  margin-top: 5px;
  font-size: 15px;
}
.contact-form-wrap #contactForm div#msgSubmit {
  margin-bottom: 0;
}
.contact-form-wrap #contactForm .text-danger {
  color: #dc3545 !important;
  font-size: 20px !important;
  margin-bottom: 0 !important;
}
.contact-form-wrap #contactForm .send-btn .default-btn {
  border: none;
}

.contact-support {
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  padding: 35px;
}
.contact-support h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.contact-support span {
  color: var(--paragraph-color);
}
.contact-support .information {
  padding: 0;
  margin-bottom: 0;
  margin-top: 20px;
}
.contact-support .information li {
  list-style-type: none;
  margin-bottom: 20px;
  color: var(--paragraph-color);
  position: relative;
  padding-left: 28px;
}
.contact-support .information li:last-child {
  margin-bottom: 0;
}
.contact-support .information li i {
  color: var(--main-color);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 2px;
}
.contact-support .information li a {
  color: var(--paragraph-color);
}
.contact-support .information li a:hover {
  color: var(--main-color);
}
.contact-support .social {
  padding: 0;
  margin-bottom: 0;
  margin-top: 20px;
}
.contact-support .social li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
.contact-support .social li:last-child {
  margin-right: 0;
}
.contact-support .social li span {
  font-size: 18px;
  color: var(--black-color);
  font-weight: 500;
}
.contact-support .social li a i {
  color: var(--paragraph-color);
  position: relative;
  top: 2px;
  transition: var(--transition);
}
.contact-support .social li a i:hover {
  color: var(--main-color);
}
.contact-support .working-hours {
  margin-top: 25px;
}
.contact-support .working-hours h4 {
  font-size: 22px;
  margin-bottom: 10px;
  margin-bottom: 18px;
}
.contact-support .working-hours .list {
  padding: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.contact-support .working-hours .list li {
  list-style-type: none;
  color: var(--paragraph-color);
  margin-bottom: 15px;
}
.contact-support .working-hours .list li:last-child {
  margin-bottom: 0;
}
.contact-support .working-hours .list li span {
  float: right;
}

#map iframe {
  width: 100%;
  height: 450px;
  margin-bottom: -10px;
}

/*================================================
Cart Area CSS
=================================================*/
.cart-table table {
  margin-bottom: 0;
}
.cart-table table thead tr th {
  border-bottom-width: 0px;
  vertical-align: middle;
  padding: 25px 30px;
  white-space: nowrap;
  font-size: var(--font-size);
  font-weight: 600;
}
.cart-table table tbody tr td {
  vertical-align: middle;
  color: var(--paragraph-color);
  white-space: nowrap;
  font-weight: 400;
  font-size: var(--font-size);
  padding: 25px 30px;
}
.cart-table table tbody tr td .remove {
  font-size: 18px;
}
.cart-table table tbody tr td.product-thumbnail a {
  display: inline-block;
}
.cart-table table tbody tr td.product-thumbnail a img {
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  padding: 15px;
}
.cart-table table tbody tr td.product-name a {
  display: inline-block;
  color: var(--black-color);
}
.cart-table table tbody tr td.product-quantity .input-counter {
  max-width: 130px;
  min-width: 130px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.cart-table table tbody tr td.product-quantity .input-counter span {
  position: absolute;
  top: 0;
  background-color: var(--white-color);
  cursor: pointer;
  color: var(--paragraph-color);
  width: 45px;
  height: 65px;
  line-height: 65px;
  transition: var(--transition);
  font-size: 18px;
  border-radius: 0;
  border: 1px solid #ebebeb;
}
.cart-table table tbody tr td.product-quantity .input-counter span.minus-btn {
  left: 0;
}
.cart-table table tbody tr td.product-quantity .input-counter span.plus-btn {
  right: 0;
}
.cart-table table tbody tr td.product-quantity .input-counter input {
  height: 65px;
  color: var(--black-color);
  outline: 0;
  display: block;
  border: none;
  background-color: var(--white-color);
  text-align: center;
  width: 100%;
  font-size: var(--font-size);
  font-weight: 600;
  border: 1px solid #ebebeb;
}
.cart-table table tbody tr td.product-quantity .input-counter input::-moz-placeholder {
  color: var(--black-color);
}
.cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
  color: var(--black-color);
}
.cart-table table tbody tr td.product-subtotal {
  overflow: hidden;
}

.cart-buttons {
  margin-top: 30px;
  text-align: end;
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  padding: 15px;
}
.cart-buttons .shopping-coupon-code {
  position: relative;
  max-width: 530px;
}
.cart-buttons .shopping-coupon-code .form-control {
  height: 60px;
  color: var(--black-color);
  box-shadow: unset !important;
  border: 1px solid #e1e1e1;
  background-color: var(--white-color);
  transition: var(--transition);
  border-radius: 3px;
  padding: 25px;
  font-size: 15px;
  font-weight: 400;
}
.cart-buttons .shopping-coupon-code button {
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  background: var(--main-color);
  color: var(--white-color);
  border: none;
  padding: 0 25px;
  line-height: 50px;
  outline: 0;
  transition: var(--transition);
  font-size: var(--font-size);
  font-weight: 400;
  cursor: pointer;
}
.cart-buttons .shopping-coupon-code button:hover {
  background-color: var(--optional-color);
}
.cart-buttons .default-btn {
  color: var(--white-color) !important;
  border-radius: 0;
  padding: 18px 30px;
}
.cart-buttons .default-btn span {
  background-color: var(--black-color);
}

.cart-totals {
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  padding: 25px;
}
.cart-totals h3 {
  margin-bottom: 25px;
  font-size: 22px;
}
.cart-totals ul {
  padding-left: 0;
  margin: 0 0 25px;
  list-style-type: none;
}
.cart-totals ul li {
  color: var(--paragraph-color);
  overflow: hidden;
  font-size: var(--font-size);
  font-weight: 400;
  margin-bottom: 20px;
}
.cart-totals ul li:last-child {
  font-size: 18px;
  margin-bottom: 0;
}
.cart-totals ul li:last-child span {
  color: var(--paragraph-color);
  font-weight: 600;
}
.cart-totals ul li span {
  float: right;
  color: var(--paragraph-color);
}
.cart-totals .default-btn {
  width: 100%;
}

/*================================================
Wishlist Area CSS
=================================================*/
.wishlist-table table {
  margin-bottom: 0;
}
.wishlist-table table thead tr th {
  border-bottom-width: 0px;
  vertical-align: middle;
  padding: 25px 30px;
  white-space: nowrap;
  font-size: var(--font-size);
  font-weight: 600;
}
.wishlist-table table tbody tr td {
  vertical-align: middle;
  color: var(--paragraph-color);
  white-space: nowrap;
  font-weight: 400;
  font-size: var(--font-size);
  padding: 25px 30px;
}
.wishlist-table table tbody tr td .remove {
  font-size: 18px;
}
.wishlist-table table tbody tr td.product-thumbnail a {
  display: inline-block;
}
.wishlist-table table tbody tr td.product-thumbnail a img {
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  padding: 15px;
  width: 120px;
}
.wishlist-table table tbody tr td.product-name a {
  display: inline-block;
  color: var(--black-color);
}

/*================================================
Checkout Area CSS
=================================================*/
.user-actions {
  padding: 0;
  margin-bottom: 35px;
}
.user-actions li {
  list-style-type: none;
  background: #f9fafb;
  padding: 15px 30px;
  border-top: 2px solid var(--main-color);
  margin-bottom: 30px;
}
.user-actions li:last-child {
  margin-bottom: 0;
}
.user-actions li span {
  display: inline-block;
  color: var(--paragraph-color);
  font-size: var(--font-size);
  margin-bottom: 15px;
}
.user-actions li span:last-child {
  margin-bottom: 0;
}
.user-actions li span a {
  display: inline-block;
  color: var(--paragraph-color);
}

.billing-details .title {
  font-size: 22px;
  margin-bottom: 30px;
}
.billing-details .form-group {
  margin-bottom: 25px;
}
.billing-details .form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--paragraph-color);
  font-weight: 500;
  font-size: 15px;
}
.billing-details .form-group .form-control {
  height: 60px;
  padding: 15px 25px;
  line-height: initial;
  color: var(--paragraph-color);
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  box-shadow: unset;
  transition: var(--transition);
  font-size: var(--font-size);
  font-weight: 400;
}
.billing-details .form-group .form-control::-moz-placeholder {
  color: var(--paragraph-color);
}
.billing-details .form-group .form-control::placeholder {
  color: var(--paragraph-color);
}
.billing-details .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.billing-details .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.billing-details .form-group textarea.form-control {
  min-height: 115px;
}
.billing-details .form-check {
  margin-bottom: 20px;
}
.billing-details .form-check .form-check-label {
  color: var(--paragraph-color);
  font-weight: 500;
}
.billing-details .form-check label {
  position: relative;
  left: 2px;
  top: 0;
  font-weight: 500;
}
.billing-details .col-lg-12:last-child .form-group {
  margin-bottom: 0;
}

.payment-box {
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  padding: 25px;
  margin-top: 25px;
}
.payment-box .title {
  margin-bottom: 25px;
  font-size: 22px;
}
.payment-box .payment-method p [type=radio]:checked, .payment-box .payment-method p [type=radio]:not(:checked) {
  display: none;
}
.payment-box .payment-method p [type=radio]:checked + label, .payment-box .payment-method p [type=radio]:not(:checked) + label {
  padding-left: 28px;
  cursor: pointer;
  display: block;
  color: var(--black-color);
  position: relative;
  margin-bottom: 8px;
  font-weight: 600;
}
.payment-box .payment-method p [type=radio]:checked + label::before, .payment-box .payment-method p [type=radio]:not(:checked) + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: var(--white-color);
}
.payment-box .payment-method p [type=radio]:checked + label::after, .payment-box .payment-method p [type=radio]:not(:checked) + label::after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--main-color);
  position: absolute;
  top: 7px;
  left: 3px;
  border-radius: 50%;
  transition: var(--transition);
}
.payment-box .payment-method p [type=radio]:not(:checked) + label::after {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}
.payment-box .payment-method p [type=radio]:checked + label::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.payment-box .check-me-wrap {
  margin-top: 18px;
  margin-bottom: 10px;
}
.payment-box .check-me-wrap a {
  color: var(--main-color);
}
.payment-box .check-me-wrap [type=checkbox]:checked, .payment-box .check-me-wrap [type=checkbox]:not(:checked) {
  display: none;
}
.payment-box .check-me-wrap [type=checkbox]:checked + label, .payment-box .check-me-wrap [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  color: var(--paragraph-color);
  font-weight: 500;
  font-size: 15px;
}
.payment-box .check-me-wrap [type=checkbox]:checked + label:before, .payment-box .check-me-wrap [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  background: var(--white-color);
}
.payment-box .check-me-wrap [type=checkbox]:checked + label:after, .payment-box .check-me-wrap [type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--main-color);
  position: absolute;
  top: 7.5px;
  left: 5px;
  transition: all 0.2s ease;
  border-radius: 30px;
}
.payment-box .check-me-wrap [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.payment-box .check-me-wrap [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.payment-box .check-me-wrap [type=checkbox]:hover + label:before {
  border-color: var(--main-color);
}
.payment-box .check-me-wrap [type=checkbox]:checked + label:before {
  border-color: var(--main-color);
}
.payment-box .check-me-wrap a {
  color: var(--main-color);
}
.payment-box .default-btn {
  margin-top: 15px;
  width: 100%;
}

/*================================================
Single Shop Area CSS
=================================================*/
.single-shop-image-tabs .tab-content .tab-pane {
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  text-align: center;
  padding: 145px 45px;
}
.single-shop-image-tabs .nav {
  border: none;
  margin-top: 15px;
}
.single-shop-image-tabs .nav .nav-item {
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  padding: 25px 15px;
  display: inline-block;
  max-width: 145px;
  margin-right: 15px;
}
.single-shop-image-tabs .nav .nav-item:last-child {
  margin-right: 0;
}
.single-shop-image-tabs .nav .nav-item .nav-link {
  border: none;
}
.single-shop-image-tabs .nav .nav-item .nav-link.active {
  background-color: transparent;
}

.products-details-desc {
  margin-left: 30px;
}
.products-details-desc h3 {
  margin-bottom: 18px;
  font-size: 42px;
}
.products-details-desc .price {
  margin-bottom: 18px;
  color: var(--main-color);
  font-size: 24px;
  font-weight: bold;
}
.products-details-desc .products-review {
  margin-bottom: 15px;
}
.products-details-desc .products-review .rating {
  display: inline-block;
  font-size: 18px;
}
.products-details-desc .products-review .rating i {
  color: #ffba0a;
  display: inline-block;
}
.products-details-desc .products-add-to-cart {
  margin-top: 25px;
}
.products-details-desc .products-add-to-cart span {
  margin-right: 5px;
  font-weight: 500;
  color: var(--black-color);
}
.products-details-desc .products-add-to-cart .input-counter {
  max-width: 150px;
  min-width: 150px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.products-details-desc .products-add-to-cart .input-counter span {
  position: absolute;
  top: 0;
  background-color: var(--white-color);
  cursor: pointer;
  color: var(--paragraph-color);
  width: 45px;
  height: 55px;
  line-height: 55px;
  transition: var(--transition);
  font-size: 18px;
  border-radius: 0;
  border: 1px solid #ebebeb;
}
.products-details-desc .products-add-to-cart .input-counter span.minus-btn {
  left: 0;
}
.products-details-desc .products-add-to-cart .input-counter span.plus-btn {
  right: -5px;
}
.products-details-desc .products-add-to-cart .input-counter input {
  height: 55px;
  color: var(--black-color);
  outline: 0;
  display: block;
  border: none;
  background-color: var(--white-color);
  text-align: center;
  width: 100%;
  font-size: var(--font-size);
  font-weight: 600;
  border: 1px solid #ebebeb;
}
.products-details-desc .products-add-to-cart .input-counter input::-moz-placeholder {
  color: var(--black-color);
}
.products-details-desc .products-add-to-cart .input-counter input::placeholder {
  color: var(--black-color);
}
.products-details-desc .products-add-to-cart .default-btn {
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  border: none;
  margin-left: 10px;
}
.products-details-desc .products-meta {
  margin-top: 25px;
}
.products-details-desc .products-meta span {
  display: block;
  color: var(--black-color);
  margin-bottom: 15px;
  font-weight: 500;
}
.products-details-desc .products-meta span span {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
}
.products-details-desc .products-meta span span.sku {
  color: var(--main-color);
}
.products-details-desc .products-meta span span.in-stock {
  color: var(--paragraph-color);
}
.products-details-desc .products-meta span a {
  display: inline-block;
  color: var(--paragraph-color);
  font-weight: 400;
}
.products-details-desc .products-meta span a:hover, .products-details-desc .products-meta span a:focus {
  color: var(--main-color);
}
.products-details-desc .products-meta span:last-child {
  margin-bottom: 0;
}

.products-details-tabs {
  margin-top: 50px;
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  padding: 45px;
}
.products-details-tabs .nav {
  padding: 0;
  margin-bottom: 30px;
  list-style-type: none;
  display: block;
}
.products-details-tabs .nav .nav-item {
  display: inline-block;
  margin-right: 30px;
}
.products-details-tabs .nav .nav-item:last-child {
  margin-right: 0;
}
.products-details-tabs .nav .nav-item .nav-link {
  color: var(--black-color);
  border: none;
  border-bottom: 1px solid #eeeeee;
  padding: 0;
  background-color: transparent;
  position: relative;
  padding-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}
.products-details-tabs .nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: var(--transition);
  bottom: -1px;
}
.products-details-tabs .nav .nav-item .nav-link:hover, .products-details-tabs .nav .nav-item .nav-link.active {
  color: var(--main-color);
}
.products-details-tabs .nav .nav-item .nav-link:hover::before, .products-details-tabs .nav .nav-item .nav-link.active::before {
  width: 100%;
}
.products-details-tabs .tab-content .tab-pane .products-reviews h3 {
  margin-bottom: 15px;
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .rating span {
  font-size: var(--font-size);
  color: #cecfd2;
  margin-right: -2px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .rating span.checked {
  color: orange;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .rating-count {
  margin-top: 10px;
  margin-bottom: 20px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .rating-count span {
  display: block;
  color: var(--paragraph-color);
}
.products-details-tabs .tab-content .tab-pane .products-reviews .row {
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .side {
  float: left;
  width: 9%;
  margin-top: 10px;
  padding: 0;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .side div {
  font-weight: 500;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .middle {
  margin-top: 14px;
  float: left;
  width: 82%;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .right {
  text-align: right;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-container {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  color: var(--white-color);
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-5 {
  width: 100%;
  height: 18px;
  background-color: #4CAF50;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-4 {
  width: 75%;
  height: 18px;
  background-color: #2196F3;
  border-radius: 5px;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-3 {
  width: 50%;
  height: 18px;
  background-color: #00bcd4;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-2 {
  width: 25%;
  height: 18px;
  background-color: #ff9800;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-1 {
  width: 0;
  height: 18px;
  background-color: #f44336;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments {
  margin-top: 40px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments h3 {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review {
  border-bottom: 1px solid #ebebeb;
  padding: 20px 0 20px 110px;
  position: relative;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review img {
  position: absolute;
  left: 0;
  top: 20px;
  width: 90px;
  height: 90px;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .sub-comment {
  margin-bottom: 8px;
  font-weight: 600;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating {
  display: block;
  margin-bottom: 8px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating .review-stars {
  display: inline-block;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating .review-stars i {
  color: #cecfd2;
  font-size: var(--font-size);
  display: inline-block;
  margin-right: -2px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating .review-stars i.checked {
  color: orange;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating span {
  color: var(--black-color);
  position: relative;
  top: -2px;
  font-weight: 600;
  margin-left: 5px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper {
  margin-top: 30px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper .comment-notes span {
  color: red;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form {
  margin-top: 20px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .form-group {
  margin-bottom: 25px;
  text-align: left;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .form-group .form-control {
  height: 60px;
  padding: 15px 25px;
  line-height: initial;
  color: var(--paragraph-color);
  background-color: #f3f7fb;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  box-shadow: unset;
  transition: var(--transition);
  font-size: var(--font-size);
  font-weight: 400;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .form-group .form-control::-moz-placeholder {
  color: var(--paragraph-color);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .form-group .form-control::placeholder {
  color: var(--paragraph-color);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .form-group textarea.form-control {
  min-height: 120px;
  padding: 15px 25px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating {
  text-align: left;
  overflow: hidden;
  max-width: 115px;
  margin-top: -5px;
  margin-bottom: 30px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating label {
  float: right;
  position: relative;
  width: 23px;
  height: 23px;
  cursor: pointer;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating label:not(:first-of-type) {
  padding-right: 5px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating label:before {
  content: "★";
  transition: var(--transition);
  font-size: 27px;
  color: #CCCCCC;
  line-height: 1;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating input {
  display: none;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating input:checked ~ label:before, .products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating:not(:checked) > label:hover:before, .products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating:not(:checked) > label:hover ~ label:before {
  color: #f6b500;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent {
  text-align: left;
  margin-bottom: 0;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:checked, .products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:not(:checked) {
  display: none;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:checked + label, .products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  margin-bottom: 0;
  color: var(--paragraph-color);
  font-weight: 400;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:checked + label:before, .products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  background: #f5f5f5;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:checked + label:after, .products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--main-color);
  position: absolute;
  top: 6.5px;
  left: 6px;
  transition: all 0.2s ease;
  border-radius: 50px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:hover + label:before {
  border-color: var(--main-color);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:checked + label:before {
  border-color: var(--main-color);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .default-btn {
  margin-top: 22px;
  border: none;
}

/*================================================
Widget Sidebar CSS
=================================================*/
.widget-area .widget {
  margin-bottom: 30px;
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}
.widget-area .widget .widget-title {
  margin-bottom: 25px;
  position: relative;
  font-size: 24px;
}
.widget-area .widget_services {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
}
.widget-area .widget_services .services-list {
  padding: 0;
  margin-bottom: 0;
}
.widget-area .widget_services .services-list li {
  list-style-type: none;
  margin-bottom: 20px;
}
.widget-area .widget_services .services-list li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_services .services-list li a {
  display: inline-block;
  width: 100%;
  color: var(--black-color);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}
.widget-area .widget_services .services-list li a i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  transition: var(--transition);
}
.widget-area .widget_services .services-list li a:hover {
  color: var(--main-color);
}
.widget-area .widget_contact {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  text-align: center;
}
.widget-area .widget_contact h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.widget-area .widget_contact h4 {
  font-size: 20px;
}
.widget-area .widget_contact .icon {
  margin-top: 25px;
  margin-bottom: 20px;
}
.widget-area .widget_contact .icon i {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 90px;
  background-color: var(--main-color);
  color: var(--white-color);
  text-align: center;
  font-size: 45px;
  border-radius: 50px;
  transition: var(--transition);
}
.widget-area .widget_contact .icon i:hover {
  background-color: var(--optional-color);
}
.widget-area .widget_contact a {
  font-size: 20px;
  color: var(--black-color);
  font-weight: 500;
}
.widget-area .widget_contact a:hover {
  color: var(--main-color);
}
.widget-area .widget_pdf {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
}
.widget-area .widget_pdf .list {
  padding: 0;
  margin-bottom: 0;
}
.widget-area .widget_pdf .list li {
  list-style-type: none;
  margin-bottom: 10px;
}
.widget-area .widget_pdf .list li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_pdf .list li a {
  background-color: var(--white-color);
  border: 1px solid #ebebeb;
  padding: 15px 25px;
  width: 100%;
  font-size: var(--font-size);
  color: var(--paragraph-color);
  font-weight: 500;
}
.widget-area .widget_pdf .list li a i {
  font-size: 18px;
  position: relative;
  top: 2px;
  margin-right: 5px;
}
.widget-area .widget_pdf .list li a:hover {
  background-color: var(--main-color);
  border: 1px solid --main-color;
  color: var(--white-color);
}
.widget-area .widget_search {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
}
.widget-area .widget_search form {
  position: relative;
}
.widget-area .widget_search form .search-field {
  background-color: var(--white-color);
  height: 60px;
  padding: 10px 60px 10px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: var(--transition);
  border-radius: 0;
}
.widget-area .widget_search form .search-field::-moz-placeholder {
  color: var(--paragraph-color);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.widget-area .widget_search form .search-field::placeholder {
  color: var(--paragraph-color);
  transition: var(--transition);
}
.widget-area .widget_search form .search-field:focus {
  border-color: var(--main-color);
}
.widget-area .widget_search form .search-field:focus::-moz-placeholder {
  color: transparent;
}
.widget-area .widget_search form .search-field:focus::placeholder {
  color: transparent;
}
.widget-area .widget_search form button {
  border: none;
  background: transparent;
  color: var(--paragraph-color);
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  position: absolute;
  right: 5px;
  padding: 0;
  transition: var(--transition);
  top: 5px;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
}
.widget-area .widget_search form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.widget-area .widget_search form button:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}
.widget-area .widget_kadi_posts_thumb {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
}
.widget-area .widget_kadi_posts_thumb .post-title {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.widget-area .widget_kadi_posts_thumb .post-title:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.widget-area .widget_kadi_posts_thumb .post-title a {
  font-size: var(--font-size);
  color: var(--paragraph-color);
  font-weight: 400;
  line-height: 1.5;
}
.widget-area .widget_kadi_posts_thumb .post-title a:hover {
  color: var(--main-color);
}
.widget-area .widget_tag_cloud {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
}
.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 20px;
}
.widget-area .tagcloud a {
  display: inline-block;
  background: var(--white-color);
  color: var(--paragraph-color);
  padding: 8px 15px;
  border: 1px solid #ebebeb;
  font-size: 15px;
  font-weight: 400;
  margin-top: 8px;
  margin-right: 5px;
}
.widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
  color: var(--white-color);
  background-color: var(--main-color);
  border: 1px solid --main-color;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 30px;
  text-align: center;
}
.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  background-color: #f9fafb;
  border: 1px solid #ebebeb;
  color: var(--paragraph-color);
  text-align: center;
  display: inline-block;
  border-radius: 0;
  line-height: 40px;
  position: relative;
  margin: 0 5px;
  font-size: var(--font-size);
  font-weight: 600;
}
.pagination-area .page-numbers:hover, .pagination-area .page-numbers.current {
  color: var(--white-color);
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}
.pagination-area .page-numbers i {
  position: relative;
  top: 1.5px;
}
.pagination-area span {
  color: var(--paragraph-color);
  font-size: var(--font-size);
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: var(--white-color);
  background-color: var(--main-color);
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 22px;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 45%;
  transform: translateY(-45%);
  text-align: center;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 50px;
}
.go-top:hover {
  background-color: var(--optional-color);
  color: var(--white-color);
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.load-more-btn {
  margin-top: 15px;
  text-align: center;
}

/*=================================
Buy Now Btn
====================================*/
.buy-now-btn {
  right: 30px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: var(--white-color) !important;
  background-color: #82b440;
  padding: 8px 20px 8px;
  font-size: 14px;
  font-weight: 500;
  animation-name: tada;
  animation-duration: 5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}
.buy-now-btn:hover {
  background-color: var(--main-color);
  color: var(--white-color) !important;
}

@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}/*# sourceMappingURL=style.css.map */

.font-25 {
    font-size: 25px !important
}