@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");
/*=====================================
          ALL VARIABLE DECLARE
======================================*/
:root {
  --h1size: 50px;
  --h2size: 28px;
  --h3size: 24px;
  --h4size: 20px;
  --h5size: 18px;
  --h6size: 16px;
  --bodysize: 16px;
  --rweight: 400;
  --mweight: 500;
  --sweight: 600;
  --bweight: 700;
  --eweight: 800;
  --bcweight: 900;
  --pfamily: 'Heebo', sans-serif;
  --sfamily: 'Playfair Display', serif;
  --textcolor: #555555;
  --brandcolor: #49a010;
  --whitecolor: #ffffff;
  --headingcolor: #232d3b;
  --headerborder: #009222;
  --navbarcolor: #ddffd5;
  --bordercolor: #e8e8e8;
  --graycolor: #f5f5f5;
  --pldrcolor: #777777;
  --starcolor: #ffcc23;
  --removecolor: #ff3838;
  --brandlight: #65ff00;
  --bshadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  --bcardshadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  --biconshadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.1);
  --tshadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}

/*cahnge for something*/
/*=====================================
            ALL COMMON STYLE
======================================*/
* {
  margin: 0px;
  padding: 0px;
  outline: 0px;
}

img {
  vertical-align: middle;
}

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

a:hover {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

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

html,
body {
  scroll-behavior: smooth;
}

body {
  font-size: var(--bodysize);
  font-weight: var(--rweight);
  font-family: var(--pfamily);
  line-height: 26px;
  color: var(--textcolor);
  background: var(--graycolor);
}

h1 {
  font-size: var(--h1size);
  font-weight: var(--bweight);
  font-family: var(--sfamily);
  color: var(--headingcolor);
}

h2 {
  font-size: var(--h2size);
  font-weight: var(--bweight);
  font-family: var(--sfamily);
  color: var(--headingcolor);
}

h3 {
  font-size: var(--h3size);
  font-weight: var(--bweight);
  font-family: var(--sfamily);
  color: var(--headingcolor);
}

h4 {
  font-size: var(--h4size);
  font-weight: var(--mweight);
  font-family: var(--pfamily);
  color: var(--headingcolor);
}

h5 {
  font-size: var(--h5size);
  font-weight: var(--mweight);
  font-family: var(--pfamily);
  color: var(--headingcolor);
}

h6 {
  font-size: var(--h6size);
  font-weight: var(--mweight);
  font-family: var(--pfamily);
  color: var(--headingcolor);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--pldrcolor);
  font-size: 15px;
  letter-spacing: 0.3px;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--pldrcolor);
  font-size: 15px;
  letter-spacing: 0.3px;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: var(--pldrcolor);
  font-size: 15px;
  letter-spacing: 0.3px;
}

input::placeholder,
textarea::placeholder {
  color: var(--pldrcolor);
  font-size: 15px;
  letter-spacing: 0.3px;
}

button:focus {
  outline: none;
}

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

/*=====================================
        SELECT-OPTION ELEMENT STYLE
======================================*/
/* FOR HEADER SECTION LANGUAGE & CURRENCY */
.header-select {
  border: none;
  width: 100px;
  height: 45px;
  padding: 8px;
  font-size: 15px;
  color: var(--whitecolor);
  background: transparent;
  text-transform: capitalize;
  cursor: pointer;
}

.header-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header-select .clr {
  color: var(--headingcolor);
}

/* FOR PRODUCT-LIST PAGE SHORT ITEM */
.product-short-select {
  height: 40px;
  width: 250px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
}

.product-short-select:focus {
  border-color: var(--brandcolor);
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*=====================================
         DROPDOWN ELEMENT STYLE
======================================*/
/* FOR NAVBAR DROPDOWN MENU */
.navbar-dropdown {
  position: relative;
}

.navbar-dropdown:hover .dropdown-list {
  visibility: visible;
  opacity: 1;
  top: 56px;
}

.dropdown-indicator {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.dropdown-indicator span {
  margin-right: 5px;
}

.dropdown-indicator i {
  font-size: 10px;
}

.dropdown-list {
  position: absolute;
  top: 80px;
  left: 0px;
  z-index: 3;
  width: 225px;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  border-radius: 3px;
  background: var(--whitecolor);
  border-top: 2px solid var(--brandcolor);
  -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 15px 35px 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;
}

.dropdown-list li {
  border-bottom: 1px solid var(--bordercolor);
}

.dropdown-list li:last-child {
  border-bottom: none;
}

.dropdown-link {
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 25px;
  color: var(--textcolor);
  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(--whitecolor);
  background: var(--brandcolor);
}

@media (max-width: 767px) {
  .navbar-dropdown {
    position: inherit;
  }
  .dropdown-indicator {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .dropdown-list {
    position: inherit;
    visibility: visible;
    opacity: 1;
    width: 100%;
    border: none;
    display: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0px 25px;
    background: transparent;
  }
  .dropdown-link {
    font-size: 14px;
    padding: 7px 15px;
    border-radius: 8px;
  }
}

/* FOR NASTED DROPDOWN MENU */
.nasted-dropdown {
  height: 402px;
  padding: 0px 8px;
  overflow-y: scroll;
}

.nasted-dropdown li {
  border-bottom: 1px solid var(--bordercolor);
}

.nasted-dropdown li:last-child {
  border-bottom: none;
}

.nasted-dropdown li a {
  width: 100%;
  padding: 8px 8px;
  color: var(--textcolor);
  text-transform: capitalize;
  font-size: 15px;
  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;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.nasted-dropdown li a:hover {
  color: var(--brandcolor);
}

.nasted-dropdown li a i {
  font-size: 12px;
}

.nasted-dropdown li ul {
  padding: 0px 18px;
  display: none;
}

.nasted-dropdown li ul li a {
  font-size: 14px;
  padding: 6px 0px;
  position: relative;
  margin-left: 25px;
}

.nasted-dropdown li ul li a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background: var(--textcolor);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .nasted-dropdown {
    height: 266px;
  }
}

/*=====================================
            MEGAMENU PART STYLE
======================================*/
.navbar-megamenu {
  position: static;
}

.navbar-megamenu:hover .megamenu {
  visibility: visible;
  opacity: 1;
  top: 56px;
}

.megamenu {
  position: absolute;
  top: 80px;
  left: 0px;
  z-index: 3;
  width: 100%;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  border-radius: 3px;
  padding: 15px 15px;
  background: var(--whitecolor);
  border-top: 2px solid var(--brandcolor);
  -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 15px 35px 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;
}

.megamenu ul {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.megamenu ul li {
  margin: 10px 15px;
}

.megamenu ul li a {
  width: 240px;
  padding: 18px 30px;
  border-radius: 3px;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: var(--graycolor);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.megamenu ul li a:hover {
  background: var(--brandcolor);
}

.megamenu ul li a:hover i,
.megamenu ul li a:hover span {
  color: var(--whitecolor);
}

.megamenu ul li a i {
  font-size: 30px;
  border-radius: 3px;
  display: inline-block;
  color: var(--brandcolor);
  margin-right: 12px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.megamenu ul li a span {
  font-size: 15px;
  font-weight: 500;
  color: var(--textcolor);
  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;
}

@media (max-width: 767px) {
  .navbar-megamenu {
    position: inherit;
  }
  .dropdown-indicator {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .megamenu {
    position: inherit;
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 250px;
    border: none;
    display: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent;
    overflow-y: scroll;
    padding: 0px 15px;
  }
  .megamenu ul li {
    margin: 0px;
    border-bottom: 1px solid var(--bordercolor);
  }
  .megamenu ul li a {
    width: 210px;
    padding: 15px 0px;
  }
  .megamenu ul li a:hover {
    background: transparent;
  }
  .megamenu ul li a:hover i,
  .megamenu ul li a:hover span {
    color: var(--brandcolor);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .megamenu {
    height: 200px;
    overflow-y: scroll;
  }
  .megamenu ul li {
    margin: 10px 10px;
  }
  .megamenu ul li a {
    width: 210px;
  }
}

/*=====================================
           BUTTON ELEMENT STYLE
======================================*/
/* FOR ALL BUTTON STYLE */
.btn {
  border: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 13px 32px;
  letter-spacing: 0.5px;
  border-radius: 3px;
  border: 2px solid var(--brandcolor);
}

.btn:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn i {
  margin-right: 8px;
}

/* FOR ALL INLINE BUTTON COLOR */
.btn-inline {
  color: var(--whitecolor);
  background: var(--brandcolor);
}

.btn-inline:hover {
  color: var(--brandcolor);
  background: var(--whitecolor);
}

/* FOR ALL OUTLINE BUTTON COLOR */
.btn-outline {
  color: var(--brandcolor);
  background: var(--whitecolor);
}

.btn-outline:hover {
  color: var(--whitecolor);
  background: var(--brandcolor);
}

.btn-active{
  color: var(--whitecolor);
  background: var(--brandcolor);
}

/*=====================================
            FORM ELEMENT STYLE
======================================*/
/* FOR NAVBAR SEARCH FORM */
.search-form {
  width: 100%;
  display: block;
  position: relative;
}

.search-form input {
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 3px;
  background: var(--whitecolor);
  padding: 0px 150px 0px 20px;
}

.search-form .btn {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 45px;
  padding: 11px 32px;
}

/* FOR NEWSLATTER FORM */
.footer-form {
  width: 100%;
}

.footer-form form {
  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;
}

.footer-form form input {
  width: 100%;
  height: 50px;
  border: none;
  background: var(--graycolor);
  border-radius: 8px;
  padding: 0px 20px;
  margin-bottom: 20px;
}

.footer-form form .btn {
  width: 100%;
  border-radius: 8px;
  text-align: center;
  padding: 12px 0px;
  font-size: 13px;
}

.footer-form form .btn i {
  margin-right: 8px;
}

/* FOR REVIEW FORM */
.review-form h3 {
  margin: 0px 0px 25px 15px;
}

.review-form .btn {
  margin-left: 15px;
}

.grid-input {
  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-bottom: 30px;
}

.grid-input input {
  width: 100%;
  height: 50px;
  margin: 0px 15px;
  padding: 0px 20px;
  border-radius: 8px;
  background: var(--whitecolor);
  border: 1px solid var(--bordercolor);
}

.grid-input input:focus-within {
  border-color: var(--brandcolor);
}

.row-input {
  margin: 0px 15px 20px;
}

.row-input input {
  width: 100%;
  height: 50px;
  padding: 15px 20px;
  border-radius: 8px;
  background: var(--whitecolor);
  border: 1px solid var(--bordercolor);
}

.row-input input:focus-within {
  border-color: var(--brandcolor);
}

.row-input textarea {
  width: 100%;
  height: 250px;
  padding: 15px 20px;
  border-radius: 8px;
  background: var(--whitecolor);
  border: 1px solid var(--bordercolor);
}

.row-input textarea:focus-within {
  border-color: var(--brandcolor);
}

.review-rating {
  margin: 0px 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.review-rating li {
  margin-right: 15px;
}

.review-rating li i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background: var(--graycolor);
  color: var(--textcolor);
  font-size: 14px;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.review-rating li i:hover {
  color: var(--whitecolor);
  background: var(--starcolor);
}

@media (max-width: 767px) {
  .grid-input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0px;
  }
  .grid-input input {
    margin-bottom: 20px;
  }
  .row-input {
    margin: 0px 0px 20px;
  }
  .star-rating {
    margin: 0px 0px 20px !important;
  }
  .review-form .btn {
    margin-left: 0px;
  }
}

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

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

.form-label {
  font-weight: 500;
  margin: 0px 0px 7px 3px;
}

.form-control {
  width: 100%;
  height: 45px;
  padding: 0px 20px;
  border-radius: 8px;
  background: var(--whitecolor);
  border: 1px solid var(--bordercolor);
}

.form-control:focus-within {
  background: var(--whitecolor);
  border-color: var(--brandcolor);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.form-control::-webkit-file-upload-button {
  height: 45px;
  border: none;
  background: none;
}

.form-control::-webkit-file-upload-button:focus {
  border: none;
  outline: none;
}

/*=====================================
            ICON ELEMENT STYLE
======================================*/
/* FOR ALL ICON STYLE */
.icon {
  font-size: 14px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 3px;
  text-shadow: var(--tshadow);
  -webkit-box-shadow: var(--bshadow);
          box-shadow: var(--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;
}

.icon-inline {
  color: var(--textcolor);
  background: var(--whitecolor);
}

.icon-inline:hover {
  color: var(--whitecolor);
  background: var(--brandcolor);
}

@media (max-width: 767px) {
  .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

/* FOR ALL SLIDER ARROW ICON */
.slider-arrow:hover .dandik,
.slider-arrow:hover .bamdik {
  visibility: visible;
  opacity: 1;
}

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

.slider-dots ul li {
  width: 25px;
  height: 5px;
  border-radius: 30px;
  background: var(--graycolor);
  margin: 0px 10px;
  display: inline-block;
  cursor: pointer;
  -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
}

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

.slider-dots ul li.slick-active {
  background: var(--brandcolor);
}

.dandik,
.bamdik {
  position: absolute;
  top: 38%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 3px;
  color: var(--brandcolor);
  background: var(--whitecolor);
  text-shadow: var(--tshadow);
  -webkit-box-shadow: var(--bshadow);
          box-shadow: var(--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(--whitecolor);
  background: var(--brandcolor);
}

.dandik {
  right: -10px;
}

.bamdik {
  left: -10px;
}

@media (min-width: 576px) and (max-width: 1199px) {
  .dandik {
    right: -18px;
  }
  .bamdik {
    left: -18px;
  }
}

/*=====================================
            SECTION HEADING STYLE
======================================*/
.section {
  padding: 100px 0px 0px;
}

.section-heading {
  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;
  margin-bottom: 50px;
}

.title {
  position: relative;
}

.title::before {
  position: absolute;
  content: "";
  top: 50%;
  right: -80px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  height: 2px;
  border-radius: 30px;
  background: var(--brandcolor);
}

.title::after {
  position: absolute;
  content: "";
  top: 70%;
  right: -55px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 35px;
  height: 2px;
  border-radius: 30px;
  background: var(--brandcolor);
}

@media (max-width: 767px) {
  .section {
    padding: 60px 0px 0px;
  }
  .section-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    margin-bottom: 45px;
  }
  .title::before, .title::after {
    top: 0px;
    right: 50%;
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
  .title::before {
    top: 50px;
  }
  .title::after {
    top: 55px;
  }
}

/*=====================================
            HEADER PART STYLE
======================================*/
.header-part {
  background: var(--brandcolor);
}

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

.header-info li {
  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: 10px 25px;
  border-right: 1px solid var(--headerborder);
}

.header-info li:last-child {
  border-right: 0px;
}

.header-info li i {
  margin-right: 8px;
}

.header-info li i,
.header-info li p {
  font-size: 15px;
  color: var(--whitecolor);
}

.header-option,
.header-curr,
.header-lang {
  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-option {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-curr i,
.header-lang i {
  font-size: 15px;
  color: var(--whitecolor);
  margin-top: 2px;
}

.header-lang {
  padding-left: 30px;
  border-left: 1px solid var(--headerborder);
}

@media (max-width: 767px) {
  .header-info {
    display: none;
  }
  .header-option {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-curr {
    padding-left: 30px;
  }
}

/*=====================================
            NAVBAR PART STYLE
======================================*/
.navbar-part {
  background: var(--navbarcolor);
}

.navbar-fixed {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 3;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 5px 10px 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;
}

.navbar-element {
  padding-top: 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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.left-widget {
  display: none;
}

.navbar-logo img {
  width: 180px;
  height: auto;
}

.navbar-src {
  margin: 0px 50px;
}

.right-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.right-widget li {
  margin-right: 15px;
}

.right-widget li:last-child {
  margin-right: 0px;
}

.right-widget li a {
  position: relative;
}

.right-widget li a sup {
  position: absolute;
  top: -5px;
  right: -5px;
  height: 18px;
  font-size: 12px;
  line-height: 18px;
  padding: 0px 5px;
  border-radius: 30px;
  color: var(--whitecolor);
  background: var(--brandcolor);
  text-shadow: var(--tshadow);
}

.navbar-slide {
  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-slide-cross,
.navbar-slide-logo,
.navbar-slide-src {
  display: none;
}

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

.navbar-link {
  font-weight: 500;
  padding: 15px 24px;
  border-radius: 5px;
  color: var(--headingcolor);
  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 {
  color: var(--brandcolor);
}

.navbar-item.active .navbar-link {
  color: var(--brandcolor);
}

@media (max-width: 767px) {
  .navbar-element {
    padding: 12px 0px;
  }
  .left-widget {
    display: block;
  }
  .right-widget li {
    margin-right: 0px;
  }
  .navbar-logo {
    margin: 0px 15px;
  }
  .navbar-logo img {
    width: 160px;
  }
  .navbar-src,
  .right-widget li {
    display: none;
  }
  .right-widget li:first-child {
    display: block;
  }
  .navbar-slide {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    visibility: hidden;
    opacity: 0;
    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-slide.active {
    visibility: visible;
    opacity: 1;
  }
  .navbar-slide.active .navbar-content {
    left: 0px;
  }
  .navbar-content {
    position: fixed;
    top: 0px;
    left: -275px;
    z-index: 3;
    width: 270px;
    height: 100vh;
    padding: 15px 15px 0px;
    overflow-y: scroll;
    overflow-x: hidden;
    background: var(--graycolor);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all linear .4s;
    transition: all linear .4s;
  }
  .navbar-slide-cross,
  .navbar-slide-logo,
  .navbar-slide-src {
    display: block;
  }
  .navbar-slide-cross {
    text-align: center;
    margin-bottom: 25px;
  }
  .navbar-slide-logo {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bordercolor);
  }
  .navbar-slide-logo a img {
    width: 180px;
  }
  .navbar-slide-src {
    margin: 30px 0px;
  }
  .navbar-slide-src .btn {
    font-size: 14px;
    padding: 12px 15px;
  }
  .navbar-slide-src .btn i {
    margin-right: 0px;
  }
  .navbar-slide-src .btn span {
    display: none;
  }
  .navbar-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 70px;
  }
  .navbar-item {
    width: 100%;
    border-bottom: 1px solid var(--bordercolor);
  }
  .navbar-link {
    padding: 12px 0px;
    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;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .navbar-link {
    padding: 15px 18px;
  }
  .navbar-logo img {
    width: 160px;
    height: auto;
  }
  .navbar-src .btn {
    font-size: 14px;
    padding: 12px 15px;
  }
  .navbar-src .btn i {
    margin-right: 0px;
  }
  .navbar-src .btn span {
    display: none;
  }
}

/*=====================================
            BTMBAR PART STYLE
======================================*/
.btmbar-part {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 3;
  background: var(--whitecolor);
  border-radius: 10px 10px 0px 0px;
  -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: none;
}

.btmbar-widget {
  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;
}

.btmbar-widget li a {
  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: 70px;
  padding: 8px 0px;
  border-radius: 8px;
  position: relative;
}

.btmbar-widget li a:hover {
  background: var(--graycolor);
}

.btmbar-widget li a:hover i {
  color: var(--brandcolor);
}

.btmbar-widget li a:hover span {
  color: var(--brandcolor);
}

.btmbar-widget li a i {
  color: var(--textcolor);
  font-size: 13px;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}

.btmbar-widget li a span {
  color: var(--textcolor);
  font-size: 11px;
  line-height: 18px;
}

.btmbar-widget li a sup {
  position: absolute;
  top: 0px;
  right: 15px;
  height: 18px;
  line-height: 18px;
  padding: 0px 5px;
  border-radius: 30px;
  background: var(--brandcolor);
  color: var(--whitecolor);
  font-size: 12px;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .btmbar-part {
    display: block;
  }
}

/*=====================================
        NEWSLETTER PART STYLE
======================================*/
.news-part {
  padding: 70px 0px;
  background: url(../../images/banner/04.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.news-part::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.news-content {
  margin-top: 8px;
}

.news-content h2 {
  font-size: 35px;
  color: var(--whitecolor);
}

.news-form input {
  height: 55px;
}

.news-form .btn {
  top: 5px;
  right: 5px;
}

@media (max-width: 767px) {
  .news-part {
    padding: 60px 0px;
  }
  .news-content {
    margin: 0px 0px 30px;
    text-align: center;
  }
  .news-form input {
    padding: 0px 75px 0px 20px;
  }
  .news-form .btn {
    padding: 11px 20px;
  }
  .news-form .btn i {
    margin-right: 0px;
  }
  .news-form .btn span {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .news-content {
    margin-top: 0px;
  }
  .news-form {
    margin-top: 15px;
  }
  .news-form input {
    padding: 0px 90px 0px 20px;
  }
}

/*=====================================
            FOOTER PART STYLE
======================================*/
.footer-part {
  padding: 100px 0px 80px;
  border-top: 1px solid var(--bordercolor);
}

.footer-content h3 {
  margin-bottom: 25px;
  display: inline-block;
}

.footer-content a img {
  width: 180px;
  margin-bottom: 25px;
}

.footer-content p {
  margin-bottom: 30px;
}

.footer-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-icon li {
  margin-right: 15px;
}

.footer-widget {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.footer-widget ul {
  margin-right: 50px;
}

.footer-widget ul li {
  margin: 15px 0px;
}

.footer-widget ul li a {
  color: var(--textcolor);
  margin-left: 25px;
  position: relative;
}

.footer-widget ul li a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 2px;
  border-radius: 30px;
  background: var(--brandcolor);
}

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

.download-app {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.download-app li {
  margin-right: 15px;
}

.download-app li:last-child {
  margin-right: 0px;
}

.download-app li a img {
  width: 160px;
}

@media (max-width: 767px) {
  .footer-part {
    padding: 60px 0px 0px;
  }
  .footer-content {
    text-align: center;
    margin-bottom: 50px;
  }
  .footer-content h3 {
    margin-bottom: 45px;
  }
  .footer-icon {
    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;
  }
  .footer-icon li {
    margin: 0px 8px;
  }
  .footer-widget {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-widget ul {
    margin: 0px 15px;
  }
  .download-app {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .download-app li {
    margin: 0px 8px;
  }
  .download-app li a img {
    width: 130px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .footer-widget ul {
    margin: 0px 30px;
  }
  .download-app {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .download-app a img {
    width: 160px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-icon {
    margin-bottom: 60px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .footer-widget ul {
    margin-right: 35px;
  }
  .download-app li a img {
    width: 135px;
  }
}

/*=====================================
        FOOTER BOTTOM PART STYLE
======================================*/
.footer-bottom {
  padding: 15px 0px;
  background: var(--brandcolor);
}

.footer-bottom .container {
  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;
}

.footer-bottom .container p {
  color: var(--graycolor);
  font-size: 15px;
}

.footer-bottom .container p a {
  color: var(--whitecolor);
}

.footer-bottom .container p a:hover {
  text-decoration: underline;
}

.pay-card li {
  display: inline-block;
  margin-left: 10px;
}

.pay-card li a img {
  width: 45px;
  border-radius: 3px;
}

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