:root {
  --h1size: 50px;
  --h2size: 40px;
  --h3size: 24px;
  --h4size: 20px;
  --h5size: 18px;
  --h6size: 16px;
  --bodysize: 16px;
  --h1height: 58px;
  --h2height: 48px;
  --h3height: 32px;
  --h4height: 28px;
  --h5height: 26px;
  --h6height: 26px;
  --bodyheight: 26px;
  --pfamily: "Plus Jakarta Sans", sans-serif;
  --hfamily: "Plus Jakarta Sans", sans-serif;
  --red: #ff3838;
  --gray: #777777;
  --dark: #000000;
  --text: #555555;
  --blue: #1494a9;
  --white: #ffffff;
  --chalk: #e6f5ec;
  --green: #63AB45;
  --purple: #b12fad;
  --orange: #ff4d00;
  --orangedark: #e24007;
  --yellow: #fdd61f;
  --dark-yellow: #DA9904;
  --body: #fcece8;
  --border: #e8e8e8;
  --heading: #39404a;
  --primary: #ff671f;
  --sub-heading: #565765;
  --green-chalk: #e96f84;
  --green-dark: #072f17;
  --gray-chalk: #cccccc;
  --intro-bg: #f8fffa;
  --facebook: #3b5998;
  --linkedin: #0e76a8;
  --twitter: #00acee;
  --google: #E60023;
  --instagram: #F77737;
  --primary-bshadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  --primary-tshadow: 2px 3px 8px rgba(0, 0, 0, 0.1)
}

* {
  margin: 0px;
  padding: 0px;
  outline: 0px
}

img {
  vertical-align: middle;
  max-width: 100%;
}

a {
  text-decoration: none;
  display: inline-block
}

a:hover {
  text-decoration: none
}

ul,
ol {
  padding: 0px;
  list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
li,
span,
label {
  margin-bottom: 0px
}

html,
body {
  scroll-behavior: smooth
}

body {
  color: var(--dark);
  background: var(--body);
  font-size: var(--bodysize);
  font-family: var(--pfamily);
  line-height: var(--bodyheight);
  overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  color: var(--dark);
  font-family: var(--hfamily);
}

h1 {
  font-size: var(--h1size);
  line-height: var(--h1height)
}

h2 {
  font-size: var(--h2size);
  line-height: var(--h2height);
  letter-spacing: -0.3px;
  text-transform: capitalize
}

h3 {
  font-size: var(--h3size);
  line-height: var(--h3height)
}

h4 {
  font-size: var(--h4size);
  line-height: var(--h4height)
}

h5 {
  font-size: var(--h5size);
  line-height: var(--h5height)
}

h6 {
  font-size: var(--h6size);
  line-height: var(--h6height)
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-size: 14px;
  color: var(--gray);
  text-transform: capitalize
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-size: 14px;
  color: var(--gray);
  text-transform: capitalize
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  font-size: 14px;
  color: var(--gray);
  text-transform: capitalize
}

input::placeholder,
textarea::placeholder {
  font-size: 14px;
  color: var(--gray);
  text-transform: capitalize
}

input,
button {
  border: none;
  outline: none;
  background: none
}

button:focus {
  outline: none
}

@media (max-width: 575px) {
  .col {
    padding: 0px 4px
  }
}

@media (max-width: 991px) {
  .content-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }
}

.section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}
.section .container{
  position: relative;
  z-index: 1;
}
.inner-section {
  margin-bottom: 100px
}

.section-heading {
  text-align: center;
  margin-bottom: 40px
}

.section-btn-50 {
  text-align: center;
  margin-top: 50px
}

.section-btn-25 {
  text-align: center;
  margin-top: 25px
}

@media (max-width: 767px) {
  .section {
    padding: 30px 0;
  }

  .inner-section {
    padding: 40px 0;
  }

  .section-heading {
    margin-bottom: 30px
  }

  .section-heading h2 {
    font-size: 28px;
    line-height: 36px
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .section {
    padding: 40px 0;
  }

  .inner-section {
    margin-bottom: 80px
  }
}

.alert {
  border: none;
  margin: 0px;
  padding: 0px 15px;
  border-radius: 0px
}

.alert-info {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 20px;
  border-radius: 3px;
  background: var(--white);
  border-top: 3px solid var(--primary);
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08)
}

.alert-info p {
  font-weight: 500;
  color: var(--primary);
  text-shadow: var(--primary-shadow)
}

.alert-info p a {
  margin-left: 5px;
  text-decoration: underline
}

.breadcrumb {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: none;
  margin: 0px
}

.breadcrumb .active {
  color: var(--gray-chalk)
}

.breadcrumb-item {
  font-size: 18px;
  padding: 0px !important;
  text-transform: capitalize
}

.breadcrumb-item a {
  color: var(--chalk)
}

.breadcrumb-item a:hover {
  color: var(--chalk);
  text-decoration: underline
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--white);
  padding: 0px 8px
}

.backdrop {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 4;
  width: 1000%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5); */
  display: none
}

.backtop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  font-size: 15px;
  color: var(--white);
  line-height: 48px;
  text-align: center;
  display: none;
  border-radius: 50%;
  background: var(--primary);
  -webkit-animation: mahmud 2s infinite;
  animation: mahmud 2s infinite;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.backtop:hover {
  color: var(--white)
}

@-webkit-keyframes mahmud {
  0% {
    margin-bottom: 0px
  }

  50% {
    margin-bottom: 15px
  }
}

@keyframes mahmud {
  0% {
    margin-bottom: 0px
  }

  50% {
    margin-bottom: 15px
  }
}

@media (max-width: 575px) {
  .backtop {
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 14px
  }
}

@media (max-width: 991px) {
  .backtop {
    bottom: 10px
  }
}

.btn {
  border: none;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border-radius: 30px;
  border: 1px solid transparent;
}
.btn-primary{
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover{
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-light{
  background-color: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-link{
  color: var(--primary);
}
.btn:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important
}

.btn i {
  margin-right: 5px
}

.btn-inline {
  color: var(--white);
  background: var(--primary)
}

.btn-inline:hover {
  color: var(--primary);
  background: var(--white)
}

.btn-outline {
  color: var(--primary);
  background: var(--white)
}

.btn-outline:hover {
  color: var(--white);
  background: var(--primary)
}

.menu-badge {
  font-size: 10px;
  padding: 0px 5px;
  margin-left: 5px;
  line-height: 18px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  text-shadow: var(--primary-tshadow)
}

.dropdown-arrow {
  position: relative;
  padding-right: 18px !important
}

.dropdown-arrow:hover::before {
  color: var(--primary)
}

.dropdown-arrow::before {
  position: absolute;
  content: "\f282";
  font-family: "bootstrap-icons";
  top: 50%;
  right: 0px;
  font-size: 15px;
  line-height: 15px;
  color: var(--text);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.dropdown-link {
  position: relative;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.dropdown-link:hover {
  color: var(--primary);
  background: var(--chalk)
}

.dropdown-link:hover::before {
  color: var(--primary)
}

.dropdown-link::before {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: 10px;
  font-weight: 900;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.dropdown-link.active {
  color: var(--primary)
}

.dropdown-link.active::before {
  color: var(--primary);
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg)
}

.dropdown-list {
  display: none;
  padding: 0px 20px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.dropdown-list li a {
  width: 100%;
  font-size: 15px;
  line-height: 18px;
  border-radius: 8px;
  padding: 10px 15px 10px 35px;
  color: var(--text);
  position: relative;
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.dropdown-list li a:hover {
  color: var(--primary);
  background: var(--chalk)
}

.dropdown-list li a::before {
  position: absolute;
  top: 50%;
  left: 15px;
  content: "\F5D4";
  font-size: 10px;
  font-weight: 900;
  font-family: "bootstrap-icons";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

.dropdown:hover .dropdown-position-list {
  visibility: visible;
  opacity: 1;
  top: 70px
}

ul.dropdown-position-list:not(.has-megamenu) {
  padding: 0px;
}

ul.dropdown-position-list {
  position: absolute;
  top: 120%;
  left: 0px;
  z-index: 3;
  width: 260px;
  height: auto;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  border-radius: 4px;
}
ul.dropdown-position-list ul.dropdown-position-list{
    background: var(--white);
}

#primary-menu>li>ul.dropdown-position-list::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: -7px;
  left: 12px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border)
}

.dropdown-position-list li a {
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  border-radius: 8px;
  padding: 10px 15px;
  color: var(--text);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.dropdown-position-list li a:hover {
  color: var(--primary);
  background: var(--chalk)
}

#primary-menu ul li {
  position: relative;
  border-bottom: 1px solid var(--border);
}

#primary-menu ul li:last-child {
  border-bottom: 0;
}

#primary-menu ul li ul:not(.has-megamenu) {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  width: 200px;
  height: auto;
  display: none;
}

#primary-menu>li>ul {
  border-top: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
}

#primary-menu li.dropdown-megamenu ul ul {
  border-top: 0 !important;
}

#primary-menu>li>ul>li:hover>ul {
  visibility: visible;
  opacity: 1;
  display: block;
}

#primary-menu ul ul li:hover ul.depth_2 {
  visibility: visible;
  opacity: 1;
  display: block;
}

#primary-menu ul li.menu-item-has-children>a::before {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "\f285";
  font-family: "bootstrap-icons";
  font-size: 10px;
  font-weight: 900;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--text);
}

#mobile-menu .nav-link {
  margin-bottom: 2px;
}

#mobile-menu>li>ul {
  margin: 0;
  padding: 0;
}

#mobile-menu li.current-menu-item .nav-link,
#mobile-menu .current-menu-ancestor>a {
  background: var(--chalk);
}

#mobile-menu li.current-menu-item>a {
  font-weight: bold;
}

#mobile-menu>li>ul ul {
  display: block !important;
}

#mobile-menu .current-menu-ancestor>ul {
  display: block;
}

@media (min-width: 992px) {
  .has-megamenu {
    position: static;
  }

  .has-megamenu ul.dropdown-position-list {
    width: 100%;
    left: 0;
    padding: 20px 5px;
    box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  }

  .has-megamenu ul.dropdown-position-list {
    width: 100%;
    left: 0;
    display: flex;
    flex-wrap: wrap;
  }

  .has-megamenu ul.dropdown-position-list .megamenu-column {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .has-megamenu ul.dropdown-position-list .megamenu-column ul {
    width: 100% !important;
  }

  .has-megamenu ul.dropdown-position-list .megamenu-column>a {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--dark);
    padding-right: 0 !important;
  }

  .has-megamenu ul.dropdown-position-list .megamenu-column>a::before {
    display: none;
  }

  .has-megamenu ul.dropdown-position-list .megamenu-column {
    border-right: 1px solid var(--border);
    padding: 0 15px;
    border-bottom: 0 !important;
  }

  .has-megamenu ul.dropdown-position-list .megamenu-column:last-child {
    border-right: 0;
  }

  .has-megamenu .megamenu-column a {
    padding: 10px 0;
  }

  .has-megamenu ul.dropdown-position-list .megamenu-column .dropdown-position-list {
    position: relative !important;
    overflow: visible;
    margin-top: 0 !important;
    top: 0 !important;
    max-height: 2500px;
    box-shadow: none;
    left: 0 !important;
    padding: 0;
    display: block !important;
  }

  .has-megamenu a:hover {
    background: transparent !important;
    color: var(--primary);
  }

  .has-megamenu .sub-menu {
    display: block;
  }
}

.dropdown:hover .dropdown-position-list {
  visibility: visible;
  opacity: 1;
  top: 100%
}
.home-index-slider{
  margin-top: -160px;
}
.home-index-slider .dandik {
  left: 30px
}

.home-index-slider .bamdik {
  right: 30px
}

.home-index-slider .slick-dots {
  bottom: 50px
}

.banner-part {
  padding: 280px 0px 100px 0px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  height: 780px;
  display: flex !important;
  align-items: center;
}

.banner-part::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background: #03204C;
  opacity: 0.6;
}

.banner-content h1, .banner-content h2 {
  text-transform: capitalize;
  margin-bottom: 22px;
  font-size: 60px;
  line-height: 80px;
  text-shadow:
    1px 1px 0px #fff,
    2px 2px 0px #fff,
    3px 3px 0px #161919,
    4px 4px 0px #161919,
    5px 5px 0px #161919,
    6px 6px 0px #161919;   
}
.banner-content h1 span, .banner-content h2 span{
  color: var(--primary);
}
.banner-content .lead{
  background: var(--primary);
  color: var(--white);
  padding: 5px 20px;
  display: inline-block;
}

.banner-content p {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 30px
}

.banner-btn .btn {
  margin-right: 15px
}

.banner-img img {
  width: 100%
}

@media (max-width: 767px) {

  .banner-content h1,
  .banner-content h2 {
    font-size: 28px;
    line-height: 36px
  }

  .banner-part {
    padding: 180px 0 30px;
    background-size: cover !important;
    height: 600px;
  }

  .banner-img {
    display: none
  }

  .banner-content p {
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 22px;
  }
  .banner-content .btn{
    padding: 10px 30px;
    font-size: 14px;
    letter-spacing: 0;
  }
  .banner-btn .btn {
    margin: 8px
  }
  .btn {
    font-size: 14px;
    letter-spacing: 0;
    padding: 10px 25px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-content h1, .banner-content h2 {
    font-size: 32px;
    line-height: 42px
  }
  .banner-content p{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }

  .banner-btn .btn {
    padding: 14px 22px;
    margin-right: 10px
  }
}

.suggest-slider li {
  margin: 0px 10px
}

@media (max-width: 575px) {
  .suggest-slider li {
    margin: 0px 5px
  }
}

.promo {
  position: relative;
  width: 100%;
  height: 100%;
}

.promo-img {
  width: 100%;
  overflow: hidden;
  border-radius: 8px
}

.promo-content {
  background-size: cover !important;
  padding: 60px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.promo-content::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
}
.promo-content p{
  margin-bottom: 15px;
}
.promo .promo-content {
  position: absolute;
  padding: 20px;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.promo .promo-content.left {
  left: 10px;
}

.promo .promo-content.right {
  right: 10px;
}

.promo-content h3 {
  color: var(--white);
  margin-bottom: 12px;
  text-transform: capitalize;
  text-shadow: var(--primary-tshadow);
}

.promo-content h2 {
  font-size: 50px;
  margin-bottom: 25px;
  color: var(--white);
  text-shadow: var(--primary-tshadow);
}

.promo-img a {
  width: 100%
}

.promo-img a img {
  width: 100%;
  border-radius: 8px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.promo-img a img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05)
}

@media (max-width: 767px) {
  .promo-img {
    margin: 12px 0px
  }

  .promo-content {
    padding: 25px;
  }

  .promo-content h2 {
    font-size: 28px;
  }
}

.new-slider li {
  margin: 0px 12px
}

.section-design{

}
.section-design::before{
  background-color: var(--orange);
  top: 10%;
  right: -10%;
  position: absolute;
  content: "";
  width: 308px;
  height: 308px;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(150px);
}
.section-design::after{
  background-color: var(--green);
  left: -10%;
  top: 10%;
  position: absolute;
  content: "";
  width: 308px;
  height: 308px;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(150px);
}
.testimonial-slider .slick-slide {
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.testimonial-slider .slick-center {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.testimonial-slider .dandik,
.testimonial-slider .bamdik {
  opacity: 1;
  visibility: visible
}

.testimonial-slider .dandik {
  left: 50px
}

.testimonial-slider .bamdik {
  right: 50px
}

.blog-slider .blog-card {
  margin: 0px 15px 25px
}

.blog-slider .dandik,
.blog-slider .bamdik {
  top: 43%
}

@media (max-width: 767px) {
  .blog-slider .blog-card {
    margin: 0px 10px 25px
  }
}

.form-title {
  text-align: center;
  margin-bottom: 20px
}

.form-title h3 {
  text-transform: capitalize
}

.form-group {
  margin-bottom: 25px
}

.form-group small {
  color: var(--gray);
  letter-spacing: 0.3px;
  padding: 0px 0px 0px 20px
}

.form-group textarea {
  height: 150px;
  padding: 12px 20px
}

.form-label {
  font-weight: 500;
  margin: 0px 0px 7px 3px;
  white-space: nowrap;
  text-transform: capitalize
}

.form-control {
  width: 100%;
  border-radius: 6px;
  padding: 10px 20px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border)
}

.form-control:focus-within {
  background: var(--white);
  border-color: var(--primary);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0
}
textarea.form-control{
  min-height: 120px;
}
.form-control[type=file]::-webkit-file-upload-button,
.form-control[type=file]::file-selector-button {
  border: none;
  background: none;
  height: 45px;
  line-height: 45px;
  padding: 5px 15px 0px;
  color: var(--gray)
}

.form-control[type=file]::-webkit-file-upload-button:hover,
.form-control[type=file]::file-selector-button:hover {
  background-color: transparent
}

.form-control[type=file]::-webkit-file-upload-button:focus,
.form-control[type=file]::file-selector-button:focus {
  border: none;
  outline: none
}

.form-select {
  height: 45px;
  font-size: 15px;
  padding: 0px 16px;
  letter-spacing: 0.3px;
  background-size: 12px 10px;
  text-transform: capitalize;
  color: var(--text);
  cursor: pointer
}

.form-select:focus-within {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: var(--primary)
}

.form-check-input:focus {
  border-color: var(--primary);
  -webkit-box-shadow: none;
  box-shadow: none
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary)
}

.form-btn {
  width: 100%;
  height: 45px;
  font-size: 14px;
  font-weight: 400;
  line-height: 45px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary)
}

.form-input-group {
  position: relative
}

.form-input-group:focus-within i {
  color: var(--primary)
}

.form-input-group input {
  padding: 0px 20px 2px 45px
}

.form-input-group textarea {
  padding: 12px 20px 12px 45px
}

.form-input-group i {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 45px;
  height: 45px;
  font-size: 18px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center
}

.form-btn-group {
  width: 100%;
  height: 45px;
  font-size: 14px;
  font-weight: 500;
  line-height: 45px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary)
}

.form-btn-group i {
  font-size: 15px;
  margin-right: 5px;
  display: inline-block
}

.nav-tabs {
  border: none;
  padding: 25px 25px;
  border-radius: 8px;
  margin-bottom: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent
}

.nav-tabs li {
  padding: 0px 30px;
  border-right: 1px solid var(--border)
}

.nav-tabs li:last-child {
  border: none
}

.tab-link {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--dark);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.tab-link:hover {
  color: var(--primary)
}

.tab-link i {
  font-size: 18px;
  margin-right: 3px
}

.tab-link.active {
  color: var(--primary)
}

.tab-pane {
  display: none;
  padding: 0px
}

.tab-pane.active {
  display: block
}

@media (max-width: 575px) {
  .nav-tabs {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    padding: 0;
  }

  .nav-tabs li {
    padding: 5px;
    border: none
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .nav-tabs {
    padding: 25px 10px
  }

  .nav-tabs li {
    padding: 0px 20px
  }
}

.pagination,
ul.page-numbers {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: flex !important;
  gap: 10px;
  border: 0 !important;
}

.page-item,
  {
  margin-left: 10px
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 50%
}

.page-item .active,
ul.page-numbers li .page-numbers.current,
ul.page-numbers li .page-numbers:hover {
  color: var(--white);
  background: var(--primary)
}

.page-link,
ul.page-numbers li .page-numbers {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  font-weight: 400;
  border: none;
  display: flex !important;
  justify-content: center;
  color: var(--dark);
  align-items: center;
  padding: 0px;
  color: var(--text);
  background: var(--white)
}

.page-link:hover {
  color: var(--white);
  background: var(--primary)
}

.page-link:focus {
  -webkit-box-shadow: none;
  box-shadow: none
}

@media (max-width: 991px) {
  .page-link {
    width: 35px;
    height: 35px;
    line-height: 35px
  }
}

@media (max-width: 767px) {
  .page-item {
    margin: 0px 3px
  }
}

.star-rating {
  margin: 15px 0px
}

.star-rating input:checked~label::after {
  opacity: 1
}

.star-rating label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0px 8px
}

.star-rating label:hover::after {
  opacity: 1
}

.star-rating label:hover:hover~label::after {
  opacity: 1
}

.star-rating label::before {
  content: "\F586";
  font-family: "bootstrap-icons";
  font-weight: 900;
  font-size: 35px;
  display: block;
  color: #bbbbbb
}

.star-rating label::after {
  content: "\F586";
  font-family: "bootstrap-icons";
  font-weight: 900;
  font-size: 35px;
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  color: var(--yellow);
  opacity: 0
}

.slider-arrow:hover .dandik,
.slider-arrow:hover .bamdik {
  visibility: visible;
  opacity: 1
}

.dandik,
.bamdik {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  color: var(--primary);
  background: var(--white);
  text-shadow: var(--primary-tshadow);
  -webkit-box-shadow: var(--primary-bshadow);
  box-shadow: var(--primary-bshadow);
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.dandik:hover,
.bamdik:hover {
  color: var(--white);
  background: var(--primary)
}

.dandik {
  left: -10px
}

.bamdik {
  right: -10px
}

.slider-dots ul {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

.slider-dots ul li {
  width: 9px;
  height: 9px;
  margin: 0px 5px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  background: var(--primary);
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.slider-dots ul li button {
  display: none
}

.slider-dots ul li.slick-active {
  width: 25px;
  background: var(--primary);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

@media (max-width: 575px) {
  .slider-dots ul {
    bottom: 10px
  }

  .slider-dots ul li {
    margin: 0px 6px
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .slider-dots ul {
    bottom: 20px
  }

  .slider-dots ul li {
    margin: 0px 6px
  }
}

.product-add {
  width: 100%;
  font-size: 15px;
  padding: 6px 0px;
  border-radius: 6px;
  text-align: center;
  text-transform: capitalize;
  color: var(--heading);
  background: var(--border);
  text-shadow: var(-primary-tshadow);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.product-add i {
  font-size: 14px;
  margin-right: 5px
}

.product-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none
}

.product-action button i {
  width: 35px;
  height: 35px;
  font-size: 14px;
  line-height: 35px;
  border-radius: 6px;
  text-align: center;
  display: inline-block;
  color: var(--text);
  background: var(--chalk);
  text-shadow: var(--primary-tshadow);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.product-action button i:hover {
  color: var(--white);
  background: var(--primary)
}

.product-action input {
  width: 100%;
  font-size: 15px;
  margin: 0px 5px;
  padding: 6px 0px;
  border-radius: 6px;
  text-align: center;
  color: var(--white);
  background: var(--primary);
  text-shadow: var(--primary-tshadow)
}

.table-list {
  width: 100%
}

thead tr {
  background: var(--primary)
}

thead tr th {
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  padding: 12px 20px;
  color: var(--white);
  border-right: 1px solid var(--border)
}

thead tr th:first-child {
  border-radius: 6px 0px 0px 6px
}

thead tr th:last-child {
  border-right: none;
  border-radius: 0px 6px 6px 0px
}

tbody tr {
  border-bottom: 1px solid var(--border)
}

tbody tr td {
  padding: 12px 20px;
  text-align: center;
  border-right: 1px solid var(--border)
}

tbody tr td:last-child {
  border-right: none
}

.table-name {
  white-space: nowrap;
  text-transform: capitalize
}

.table-image img {
  width: auto;
  height: 100px
}

.table-price h6 {
  white-space: nowrap
}

.table-price h6 small {
  font-size: 13px;
  margin-left: 3px;
  color: var(--gray);
  font-family: sans-serif
}

.table-desc p {
  width: 150px;
  font-size: 15px;
  text-align: left
}

.table-desc p a {
  text-transform: capitalize
}

.table-desc p a:hover {
  text-decoration: underline
}

.table-vendor a {
  font-weight: 500;
  color: var(--heading);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.table-vendor a:hover {
  color: var(--primary)
}

.table-status h6 {
  text-transform: capitalize
}

.table-status .stock-in {
  color: var(--purple)
}

.table-status .stock-out {
  color: var(--orange)
}

.table-shop {
  width: 180px
}

.table-shop .product-add {
  color: var(--white);
  background: var(--primary)
}

.table-shop .action-plus i,
.table-shop .action-minus i {
  background: var(--white)
}

.table-action a i {
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: 35px;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  margin: 3px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.table-action .view i {
  color: var(--green);
  background: var(--white)
}

.table-action .view i:hover {
  color: var(--white);
  background: var(--green)
}

.table-action .wish i {
  color: var(--green);
  background: var(--white)
}

.table-action .wish.active i {
  color: var(--white);
  background: var(--green)
}

.table-action .trash i {
  color: var(--red);
  background: var(--white)
}

.table-action .trash i:hover {
  color: var(--white);
  background: var(--red)
}

@media (max-width: 1199px) {
  .table-scroll {
    overflow-x: scroll
  }
}

.modal-dialog {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content
}

.modal-content {
  border: none;
  background: none;
  border-radius: 0px
}

.modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 1;
  width: 35px;
  height: 35px;
  font-size: 18px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  background: var(--white);
  -webkit-box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.2);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.modal-close:hover {
  color: var(--white);
  background: var(--primary)
}

.modal-form {
  width: 400px;
  padding: 30px;
  border-radius: 8px;
  background: var(--white)
}

@media (max-width: 400px) {

  .modal-form,
  .modal-dialog {
    width: 100%;
    max-width: inherit
  }
}

@media (max-width: 1100px) {
  .modal-dialog {
    margin: 80px auto 50px
  }

  .modal-close {
    right: 50%;
    top: -45px;
    -webkit-transform: translateX(50%);
    transform: translateX(50%)
  }
}

.order-track {
  margin-bottom: 25px
}

.order-track-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 25px 25px;
  border-radius: 8px;
  background: var(--chalk)
}

.order-track-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1
}

.order-track-item::before {
  position: absolute;
  content: "";
  top: 20px;
  left: 0px;
  width: 100%;
  height: 5px;
  z-index: -1;
  background: var(--white)
}

.order-track-item:first-child::before {
  border-radius: 50px 0px 0px 50px
}

.order-track-item:last-child::before {
  border-radius: 0px 50px 50px 0px
}

.order-track-item i {
  width: 45px;
  height: 45px;
  font-size: 20px;
  line-height: 42px;
  border-radius: 50%;
  margin-bottom: 10px;
  text-align: center;
  display: inline-block;
  color: var(--primary);
  background: var(--white);
  border: 2px dotted var(--primary)
}

.order-track-item span {
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
  color: var(--heading);
  text-transform: capitalize
}

.order-track-item.active::before {
  background: var(--primary)
}

.order-track-item.active i {
  color: var(--white);
  background: var(--primary)
}

.order-track-item.active span {
  color: var(--primary)
}

@media (max-width: 575px) {
  .order-track {
    overflow-x: scroll
  }

  .order-track-list {
    width: 575px
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .order-track-item span {
    white-space: inherit
  }
}

.nav-pills .nav-link {
  font-weight: 400;
  list-style: decimal
}

.nav-pills .nav-link.active {
  color: var(--primary);
  background: transparent
}

@media (max-width: 991px) {
  .nav {
    margin-bottom: 30px
  }
}


.testimonial-card {
  padding: 47px 33px 62px 33px;
  margin: 15px 15px 30px;
  background: var(--white);
  border: 2px solid var(--primary);
  position: relative;
}
.testimonial-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -6px;
  right: -5px;
  z-index: 1;
  border: 2px solid var(--primary);
}
.testimonial-card .testi-user{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}
.testimonial-card .testi-user img{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  border: 5px solid var(--body);
  margin-right: 15px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 25px;
  color: var(--dark);
  font-weight: normal;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.testimonial-card h5 {
  color: var(--dark);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.testimonial-card ul {
  font-size: 14px;
  color: var(--yellow);
  margin-bottom: 13px
}

@media (max-width: 575px) {
  .testimonial-card {
    margin: 0px 0px 30px;
    padding: 25px 25px 0px
  }

  .testimonial-card p {
    font-size: 18px;
    line-height: 28px
  }
}

.category-wrap:hover .category-overlay {
  -webkit-transform: scale(1);
  transform: scale(1)
}

.category-media {
  position: relative;
  margin-bottom: 15px
}

.category-media img {
  width: 100%;
  height: auto;
  border-radius: 8px
}

.category-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(0);
  transform: scale(0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.category-overlay a i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  background: var(--primary);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.category-overlay a i:hover {
  color: var(--primary);
  background: var(--white)
}

.category-meta {
  padding: 0px 10px
}

.category-meta h4 {
  text-transform: capitalize;
  margin-bottom: 3px
}

@media (max-width: 575px) {
  .category-wrap {
    width: 150px
  }
}

@media (max-width: 1199px) {
  .category-meta {
    padding: 0px 5px
  }

  .category-meta h4 {
    font-size: 17px;
    margin-bottom: 0px
  }

  .category-meta p {
    font-size: 15px
  }
}

.blog-card {
  margin-bottom: 30px
}

.blog-card:hover .blog-img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05)
}

.blog-media {
  position: relative
}

.blog-calender {
  position: absolute;
  top: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 55px;
  height: 55px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.6)
}

.blog-calender span {
  line-height: 20px
}

.blog-date {
  font-size: 20px;
  font-weight: 500
}

.blog-month {
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase
}

.blog-img {
  overflow: hidden;
  border-radius: 8px
}

.blog-img img {
  width: 100%;
  border-radius: 8px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.blog-content {
  padding: 15px 15px 0px
}

.blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 15px
}

.blog-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 30px
}

.blog-meta li:last-child {
  margin: 0px
}

.blog-meta li i {
  color: var(--primary);
  margin-right: 8px;
  font-size: 14px
}

.blog-meta li a,
.blog-meta li span {
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  text-transform: uppercase
}

.blog-meta li a {
  color: var(--text);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.blog-meta li a:hover {
  color: var(--primary)
}

.blog-title {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 15px
}

.blog-title a {
  color: var(--heading);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.blog-title a:hover {
  color: var(--primary)
}

.blog-desc {
  font-size: 17px;
  line-height: 28px;
  color: var(--gray);
  margin-bottom: 25px
}

.blog-btn {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.blog-btn i {
  font-size: 17px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.blog-btn:hover {
  color: var(--primary);
  text-decoration: underline
}

.blog-btn:hover i {
  margin-left: 5px
}

@media (max-width: 575px) {
  .blog-meta li {
    margin-right: 25px
  }

  .blog-content {
    padding: 15px 8px 0px
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-content {
    padding: 15px 12px 0px
  }
}

.card-title {
  padding: 0 0px 10px 0px;
  margin-bottom: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid var(--border)
}

.card-title::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0px;
  width: 50px;
  height: 2px;
  background: var(--primary)
}

.header-top {
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 11;
}

.header-top-welcome p {
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.3px
}


.header-top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.header-top-list li {
}

.header-top-list li a {
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  padding: 10px 15px;
}
.header-top-list.right > li{
}
.header-top-list.right > li a{
  color: var(--white)
}
.header-top-list li a:hover {
  color: var(--primary)
}

@media (max-width: 767px) {

  .header-top-welcome,
  .header-top-list {
    display: none
  }

  .header-top-select {
    width: 270px;
    margin: 0px auto
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .header-top-welcome {
    text-align: center;
    margin-bottom: 10px
  }
}

.header-part {
  background: transparent;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  top: 15px;
}
.header-part > .container{
  padding: 5px 20px;
  border-radius: 50px;
  background: var(--white);
}

.header-part.active {
  position: -webkit-sticky;
  position: sticky;
  top: 5px;
  left: 0px;
  width: 100%;
  z-index: 3;
}
.header-part.active > .container{
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.header-part.active .header-widget sup {
  border-color: var(--white)
}

.header-part.active .header-form {
  background: var(--white);
  border-color: var(--primary)
}

.header-content {
  padding: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.header-logo {
  margin-right: 10px;
  padding: 0;
  position: relative;
}

.header-logo img {
  width: auto;
  height: 70px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.header-widget-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.header-widget-group .header-widget {
  margin-left: 20px
}

.header-widget-group .header-widget:first-child {
  margin-left: 0px
}

.header-widget {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.header-widget:hover i {
  color: var(--white);
  background: var(--primary);
  text-shadow: var(--primary-tshadow)
}

.header-widget:hover span {
  color: var(--primary)
}

.header-widget img {
  width: 40px;
  height: 40px;
  border-radius: 50%
}

.header-widget i {
  width: 40px;
  height: 40px;
  font-size: 15px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  color: var(--text);
  background: var(--chalk);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.header-widget span {
  font-size: 15px;
  font-weight: 400;
  margin-left: 8px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-align: left;
  text-transform: capitalize;
  color: var(--heading);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.header-widget span small {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  font-family: sans-serif;
  display: block
}

.header-widget sup {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  background: var(--primary);
  border: 2px solid var(--white);
  text-shadow: var(--primary-tshadow)
}

.header-cart span {
  font-size: 12px;
  margin-left: 15px;
  line-height: 20px;
  text-transform: uppercase
}

.header-form {
  width: 100%;
  max-width: 450px;
  margin: 0px 50px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.header-form:focus-within {
  background: var(--white);
  border-color: var(--primary)
}

.header-form input {
  width: 100%;
  height: 45px;
  font-size: 15px;
  padding-left: 15px
}

.header-form button i {
  width: 45px;
  height: 45px;
  font-size: 15px;
  line-height: 45px;
  text-align: center;
  border-radius: 8px;
  color: var(--text);
  display: inline-block;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.header-form button i:hover {
  color: var(--primary)
}

.header-media-group {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.header-media-group a img {
  width: auto;
  height: 40px
}

.header-user img,
.header-src img {
  width: 40px;
  height: 40px;
  border-radius: 50%
}

.header-user i,
.header-src i {
  width: 40px;
  height: 40px;
  font-size: 15px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.header-user i:hover,
.header-src i:hover {
  color: var(--white);
  background: var(--primary)
}

@media (max-width: 991px) {
  .header-content {
    padding:0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
  .header-part{
    background: var(--white);
    top: 0;
  }
  .header-part.active{
    top: 0;
  }
  .header-part > .container{
    border-radius: 0;
  }
  .header-part.active > .container{
    box-shadow: none;
  }
  .banner-part{
    padding: 40px 0;
    border-radius: 10px;
    height: 350px;
  }
  .banner-part::before{
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.45);
  }
  .header-top-welcome, .header-top-list{
    display: none;
  }
  .banner-content h1, .banner-content h2{
    font-size: 32px;
  }
  .home-index-slider{
    margin:5px;
    border-radius: 10px;
  }

  .header-media-group {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

  .header-widget-group,
  .header-widget,
  .header-logo {
    display: none
  }

  .header-form {
    display: none;
    margin: 10px 0px 0px
  }

  .header-form.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header-widget span {
    display: none
  }
}

.navbar-part {
}

.navbar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.navbar-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

#primary-menu>.navbar-item {
  margin-right: 30px
}

.navbar-item:last-child {
  margin-right: 0px
}

.navbar-link {
  padding: 22px 0px;
  font-weight: 600;
  color: var(--dark);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.navbar-link:hover, .navbar-item.active .navbar-link {
  color: var(--primary)
}

.navbar-focus-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.navbar-focus-list li {
  margin-left: 30px
}

.navbar-focus-list li:first-child {
  margin-left: 0px
}

.navbar-focus-list li a {
  font-weight: 500;
  color: var(--text);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.navbar-focus-list li a:hover {
  color: var(--primary)
}

.navbar-focus-list li a i {
  font-size: 18px;
  margin-right: 5px
}

.navbar-info-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.navbar-info {
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.navbar-info:last-child {
  margin-right: 0px
}

.navbar-info i {
  font-size: 30px;
  margin-right: 15px;
  color: var(--primary)
}

.navbar-info p small {
  font-size: 14px;
  line-height: 16px;
  display: block;
  text-align: left;
  text-transform: capitalize
}

.navbar-info p span {
  font-size: 15px;
  font-weight: 500
}

@media (max-width: 991px) {
  .navbar-part {
    display: none
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-list li {
    margin-right: 18px
  }

  .navbar-link {
    font-size: 15px
  }

  .navbar-info {
    margin-right: 15px
  }

  .navbar-info p span {
    font-size: 14px
  }

  .navbar-info i {
    margin-right: 10px
  }
}

.nav-sidebar {
  position: fixed;
  top: 0px;
  left: -140%;
  width: 100%;
  height: 100vh;
  padding: 0px;
  z-index: 50031;
  background: rgba(255, 255, 255, 1);
  color: var(--dark);
  -webkit-box-shadow: 15px 0px 25px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 15px 0px 25px 0px rgba(0, 0, 0, 0.15);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.nav-sidebar.active {
  left: 0px
}

.nav-header {
  padding: 15px 25px;
  position: relative;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}

.nav-header a img {
  width: auto;
  height: 40px
}

.nav-close {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

.nav-close i {
  width: 35px;
  height: 35px;
  font-size: 18px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  color: var(--text);
  background: var(--white);
  text-shadow: var(--primary-tshadow);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.nav-close i:hover {
  color: var(--white);
  background: var(--primary)
}

.nav-content {
  padding: 0px 18px;
  overflow-y: scroll;
  max-height: calc(100vh - 80px)
}

.nav-btn {
  width: 100%;
  padding: 20px 0px;
  margin-bottom: 20px;
  text-align: center;
  background: var(--chalk)
}

.nav-btn .btn {
  font-size: 14px;
  padding: 12px 28px;
  letter-spacing: 0.3px
}

.nav-btn .btn i {
  font-size: 14px
}

.nav-profile {
  width: 100%;
  text-align: center;
  padding: 18px 0px 0px
}

.nav-user {
  margin-bottom: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary)
}

.nav-user img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 2px solid var(--white)
}

.nav-name {
  margin-bottom: 18px;
  text-transform: capitalize
}

.nav-name a {
  color: var(--heading);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.nav-name a:hover {
  color: var(--primary)
}

.nav-select-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border)
}

.nav-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 18px;
  padding-right: 18px;
  line-height: 20px;
  border-right: 1px solid var(--gray-chalk)
}

.nav-select:last-child {
  padding: 0px;
  margin: 0px;
  border: none
}

.nav-select i {
  margin-right: 5px
}

.nav-list {
  width: 100%
}

.nav-list li {
  width: 100%;
  border-bottom: 1px solid var(--border);
}
.nav-list li:last-child {
  border-bottom: 0;
}

.nav-link {
  width: 100%;
  font-weight: 5800;
  padding: 12px 15px;
  font-size: 20px;
  color: var(--dark);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.nav-link:hover, .nav-list > li.active .nav-link {
  color: var(--primary);
}

.nav-link::before {
  right: 15px
}

.nav-link i {
  font-size: 20px;
  margin-right: 12px
}

.nav-link.active {
  color: var(--primary);
  background: var(--green-chalk)
}

.nav-info-group {
  padding: 20px 0px;
  margin-top: 15px;
  margin-bottom: 25px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.nav-info {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}
.nav-info > a{
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--dark);
}
.nav-info > a > div{
  display: flex;
  flex-direction: column;
}

.nav-info:last-child {
  margin-bottom: 0px
}

.nav-info i {
  font-size: 30px;
  margin-right: 0;
  color: var(--dark)
}

.nav-info p small {
  font-size: 14px;
  line-height: 18px;
  display: block;
  text-align: left;
  text-transform: capitalize
}

.nav-info p span {
  font-size: 16px;
  font-weight: 500
}

.nav-footer {
  text-align: center
}

.nav-footer p {
  font-size: 14px;
  color: var(--gray)
}

.nav-footer p a {
  color: var(--primary)
}


.mobile-menu {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  width: auto;
  z-index: 3;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  -webkit-box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: none
}

.mobile-menu a,
.mobile-menu button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 80px;
  padding: 8px 0px;
  border-radius: 8px;
  position: relative;
}

.mobile-menu a:hover, .mobile-menu a.active,
.mobile-menu button:hover, .mobile-menu button.active {
  background: var(--chalk)
}

.mobile-menu a:hover i,
.mobile-menu button:hover i {
  color: var(--primary)
}

.mobile-menu a:hover span,
.mobile-menu button:hover span {
  color: var(--primary)
}

.mobile-menu a i,
.mobile-menu button i {
  font-size: 15px;
  margin-bottom: 5px;
  color: var(--text);
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu a span,
.mobile-menu button span {
  font-size: 10px;
  line-height: 12px;
  color: var(--text);
  text-transform: uppercase
}

.mobile-menu a sup,
.mobile-menu button sup {
  position: absolute;
  top: -5px;
  left: 75%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: var(--white);
  background: var(--primary);
  border: 2px solid var(--green-chalk);
  text-shadow: var(--primary-tshadow)
}

.mobile-menu a .fas fa-shopping-basket,
.mobile-menu button .fas fa-shopping-basket {
  font-size: 18px
}

@media (max-width: 991px) {
  .mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}

.footer-part {
  padding-top: 60px;
  background: var(--dark);
  color: var(--white);
}

.footer-widget {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%
}

.footer-logo {
  margin-bottom: 25px
}

.footer-logo img {
  width: 180px
}

.footer-desc {
  margin-bottom: 30px
}

.footer-social li {
  display: inline-block;
  margin-right: 7px
}

.footer-social li:last-child {
  margin-right: 0px
}

.footer-social li a {
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  color: var(--primary);
  background: var(--white);
  text-shadow: var(--primary-tshadow);
  -webkit-box-shadow: var(--primary-bshadow);
  box-shadow: var(--primary-bshadow);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.footer-social li a:hover {
  color: var(--white);
  background: var(--primary)
}

.footer-title {
  margin-bottom: 25px;
  letter-spacing: -0.3px;
  text-transform: capitalize;
  color: var(--white);
}

.footer-widget.contact {
  margin-left: 30px
}

.footer-contact li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 18px;
  color: var(--white);
}
.footer-contact li a{
  color: var(--white);
}
.footer-contact li:last-child {
  margin-bottom: 0px
}

.footer-contact li i {
  margin-right: 15px;
  color: var(--white)
}

.footer-contact li p span {
  display: block
}

.footer-links {}

.footer-links ul li {
  margin-bottom: 15px
}

.footer-links ul li:last-child {
  margin-bottom: 0px
}

.footer-links ul li a {
  color: var(--white);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.footer-links ul li a:hover {
  color: var(--primary);
  text-decoration: underline
}

.footer-app {
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr
}

.footer-app a img {
  width: 100%
}

.footer-bottom {
  margin-top: 75px;
  padding: 20px 35px 15px;
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
}

.footer-copytext {
  font-size: 15px;
  color: var(--white)
}

.footer-copytext a {
  color: var(--green-chalk)
}

.footer-copytext a:hover {
  text-decoration: underline
}
.footer-card{
  display: flex;
  gap: 5px;
}
.footer-card a {
  margin-left: 10px
}

.footer-card img {
  height: 24px;
  border-radius: 3px
}

@media (max-width: 768px) {
  .footer-part .container-fluid {
    padding: 0px 25px
  }

  .footer-widget.contact {
    margin-left: 0px
  }
}

@media (max-width: 1199px) {
  .footer-part {
    padding-top: 50px
  }

  .footer-widget {
    margin-bottom: 40px
  }

  .footer-bottom {
    margin-top: 10px
  }
}

@media (max-width: 767px) {
  .footer-bottom {
    padding: 25px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center
  }

  .footer-copytext {
    margin-bottom: 10px
  }

  .footer-card a {
    margin: 0px 3px
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom {
    padding: 25px 30px;
  }
}

.blog-widget {
  margin-bottom: 30px;
  margin-left: 5px;
  border-radius: 8px;
  padding: 18px 25px 25px;
  background: var(--white)
}

.blog-widget:last-child {
  margin-bottom: 0px
}

.blog-widget-title {
  padding-bottom: 16px;
  margin-bottom: 20px;
  position: relative;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border)
}

.blog-widget-title::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0px;
  width: 50px;
  height: 2px;
  background: var(--primary)
}

.blog-widget-form {
  position: relative
}

.blog-widget-form input {
  width: 100%;
  height: 45px;
  padding: 0px 15px 0px 60px;
  border-radius: 8px;
  background: var(--chalk);
  border: 1px solid var(--border);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.blog-widget-form input:focus-within {
  border-color: var(--primary)
}

.blog-widget-form button {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 8px 0px 0px 8px
}

.blog-widget-feed li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border)
}

.blog-widget-feed li:last-child {
  margin: 0px;
  padding: 0px;
  border: none
}

.blog-widget-media img {
  width: 100px;
  border-radius: 8px;
  margin-right: 20px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.blog-widget-text {
  font-size: 17px;
  line-height: 24px
}

.blog-widget-text a {
  color: var(--heading);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.blog-widget-text a:hover {
  color: var(--primary)
}

.blog-widget-text span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase
}

.blog-widget-category li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border)
}

.blog-widget-category li:last-child {
  margin: 0px;
  padding: 0px;
  border: none
}

.blog-widget-category li:hover a {
  color: var(--primary)
}

.blog-widget-category li:hover a span {
  background: var(--primary)
}

.blog-widget-category li a {
  width: 100%;
  font-size: 17px;
  color: var(--text);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.blog-widget-category li a span {
  font-size: 14px;
  float: right;
  width: 30px;
  height: 30px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--heading);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.blog-widget-tag li {
  display: inline-block;
  margin: 0px 8px 12px 0px
}

.blog-widget-tag li a {
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 3px;
  color: var(--text);
  background: var(--chalk);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.blog-widget-tag li a:hover {
  color: var(--white);
  background: var(--primary)
}

.blog-widget-social li {
  display: inline-block;
  margin-right: 10px
}

.blog-widget-social li a {
  width: 45px;
  height: 45px;
  font-size: 18px;
  line-height: 45px;
  text-align: center;
  border-radius: 3px;
  color: var(--white);
  background: var(--heading);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s
}

.blog-widget-social li a:hover {
  background: var(--primary)
}

@media (max-width: 575px) {
  .blog-widget-social li {
    margin-right: 5px
  }

  .blog-widget-social li a {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-widget-media img {
    width: 95px
  }

  .blog-widget-social li {
    margin-right: 5px
  }

  .blog-widget-social li a {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px
  }
}

@media (max-width: 991px) {
  .blog-widget {
    margin-left: 0px
  }
}

.single-banner {
  background-size: cover !important;
  background-position: center;
  padding: 230px 0px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: -150px;
}

.single-banner::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:#03204C;
  opacity: 0.6;
  z-index: -1
}

.single-banner>.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single-banner h2 {
  font-size: 28px;
  margin-bottom: 0;
  color: var(--white);
}
@media (max-width: 991px) {
  .single-banner{
    margin-top: 0;
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .single-banner {
    padding: 30px 0px;
  }

  .single-banner>.container {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .single-banner h2 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0
  }
}


.bottom-paginate {
  padding-top: 25px;
  border-top: 1px solid var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.page-info {
  font-weight: 400;
  color: var(--text)
}

@media (max-width: 575px) {
  .bottom-paginate {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .page-info {
    margin-bottom: 15px
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .bottom-paginate {
    margin-bottom: 30px
  }
}

.tab-descrip {
  position: relative
}

.tab-descrip ul {
  margin-bottom: 15px;
}

.tab-descrip ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 30px;
}
.tab-descrip ul li::before {
  content: "\F5AF";
  font-family: "bootstrap-icons";
  left: 0;
  top: 0;
  position: absolute;
  color: var(--green);
}

.tab-descrip ul li:last-child {
  margin-bottom: 0px
}

.tab-descrip img {
  width: 100%;
  border-radius: 8px
}

.tab-descrip a {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 80px;
  height: 80px;
  font-size: 22px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  background: rgba(15, 199, 86, 0.8);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: var(--primary-bshadow);
  box-shadow: var(--primary-bshadow);
  text-shadow: var(--primary-tshadow)
}

.table-bordered {
  margin-bottom: 0px
}

.table-bordered th,
.table-bordered td {
  padding: 12px 25px;
  text-align: left
}

.table-bordered th {
  font-weight: 500
}

.table-bordered td:last-child {
  border-right: 1px solid var(--border)
}

.sticky-top{
  z-index: 2 !important;
}

.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  height: 1px;
  overflow: hidden;
  position: absolute!important;
  width: 1px;
  word-wrap: normal!important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

.about-img {
  width: calc(100% + 0px);
  position: relative;
  display: flex;
  justify-content: center;
  padding-left: 38px;
}
.about-img > img {
  width: 100% !important;
  border-radius: 215px;
}
.about-img::before, .about-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  border: 1px solid transparent;
  border-radius: 220px;
}
.about-img::before {
  border-color: var(--orange);
  width: 90%;
  height: 100%;
  top: -26px;
  right: initial;
  left: 21px;
  border-radius: 240px;
}  
.about-img::after {
  border-color: var(--yellow);
  width: 90%;
  height: 100%;
  top: -21px;
  right: initial;
  left: 13px;
}
.bullets {
	margin-bottom: 30px;
}

.bullets li {
	position: relative;
	padding-left: 30px;
	padding-top: 5px;
}

.bullets li::before {
	font-family: "bootstrap-icons";
	content: "\f26a";
	position: absolute;
	left: 0;
	top: 5px;
	color: var(--primary);
}

.bullets li li::before {
	color: var(--gray) !important;
}

.bullets.style-1 li::before {
	content: "\f633";
	color: var(--primary);
}

.bullets.style-2 li::before {
	content: "\f4b5";
	color: var(--primary);
}

.bullets.style-3 li::before {
	content: "\f26c";
	color: var(--primary);
}

ol.bullets {
	counter-reset: li;
}
ol.bullets li{
	padding-left: 55px;
	margin-bottom: 15px;
}
ol.bullets h4{
	margin-bottom: 0;
}
ol.bullets li span{
	color: var(--text);
}
ol.bullets ol {
	counter-reset: li;
}

ol.bullets li::before {
	content: counters(li, ".");
	counter-increment: li;
	background: var(--primary);
	color: var(--white);
	width: 42px;
	height: 42px;
	display: flex;
	top: 10px;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	border-radius: 8px;
	font-weight: bold;
	opacity: 0.5;
}

ol.bullets li li::before {
	color: var(--white) !important;
}
/*service box*/
.service-box {
	border: 0;
	padding: 0;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	height: 100%;
	border-radius: 5px;
	position: relative;
}

a.service-box {
	color: var(--dark);
}

.service-box:hover,
.service-box.active {}

.service-box-thumb {
	margin-bottom: 5px;
  position: relative;
}
.service-box-thumb .label-text{
  position: absolute;
  left: 5px;
  top: 5px;
  font-size: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 2px 5px;
  line-height: 1.2;
  border-radius: 4px;
  display: inline-block;
}

.servic-rating {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--primary);
	color: var(--white);
	border-radius: 5px;
	padding: 5px 10px;
	font-size: 12px;
	line-height: 14px;
	display: inline-block;
}

.service-box-thumb img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 5px;
}

.service-icon {
	margin-bottom: 30px;
}

.service-icon i {
	font-size: 70px;
	color: var(--primary);
}

.service-box-title {
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 20px;
}

.service-box-text {
	margin-bottom: 0;
}

.service-box-content h4 {
	margin: 0;
}

.service-box-content a.link {
	width: 100%;
	color: var(--dark);
	margin-top: 15px;
	font-weight: 500;
}
.service-box.style-1{
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.06);
  padding: 15px;
  border-radius: 10px;
  background: var(--white);
}
.service-box.style-1 .service-box-thumb img{
  height: 250px;
}

.service-box.style-2 {
	display: flex;
  flex-direction: column;
	padding: 0;
	box-shadow: none;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: var(--white);
	z-index: 1;
	overflow: hidden;
}

.service-box.style-2 .service-box-thumb {
  margin: 0;
}
.service-box.style-2 .service-box-thumb img{
	width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 0;
}

.service-box.style-2 .service-box-title {
	margin-bottom: 10px;
}
.service-box.style-2 .service-box-content{
  padding: 20px;
}

.service-box.style-3 {
	text-align: center;
	padding: 30px;
	box-shadow: none;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: var(--white);
	z-index: 1;
	overflow: hidden;
}
.service-box.style-3 .service-box-thumb{
	margin-bottom: 15px;
}
.service-box.style-3 .service-box-thumb img{
	width: auto;
	height: 130px;
}
.service-box.style-3 .service-icon {
	margin-bottom: 20px;
}
.service-box.style-3 .service-icon i {
	font-size: 60px;
	color: var(--orange);
}
.service-box.style-3 .service-box-content{
	margin-bottom: 20px;
}
.service-box.style-3 .service-box-title{
	margin-bottom: 10px;
}
.service-box.style-3:hover {
	transform: translateY(-10px);
	border: 1px solid var(--orange);
	box-shadow: 2px 0px 20px 0px rgba(111, 111, 134, 0.15);
}
.service-box.style-3::before, .service-box.style-3::after {
	content: "";
	position: absolute;
	inset-inline-end: -8%;
	inset-block-start: 0;
	height: 80px;
	width: 80px;
	border-radius: 50%;
	background-color: var(--orange);
	opacity: 0.05;
	z-index: -1;
}
.service-box.style-3::before {
	inset-inline-end: 0;
	inset-block-start: -12%;
}

.service-box.style-4 {
	text-align: center;
  border-radius: 20px;
  position: relative;
}
.service-box.style-4::before {
  position: absolute;
  content: "";
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0) 10.2%, rgba(17, 21, 11, 0.7) 88.41%);
  z-index: 1;
}
.service-box.style-4 .service-box-thumb{
	margin-bottom: 0;
}
.service-box.style-4 .service-box-thumb img{
	width: 100%;
	height: 460px;
	object-fit: cover;
  border-radius: 20px;
}
.service-box.style-4 .service-box-content{
	position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: var(--white);
  z-index: 1;
}
.service-box.style-4 .service-box-title{
	margin-bottom: 0;
  color: var(--white);
  font-size: 22px;
}
.service-box.style-4 .btn-link{
	background: var(--orange);
  text-decoration: none;
  font-weight: normal;
  color: var(--white);
  padding: 5px 20px;
  font-size: 14px;
  border-radius: 20px;
  margin-top: 10px;
}

.service-box.style-5 {
	display: flex;
  flex-direction: column;
	padding: 0;
	box-shadow: none;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: var(--white);
	z-index: 1;
	overflow: hidden;
}

.service-box.style-5 .service-box-thumb {
  margin: 0;
}
.service-box.style-5 .service-box-thumb img{
	width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 0;
}

.service-box.style-5 .service-box-title {
	margin-bottom: 10px;
}
.service-box.style-5 .service-box-content{
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  text-align: center;
}
.service-box.style-5 .btn-link{
  padding: 5px 20px;
  border-radius: 30px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}


.service-box-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 10px;
}
.service-box-footer span{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.service-box-footer b{
  font-size: 18px;
}
.service-box-footer a{
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  background: transparent;
  border: 1px solid var(--orange);
  padding: 5px 10px 5px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}
.service-box.style-2 .btn-link{
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  background: transparent;
  border: 1px solid var(--orange);
  padding: 5px 10px 5px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  width: max-content;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}
.service-box-footer a i, .service-box.style-2 .btn-link i{
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.service-box-footer a:hover, .service-box.style-2 .btn-link:hover{
  background: var(--orange);
  color: var(--white);
}
.service-box-footer a:hover i, .service-box.style-2 .btn-link:hover i{
  background: var(--white);
  color: var(--orange);
}
.service-slider .slick-track, .service-slider-2 .slick-track{
  display: flex;
  gap: 20px;
}
.service-slider .slick-slide, .service-slider-2 .slick-slide{
  height: auto !important;
}
.service-slider .service-box, .service-slider-2 .service-box{
  height: 100%;
}
.service-icon-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 10px;
}
.service-icon-list li{
  flex: 1 1 auto;
}

.des-icon-1, .des-icon-2 {
  position: absolute;
  z-index: 1;
}
.des-icon-1 {
  top: 60px;
  right: 160px;
}
.des-icon-2 {
  bottom: -5px;
  left: 50px;
}
.des-img-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  animation: leftToRight 4000ms ease-in-out infinite;
}
.des-img-2 {
  position: absolute;
  top: 10%;
  left: 0;
  max-width: 200px;
  z-index: -1;
}
.des-img-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 200px;
  z-index: -1;
}
.animate-parachute {
  transform-origin: center top;
  animation: parachuteFloat3D 5s infinite ease-in-out;
}
@keyframes parachuteFloat3D {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(0, -10px) rotate(10deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes leftToRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0);
  }
}

.animate-tree {
  transform-origin: bottom right;
  animation: treeSway 3s infinite ease-in-out;
}
@keyframes treeSway {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.about-image{
  position: relative;
  z-index: 1;
  margin-right: 30px;
}
.about-item-1 img {
  clip-path: polygon(80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
  max-width: 400px;
}
.about-item-2 {
  position: absolute;
  bottom: 0px;
  right: 0;
}
.about-item-2 img {
  border: 8px solid var(--white);
  max-width: 300px;
  border-radius: 10px;
}
.about-item-3 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  animation: topToBottom 4s ease-in-out infinite;
  }
.about-item-content {
  margin-top: -25px;
  position: relative;
  z-index: 1;
  max-width: 208px;
  width: 100%;
  background-color: var(--primary);
  padding: 20px;
  margin-left: 30px;
  display: flex;
  border-radius: 10px;
  align-items: center;
  justify-content: start;
  margin-right: auto;
  gap: 10px;
  color: var(--white);
}
.about-item-content .item_icon img{
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}
.item_content .item_count{
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
  align-self: center;
  justify-content: start;
}
.item_content .item_count span {
  margin-top: -12px;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 179%;
  color: var(--gotur-white, #fff);
  margin-bottom: -15px;
}
.item_content .item_count span:last-child {
  font-weight: 500;
  font-size: 16px;
  line-height: 60px;
}
.about-item-content .item_content .item-text{
  margin: 0;
  font-size: 14px;
}
@keyframes topToBottom {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}
.icon-box{
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-box .icon-box-icon{
  width: 50px;
  height: 50px;
}
.icon-box .icon-box-icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.icon-box-content a{
  color: var(--dark);
}

.why-choose-item{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background: #ebffe8;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  margin: 10px 0;
}
.why-choose-item img{
  width: 70px;
  height: 70px;   
}
.why-choose-item h4{
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}
.why-choose-us > div:nth-child(2) .why-choose-item{
  background: #e8f8ff;
}
.why-choose-us > div:nth-child(3) .why-choose-item{
  background: #fde8ff;
}
.why-choose-us > div:nth-child(4) .why-choose-item{
  background: #fff1e8;
}


@media screen and (max-width: 991px) {
  .des-icon-1 {
    display: none;
  }
  .des-icon-2 {
    display: none;
  }
  .service-slider .slick-track, .service-slider-2 .slick-track{
    display: flex;
    gap: 10px;
  }
  .service-box.style-4 .service-box-thumb img{
    height: 300px;
  }
  .service-box.style-4 .service-box-title{
    font-size: 16px;
  }
  .service-box.style-1{
    padding: 10px;
  }
  .service-box.style-1 .service-box-thumb img{
    height: 140px;
  }
  .service-box.style-2 .service-box-thumb img{
    height: 140px;
  }
  .service-box.style-2 .service-box-content{
    padding: 10px;
  }
  .service-box.style-1 .service-box-title, .service-box.style-2 .service-box-title{
    font-size: 14px;
    line-height: 1.1;
  }
  .service-box.style-1 .btn-link{
    font-size: 12px;
  }
  .service-box-footer{
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .service-box-footer span{
    font-size: 12px;
  }
  .service-box-footer b{
    font-size: 14px;
  }
  .service-box-footer a{
    font-size: 12px;
    padding: 3px 10px 3px 15px;
  }
  .service-box-footer a i{
    font-size: 8px;
  }
  .about-image{
    margin-right: 0;
  }
  .about-item-1 img{
    max-width: 100%;
  }
  .about-item-2 img{
    max-width: 220px;
  }
  
}
@media screen and (max-width: 767px) {
  .service-box.style-4 .service-box-content{
    padding: 10px;
  }
  .service-box.style-4 .btn-link{
    font-size: 10px;
    padding: 3px 15px;
  }
  .service-box.style-4 .service-box-title{
    font-size: 14px;
  }
  .service-box.style-1 .service-box-thumb img{
    height: 100px;
  }
  .service-icon-list{
    font-size: 10px;
  }
  .service-icon-list li{
    width: 50%;
    line-height: 14px;
  }
  .service-box-footer span{
    line-height: 1.1;
  }
}

.footercall{
	position: fixed;
	bottom: 20px;
	right: 10px;
	display: grid;
	gap: 20px;
	z-index: 1;
}
.footercall .phone{
	background: var(--white);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 40px;
	height: 40px;
}
.footercall .phone img{
	max-width: 30px;
	max-height: 30px;
}
.footercall .whatsapp{
	position: relative;
}
.footercall .phone:before {
    position: absolute;
    content: " ";
    z-index: -1;
    top: -15px;
    left: -15px;
	background-color: var(--primary);
	width: 70px;
  	height: 70px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse 1s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.footercall .whatsapp:before {
    position: absolute;
    content: " ";
    z-index: -1;
    top: -15px;
    left: -15px;
	background-color: #10b418;
	width: 70px;
  	height: 70px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse 1s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(0.3);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: .6;
    }
    75% {
        -webkit-transform: scale(0.9);
        opacity: .3;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    25% {
        transform: scale(0.3);
        opacity: 1;
    }
    50% {
        transform: scale(0.6);
        opacity: .6;
    }
    75% {
        transform: scale(0.9);
        opacity: .3;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* 404 Error Page */
.error-part {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-img {
    margin-bottom: 40px;
}

.error-img img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.error-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.error-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--secondary);
}
.review-box{
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
}
.star-rating{
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--yellow);
}
.star-rating i{
  font-size: 16px;
}

@media (max-width: 767px) {
    .error-img img {
        max-width: 300px;
    }
    
    .error-content h2 {
        font-size: 2rem;
    }
    
    .error-content p {
        font-size: 1rem;
    }
    .review-box{
        margin: 5px;
    }
}