:root {
  --main-color: #1489c5;
  --yellow-color: #92ce31;
  --dark-red: #35160c;
  --heading-color: #00060F;
  --text-color: #1E1E1E;
  --white-color: #fff;
  --black-color: #000;
  --main-font: "Lato", sans-serif;
  --heading-font: "Lato", sans-serif;
  --button-font: "Lato", sans-serif;
  --bold-font: "Lato", sans-serif;
}

html,
body {
  font-family: var(--main-font);
}

a {
  text-decoration: none;
}

ul {
  margin-bottom: 0;
  padding-left: 0;
}

h1,
h2,
h3,
h5,
h6 {
  font-family: var(--heading-font);
}

p {
  font-family: var(--main-font);
  margin-bottom: 0;
}

.siren_btn {
  width: 40px;
  height: 50px;
}

.siren_btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.book_btn {
  position: relative;
  padding: 6px 12px;
  border: 1px solid #1489c5;
  border-radius: 6px;
  color: #1a94c7;
  background: #ecf9ff;
  font-size: 15px;
  font-weight: 600;
}

.portl_btn {
  position: relative;
  padding: 6px 12px;
  border: 1px solid #92ce31;
  border-radius: 6px;
  color: #9ac936;
  background: #efffcc;
  font-size: 15px;
  font-weight: 600;
}

.padding_x_100 {
  padding-left: 100px;
  padding-right: 100px;
}

.header-logo {
  width: 200px;
}

.header-logo img {
  width: 100%;
}

/* Full-width banner */
.banner-slider {
  width: 100%;
  height: 600px;
  position: relative;
}

/* Banner text */
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 20px 150px 20px 150px;
  border-radius: 10px;
  height: 100%;
  display: flex;
  align-items: center;
}

.banner-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 77%;
  height: 100%;
  background: linear-gradient(88deg, #000000a8, transparent);
}

.bnr_left_text {
  position: relative;
  z-index: 1;
}

.banner-content h2,
.banner-content h1 {
  font-size: 58px;
  margin-bottom: 15px;
  font-weight: 700;
}

.banner-content h2 span,
.banner-content h1 span {
  font-style: italic;
  color: var(--yellow-color);
}

.banner-content p {
  font-size: 25px;
  margin-bottom: 25px;
}


/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
}

.swiper-pagination-bullet {
  background: var(--yellow-color);
}

.banner_three_img {
  width: 100%;
  position: relative;
  height: 550px;
}

.banner_three_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big_img {
  width: 33%;
  position: absolute;
  left: 0;
  top: 72px;
  height: 50%;
}

.middle_img {
  width: 56%;
  position: absolute;
  left: 50%;
  top: 5%;
  height: 90%;
  transform: translate(-50%, 0px);
  z-index: 1;
  box-shadow: 0 0 27px rgb(0 0 0 / 16%);
}

.small_img {
  width: 28%;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 47%;
}

#search-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  top: -20em;
  left: 0;
  right: 0;
  white-space: nowrap;
  z-index: 9999;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(50%, rgba(0, 0, 0, 0.8)), color-stop(100%, rgba(0, 0, 0, 0.8)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cc000000", endColorstr="#1a000000", GradientType=0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}

#search-menu.toggled {
  top: 0;
  opacity: 1;
  visibility: visible;
}

#search-menu .wrapper {
  position: relative;
  margin: 3em auto 0 auto;
  padding: 0 1em;
}

#search-menu .wrapper input {
  width: 90%;
  padding: 0 0 0.125em 0;
  background: transparent;
  border: none;
  border-bottom: 3px solid #bfbfbf;
  font-size: 4em;
  color: #bfbfbf;
}

#search-menu .wrapper input:focus {
  outline: none;
}

#search-menu .wrapper button {
  position: absolute;
  display: block;
  width: 10%;
  right: 0;
  top: 0;
  background: transparent;
  border: none;
  color: #bfbfbf;
  font-size: 4em;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}

#search-menu .wrapper button:hover {
  color: #fff;
}

#search-menu .wrapper button:focus {
  outline: none;
}

/*-------- button Effect-------*/
.red_btn {
  display: inline-block;
  box-sizing: border-box;
  padding: 12px 25px;
  border-radius: 0px;
  position: relative;
  color: var(--white-color);
  background: var(--yellow-color);
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  text-align: center;
  font-size: 16px;
}

.red_btn span {
  z-index: 1;
  position: relative;
  white-space: nowrap;
}

.red_btn:before {
  content: "";
  height: 0;
  width: 100%;
  transform: translateX(0%);
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--main-color);
  border-radius: 0px;
  transition: all ease-in 0.3s;
}

.red_btn:hover:before {
  bottom: 0;
  transition: all ease-in 0.3s;
  height: 100%;
}

.red_btn:hover span {
  color: var(--white-color);
}

.red_btn.red_border {
  color: var(--white-color);
  background: transparent;
  border: 1px solid var(--white-color);
}

.red_btn.red_border_black {
  color: var(--black-color);
  background: transparent;
  border: 1px solid var(--black-color);
}

.red_btn.white_bg {
  color: var(--black-color);
  background: rgb(255 255 255 / 90%);
}

.red_btn.white_bg:before {
  background: rgb(255 255 255 / 100%);
}

.red_btn.white_bg span {
  color: var(--black-color);
}

.red_btn.black_bg {
  color: var(--white-color);
  background: var(--black-color);
}

.red_btn.black_bg:before {
  background: rgb(0 0 0 / 50%);
}

.red_btn.black_bg span {
  color: var(--white-color);
}

/*-------- button Effect-------*/
.heading_hp h2 {
  font-size: 45px;
  font-weight: 600;
  color: var(--heading-color);
  position: relative;
  letter-spacing: 0px;
}

.heading_hp h2 span {
  color: var(--main-color);
}

.heading_hp h6 {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.heading_hp p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 0px;
}

.heading_hp.text_white h2,
.heading_hp.text_white p,
.heading_hp.text_white h6 {
  color: var(--white-color);
}

.border_h2 h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.border_h2 h2:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 5px;
  background: var(--main-color);
}

/*--------category-------*/


.popular {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.popular::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: #f6f2f1;
}

.popular .swiper-wrapper {
  padding-left: 0;
}

.popular .swiper-slide {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  will-change: tranform;
}

@media (min-width: 980px) {
  .popular .swiper-slide:hover {
    transform: scale(1.05);
  }
}

.popular .swiper-category {
  overflow-x: hidden;
  padding-top: 1.5em;
  padding-bottom: 4em;
}

.popular a {
  display: block;
  position: relative;
  text-decoration: none;

}

.slide-link {
  background: #ffffff;
  text-align: center;
  padding-bottom: 10px;
}

.slide-link p {
  color: #000;
  font-size: 15px;
}

.popular a h5 {
  font-weight: 600;
  font-size: 25px;
  line-height: 1.1;
  color: #000;
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.popular a img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: opacity 0.24s ease-out;
  will-change: opacity;
}

.swiper-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 93%;
  left: 50%;
  top: 50%;
  z-index: 1;
  padding: 0 5px;
  transform: translate(-50%, 0px);
}

.swiper-arrows .swiper-prev,
.swiper-arrows .swiper-next {
  background-color: rgb(241 89 43 / 0%);
  color: #f1592b;
  font-size: 18px;
  width: 2.5em;
  height: 2.5em;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  outline: none;
  font-weight: bold;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, visibility 0.25s ease, background-color 0.25s ease;
  outline: none;
  border: 1px solid;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-arrows .swiper-prev:hover,
.swiper-arrows .swiper-next:hover {
  background-color: white;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 0.25em 1.25em rgba(117, 64, 191, 0.2);
}

.swiper-arrows .swiper-prev.swiper-button-disabled,
.swiper-arrows .swiper-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: scale(0.5);
}

.swiper-arrows button+button {
  margin-left: 0.5em;
}


/*--------category-------*/
.four_box_bnr {
  margin-top: -20px;
  position: relative;
  z-index: 1;
}

.smll_div {
  background: var(--yellow-color);
  padding: 15px 15px;
  color: #fff;
  text-align: center;
  border-radius: 10px;
}

.services_box {
  padding: 100px 0;
}

.serv_div {
  background: #fff;
  padding: 15px 15px;
  color: #000;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 15px 21px rgb(0 0 0 / 8%);
  margin-bottom: 34px;
}

.serv_div span {
  width: 150px;
  height: 100px;
  display: inline-block;
  margin: 0 auto 25px;
}

.serv_div span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*--------- About----- */


.list-style-one {
  position: relative;
  margin-top: 50px;
}

.list-style-one li {
  position: relative;
  font-size: 18px;
  line-height: 26px;
  color: #222222;
  font-weight: 500;
  padding-left: 35px;
  margin-bottom: 12px;
}

.list-style-one li:before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  font-size: 18px;
  padding: 0px;
  color: #ff2222;
  font-weight: 600;
  -moz-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
  color: #44bce2;
}

.about-section {
  position: relative;
  padding: 100px 0 100px;
  background: #f6f2f1;
}

.about-section .sec-title {
  margin-bottom: 45px;
}

.about-section .content-column {
  position: relative;
}

.about-section .content-column .inner-column {
  position: relative;
  padding-left: 30px;
}

.about-section .text {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
}

.about-section .list-style-one {
  margin-bottom: 0px;
}

.about-section .btn-box {
  position: relative;
}

.about-section .btn-box a {
  padding: 15px 50px;
}

.about-section .image-column {
  position: relative;
}

.about-section .image-column .text-layer {
  position: absolute;
  right: -110px;
  top: 50%;
  font-size: 325px;
  line-height: 1em;
  color: #ffffff;
  margin-top: -175px;
  font-weight: 500;
}

.about-section .image-column .inner-column {
  position: relative;
  padding-left: 0px;
  padding-bottom: 0px;
}

.about-section .image-column .image-1 {
  position: relative;
}

.about-section .image-column .image-1 img {
  box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
  width: 100%;
}

.about-section .image-column .video-link {
  position: absolute;
  left: 70px;
  top: 170px;
}

.about-section .image-column .video-link .link {
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}


/*--------- About----- */


/*---- testimonial ----*/
.testimonial_sec {
  padding: 80px 0;
  background: url(../images/testi_bg.png);
}

.testi_box {
  background: var(--white-color);
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 0 10px rgb(0 0 0 / 13%);
}

.testi_box ul {
  padding-left: 0;
  display: flex;
  list-style: none;
}

.testi_box ul li {
  color: #FCD80C;
  padding-right: 5px;
}

.testi_box p {
  font-style: italic;
  line-height: 30px;
  font-weight: 500;
  color: #000;
}

.testi_text h4 {
  margin-bottom: 0px;
  font-size: 18px;
  color: var(--heading-color);
  font-weight: 600;
}

.textimonial_for {
  position: relative;
  overflow: hidden;
}

.textimonial_nav {
  width: 70%;
}

.testi_nav span {
  width: 80px;
  height: 80px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  box-shadow: 0 0 7px rgb(0 0 0 / 15%);
}

.testi_nav span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testi_img span {
  width: 60px;
  height: 60px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  box-shadow: 0 0 7px rgb(0 0 0 / 15%);
  margin-right: 5px;
}

.testi_img span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.textimonial_nav .slick-nav.next-arrow {
  left: 20%;
}

.textimonial_nav .slick-nav {
  top: auto;
  bottom: -68px;
}

.textimonial_nav .slick-nav i {
  background: url(../images/slid_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin: -9px 0 0 -4px;
  height: 18px;
  z-index: 1;
}

.textimonial_nav .slick-nav:before,
.textimonial_nav .slick-nav:after {
  background: var(--main-color);
  border: none;
}

.textimonial_nav .slick-nav:hover:before,
.textimonial_nav .slick-nav:hover:after {
  background: var(--main-color);
}

.textimonial_nav .slick-nav:hover i {
  filter: brightness(0) invert(1);
}

/*---- testimonial ----*/

.accordion-button::after {
  content: "\2B";
  background-image: none !important;
  font-size: 28px;
  height: auto;
  width: auto;
  color: var(--text-color);
  font-weight: 400;
}

.accordion-button:not(.collapsed)::after {
  content: "\2212";
}

.accordion-item {
  border: none;
  background: #fff;
  margin-bottom: 10px;
}

.accordion-button:not(.collapsed) {
  background: none;
  border: none;
  box-shadow: none;
  color: var(--black-color);
  font-weight: 600;
}

.accordion-button {
  font-size: 18px;
  background: none;
  color: var(--black-color);
  margin-bottom: 5px;
  padding: 5px 10px;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.ac-des {
  text-align: center;
}

.ac-des p {
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  margin: 5px 0px;
}

.accordion-body {
  padding: 5px 25px !important;
}


/*------- footer-------- */

.news_leter_form {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.news_leter_form .form-control {
  background: var(--white-color);
  border: 1px solid rgb(255 255 255 / 50%);
  border-radius: 0px !important;
  padding: 12px 20px;
  font-size: 15px;
  color: var(--text-color);
}

.news_leter_form .form-control::placeholder {
  color: #848484;
  opacity: 1;
  font-size: 15px;
  letter-spacing: 1px;
}

.news_leter_form .form-control::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #848484;
  opacity: 1;
  font-size: 15px;
  letter-spacing: 1px;
}

.news_leter_form .news_letter {
  position: absolute;
  top: 50%;
  right: 0;
  background: var(--yellow-color) url(../images/send.png);
  border: none;
  border-radius: 0px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
  width: 48px;
  height: 48px;
  background-size: 20px;
  background-repeat: no-repeat;
  transform: translate(0px, -50%);
  background-position: center center;
}

.real_solution_sec {
  padding: 100px 0;
  background: #1092d7;
}


/*--- footer ---*/
.footer_sec {
  width: 100%;
  background: #ecf9ff;
}

.left_logo span {
  color: #000;
}

.ftr_logo img {
  width: 100%;
  max-width: 280px;
}

.left_ali {
  width: 100%;
}

.left_ali h4 {
  position: relative;
  color: var(--yellow-color);
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.left_ali p,
.left_ali a {
  color: #000;
  text-decoration: none;
  font-size: 15px;
}

.read_more {
  color: #0C7682;
  font-size: 15px;
  margin-bottom: 15px;
  display: block;
}

.icon_map {
  margin-right: 10px;
}

.icon_map span {
  color: #0C7682;
  font-size: 20px;
}

.ftr_text_h p {
  margin: 0;
}

.left_aa ul {
  list-style: none;
  padding-left: 0;
}

.left_aa ul li a {
  color: #000;
  padding: 4px 0 4px 25px;
  display: block;
  line-height: 20px !important;
  position: relative;
}

.left_aa ul li a:before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 50%;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #000;
  transform: translate(0px, -50%);
}

.ftr_text_h span {
  font-size: 13px;
  color: rgb(0 0 0 / 80%);
  display: block;
}

.left_ali ul {
  list-style: none;
  padding-left: 0;
}

.left_ali ul li a {
  line-height: 40px;
}

.left_logo p {
  color: rgb(0 0 0 / 80%);
  margin-bottom: 15px;
  font-size: 14px;
}

.left_logo ul {
  list-style: none;
  padding-left: 0;
  display: flex;
}

.left_logo ul li {
  margin-right: 5px;
}

.left_logo ul li a {
  color: var(--black-color);
  padding: 8px;
  display: flex;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 22px;
  line-height: 1;
  background: transparent;
  border: 1px solid var(--yellow-color);
  align-items: center;
  justify-content: center;
}

.left_logo ul li a:hover {
  color: var(--yellow-color);
  border: 1px solid var(--yellow-color);
}

.frt_btm ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
}

.frt_btm ul li {
  padding: 0 10px;
}

.frt_btm ul li a {
  font-size: 15px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}

.copy_right {
  font-size: 15px;
  color: rgb(0 0 0 / 80%);
  margin-bottom: 0;
  font-weight: 500;
}

.copy_right a {
  color: rgb(0 0 0 / 50%);
  text-decoration: none;
}

.btm_ftr {
  padding: 20px;
  text-align: center;
  border-top: 1px dashed #a7a7a7;
}

#top--btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  background: var(--yellow-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.border-left-black {
  border-left: 1px dashed #a7a7a7;

}

.padding-y-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/*------- footer-------- */





/*---- mini cart ---------*/
.cart_off_canvas {
  max-width: 600px;
  width: 100% !important;
  padding: 6px 10px 0;
}

.cart_off_canvas .offcanvas-header h5 {
  font-size: 20px;
  font-weight: 800;
}

.shopping-cart {
  width: 100%;
  height: calc(100% - 130px);
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-y: auto;
}

.item_cart {
  padding: 0px 0px 20px;
  display: flex;
  border-bottom: 1px solid #E1E8EE;
  position: relative;
  margin-bottom: 20px;
}

.buttons {
  position: absolute;
  right: 0;
  bottom: 5px;
}

.delete-btn,
.like-btn {
  display: inline-block;
  Cursor: pointer;
}

.delete-btn {
  width: 14px;
  background-size: 11px;
}

.is-active {
  animation-name: animate;
  animation-duration: .8s;
  animation-iteration-count: 1;
  animation-timing-function: steps(28);
  animation-fill-mode: forwards;
}

@keyframes animate {
  0% {
    background-position: left;
  }

  50% {
    background-position: right;
  }

  100% {
    background-position: right;
  }
}

.cart_image {
  margin-right: 15px;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.cart_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.description span,
.description span a {
  display: block;
  font-size: 14px;
  color: #ababab;
  font-weight: 600;
  margin-bottom: 10px;
}

.description h4,
.description h4 a {
  font-size: 20px;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
}

.variations_button {
  display: flex;
}

.quantity {
  padding: 10px 18px;
  margin-right: 55px;
  border: 1px solid #afafaf;
  width: 180px;
}

.quantity input {
  -webkit-appearance: none;
  border: none;
  text-align: center;
  width: 32px;
  font-size: 16px;
  color: #43484D;
  font-weight: 600;
}

.quantity button[class*=btn] {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.minus-btn img {
  margin-bottom: 0px;
}

.plus-btn img {
  margin-top: 0px;
}

button:focus,
input:focus {
  outline: 0;
}

.total-price .woocommerce-Price-amount.amount {
  padding-top: 0px;
  font-size: 18px;
  color: var(--yellow-color);
  font-weight: 600;
}

.total-price span {
  font-size: 20px;
  color: #000;
  display: inline-block;
  margin-bottom: 0;
}

.total-price {
  padding-top: 0px;
  font-size: 18px;
  color: #43484D;
  font-weight: 600;
  display: flex;
  align-items: center;
}

@media (max-width: 800px) {

  .item_cart {
    height: auto;
    justify-content: space-between;
  }

  .image img {
    width: 50%;
  }

  .image,
  .quantity,
  .description {
    width: 76%;
    margin: 6px 0;
  }

  .buttons {
    margin-right: 20px;
  }
}



.item_cart {
  padding: 15px 0px;
  display: flex;
  border-bottom: 1px solid #E1E8EE;
  position: relative;
}

.buttons {
  position: absolute;
  right: 0;
  bottom: 5px;
}

.delete-btn,
.like-btn {
  display: inline-block;
  Cursor: pointer;
}

.delete-btn {
  width: 14px;
  height: 14px;
  background: url("../images/delete-icn.svg") no-repeat center;
  background-size: 11px;
}

.is-active {
  animation-name: animate;
  animation-duration: .8s;
  animation-iteration-count: 1;
  animation-timing-function: steps(28);
  animation-fill-mode: forwards;
}

@keyframes animate {
  0% {
    background-position: left;
  }

  50% {
    background-position: right;
  }

  100% {
    background-position: right;
  }
}

.cart_image {
  margin-right: 15px;
  width: 70px;
  height: 70px;
}

.cart_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.description span {
  display: block;
  font-size: 16px;
  color: #43484D;
  font-weight: 600;
}

.description span:first-child {
  margin-bottom: 5px;
}

.description span:last-child {
  font-weight: 300;
  margin-left: 8px;
  color: #86939E;
}

.quantity {
  padding-top: 0px;
  margin-right: 0px;
}

.quantity input {
  -webkit-appearance: none;
  border: none;
  text-align: center;
  width: 32px;
  font-size: 16px;
  color: #43484D;
  font-weight: 600;
}

.shopping-cart button[class*=btn] {
  width: 30px;
  height: 30px;
  background-color: var(--dark-red);
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.minus-btn img {
  margin-bottom: 3px;
  filter: brightness(0) invert(1)
}

.plus-btn img {
  margin-top: 2px;
  filter: brightness(0) invert(1)
}

button:focus,
input:focus {
  outline: 0;
}

/* 

@media (max-width: 800px) {
  .shopping-cart {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .item_cart {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .image img {
    width: 50%;
  }

  .image,
  .quantity,
  .description {
    width: 100%;
    text-align: center;
    margin: 6px 0;
  }

  .buttons {
    margin-right: 20px;
  }
} */

/*---- mini cart ---------*/





















/*------------- Inner Page ----------------- */
.inner_banner_sec {
  padding: 100px 0;
  position: relative
}

.inner_banner_sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.0);
}

.inner_banner_ontent {
  position: relative;
  z-index: 9
}


.cd-breadcrumb {
  width: 100%;
  padding-left: 5px;
  margin: 0;
}

.cd-breadcrumb::after::after {
  clear: both;
  content: "";
  display: table;
}

.cd-breadcrumb li {
  display: inline-block;
  float: left;
  margin: 0.5em 0;
  color: #000;
}

.cd-breadcrumb li a {
  color: #000;
  display: inline-block;
}

.cd-breadcrumb li::after {
  /* this is the separator between items */
  display: inline-block;
  content: '\00bb';
  margin: 0 .6em;
  color: #000;
}

.cd-breadcrumb li:last-of-type::after {
  /* hide separator after the last item */
  display: none;
}

.cd-breadcrumb.custom-separator li::after,
.cd-multi-steps.custom-separator li::after {
  /* replace the default separator with a custom icon */
  /* content: ''; */
  height: 16px;
  width: 16px;
  /* background: url(../images/cd-custom-separator.svg) no-repeat center center; */
  /* vertical-align: middle; */
  content: "\f105";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 13px;
}

.current:after {
  content: none !important;
}

.inner_banner_ontent h1 {
  font-size: 41px;
  font-family: var(--heading-font);
  color: #000;
  margin-bottom: 0;
}

.inner_banner_ontent h4 {
  color: #000;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-family: var(--heading-font);
  font-size: 60px;
  font-weight: 300
}

.inner_banner_ontent p {
  color: var(--white-color);
}

.padding_filter {
  padding-bottom: 20px;
}

.filter_heading {
  display: flex;
}

.filter_heading h4 {
  font-size: 22px;
  margin-bottom: 0;
  padding-left: 10px;
}

.form-group {
  display: block;
  margin-bottom: 15px;
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;
}

.form-group label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 5px;
}

.form-group input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid var(--main-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-group input:checked+label:before {
  border: 1px solid var(--main-color);
}

.filter .accordion-button {
  padding: 10px 15px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid #dee2e6;
}

.filter .accordion-item {
  box-shadow: none;
  padding: 0px;
}

.filter .accordion-button:not(.collapsed) {
  background: none;
  color: var(--heading-color)
}

.accordion-body {
  padding: 15px 15px 0;
}

.filter .accordion-button:after {
  background-image: none;
  background-size: 16px;
}

.filter h2.accordion-header button {
  font-size: 22px
}

.Frametype_filter ul {
  list-style: none;
  padding-left: 0;
  display: block;
  margin-bottom: 0;
  columns: 4;
}

.Frametype_filter ul li {
  margin-bottom: 10px;
}

.Frametype_filter ul li a {
  display: block;
  width: 100%;
  color: var(--text-color);
  text-align: center;
}

.Frametype_filter ul li a span {
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid rgb(30 30 30 / 50%);
  border-radius: 6px;
  padding: 3px;
}

.Frametype_filter ul li a span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.Frametype_filter ul li a:hover span {
  border: 1px solid var(--main-color);
}

.filter_resilt {
  background: #F3F3F3;
  width: 100%;
  padding: 15px;
  border-radius: 8px;
}

.filter_res_text h4 {
  font-size: 22px;
  font-weight: 600;
}

.filter_res_text p {
  margin-bottom: 0;
}

.latest_filter {
  padding: 10px;
  background: transparent;
  border-radius: 0;
}

.price_range .price-input {
  width: 100%;
  display: flex;
  margin: 30px 0 35px;
}

.price_range .price-input .field {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
}

.price_range .field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 19px;
  margin-left: 12px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #999;
  -moz-appearance: textfield;
}

.price_range input[type="number"]::-webkit-outer-spin-button,
.price_range input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.price_range .price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}

.price_range .slider_range {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}

.price_range .slider_range .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: var(--main-color);
}

.price_range .range-input {
  position: relative;
}

.price_range .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.price_range input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #35160c;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.price_range input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #35160c;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.price_range {
  padding-bottom: 15px;
}





.filter_and_productlist {
  padding: 50px 0;
}

.well {
  padding: 15px 0;
}

.thumbnail {
  margin-bottom: 20px;
  padding: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid #B3B3B3;
  border-radius: 8px;
  position: relative;
  padding: 20px;
}

.text_light {
  color: rgb(0 0 0 / 50%);
  margin-bottom: 10px !important;
  line-height: 16px;
}

.productitem .reting_boo {
  display: inline-block;
}

.productitem .left_boo h4 {
  color: #000;
  font-size: 20px;
  text-transform: capitalize;
}

.productitem .left_boo p {
  margin-bottom: 10px;
}

.productitem.list-group-item {
  float: none;
  width: 100%;
  background-color: #fff;
  margin-bottom: 10px;
}

.discount_text {
  color: rgb(0 0 0 / 50%);
  font-size: 15px;
  text-decoration: line-through;
}

.only_few_left {
  font-size: 15px;
  color: #E92F2A;
}

.productitem.list-group-item:nth-of-type(odd):hover,
.productitem.list-group-item:hover {
  box-shadow: 0px 1px 25px #ccc;
}

.productitem.list-group-item .list-group-image {
  margin-right: 5px;
}

.productitem.list-group-item .thumbnail {
  margin-bottom: 0px;
}

.productitem.list-group-item .thumbnail {
  margin-bottom: 0px;
}

.thumbnail .group.list-group-image {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.productitem.list-group-item .caption {
  padding: 9px 9px 0px 9px;
}

.productitem.list-group-item:before,
.productitem.list-group-item:after {
  display: table;
  content: " ";
}

.productitem.list-group-item .group.list-group-image {
  float: left;
  width: 300px;
  height: 200px;
}

.productitem.list-group-item:after {
  clear: both;
}

.productitem .color_filter a {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  margin-right: 3px;
}

.slider_prd {
  width: 100%;
}

.prodict_img_slid {
  width: 100%;
  height: 100%;
  display: block;
}

.prodict_img_slid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top_choise {
  position: absolute;
  background: #EBB415;
  left: 10px;
  top: 8px;
  z-index: 1;
  padding: 1px 11px;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.bestseller {
  position: absolute;
  background: #00A098;
  left: 10px;
  top: 8px;
  z-index: 1;
  padding: 1px 11px;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.cdp {
  position: relative;
  text-align: center;
  padding: 0px 0;
  font-size: 0;
  z-index: 6;
  margin: 0px 0;
}

.cdp_i {
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  margin: 0 3px 6px;
  height: 38px;
  min-width: 38px;
  border-radius: 38px;
  border: 1px solid #000;
  line-height: 38px;
  padding: 0;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.cdp_i:first-child,
.cdp_i:last-child {
  padding: 0 16px;
  margin: 0 12px 6px;
}

.cdp_i:hover {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
}

.details_prd {
  border-top: 1px solid var(--text-color);
}

.details_prd .cd-breadcrumb li a {
  color: var(--text-color);
}

.details_prd .cd-breadcrumb li {
  color: var(--text-color);
}

.details_prd .cd-breadcrumb.custom-separator li::after {
  content: '';
  height: 14px;
  width: 10px;
  background: url(../images/cd-custom-separator-black.svg) no-repeat center center;
  vertical-align: middle;
}

.similar_products {
  padding: 50px 0;
}

.prd_img {
  width: 100%;
}

.prd_img span {
  width: 100%;
  height: 500px;
  border-radius: 6px;
  border: 1px solid #B3B3B3;
  display: block;
  margin-bottom: 25px;
}

.prd_img span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.product_details {
  padding: 50px 0;
}

.fa_hart {
  color: rgb(0 0 0 / 50%);
  font-size: 22px;
}


.product_main_heading h2 {
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 600;
}

.product_main_heading h5 {
  margin-bottom: 0;
  font-size: 18px;
}

.product_main_heading p {
  color: var(--text-color);
  font-size: 14px;
}

.product_det_right .reting_boo {
  display: inline-block;
}

.size_text {
  width: 100%;
  font-size: 18px;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.round_30.color_filter ul li a {
  width: 30px;
  height: 30px;
}

.round_30.color_filter {
  margin-bottom: 20px;
}

.full_price {
  font-size: 24px;
  color: var(--main-color);
  text-transform: uppercase;
  line-height: 1;
}

.discount_price {
  font-size: 16px;
  color: #808080;
  text-decoration: line-through;
  padding-left: 10px;
}


.in-stock {
  font-size: 18px;
  color: #0CAA32;
  margin-bottom: 10px;
  border: 1px solid #1baa32;
  display: inline-block;
  padding: 3px 23px;
  background: rgb(12 170 50 / 10%);
  border-radius: 0px;
  font-weight: 600;
}


.product_main_heading h2 {
  margin-bottom: 15px;
}

.short-description p {
  margin-bottom: 15px;
}

.short-description ul {
  padding-left: 20px;
}

.short-description ul li {
  margin-bottom: 15px;
  font-size: 15px;
  list-style: disc;
}

.technical_information {
  width: 100%;
  /* border-top: 1px solid #afafaf; */
  padding-top: 0;
  margin-bottom: 30px;
  margin-top: 0px;
}

.technical_information ul {
  list-style: none;
  display: flex;
  padding-left: 0;
  margin-bottom: 5px;
}

.technical_information ul li,
.technical_information ul li a {
  text-align: left;
  color: #636363;
}

.technical_information ul li:first-child {
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  margin-right: 10px;
}

.product_det_right {
  border-bottom: 1px solid #BDBDBD;
  border-top: 1px solid #BDBDBD;
  padding-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.product_det_right .accordion {
  margin-bottom: 25px;
  border-bottom: 1px solid #BDBDBD;
  padding-bottom: 25px;
}

.product_det_right .accordion-button {
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.product_det_right .accordion-item {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.product_det_right .accordion-button:not(.collapsed) {
  background: none;
}

.product_det_right .accordion-body {
  padding: 10px 0 0;
}

.product_det_right .accordion-button:after {
  background-image: url(../images/filter_arrow.svg);
  background-size: 16px;
}

.product_det_right h2.accordion-header button {
  font-size: 22px;
  text-transform: uppercase;
  font-family: GlacialIndifference-Bold;
}

.product_feature ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
}

.product_feature ul li {
  padding-right: 10px;
  position: relative;
  margin-right: 8px;
}

.product_feature ul li:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #1e1e1e;
}

.w_350 {
  width: 150px;
}

.technical_information {
  width: 100%;
}

.technical_information ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding-left: 0;
  margin-bottom: 5px;
}

.technical_information ul li {
  text-align: left;
  width: 50%;
  font-size: 15px;
}

.product_det_right .accordion {
  margin-bottom: 25px;
  border-bottom: 1px solid #BDBDBD;
  padding-bottom: 25px;
}

.product_det_right .accordion-button {
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.product_det_right .accordion-item {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.product_det_right .accordion-button:not(.collapsed) {
  background: none;
}

.product_det_right .accordion-body {
  padding: 10px 0 0;
}

.product_det_right .accordion-button:after {
  background-image: url(../images/filter_arrow.svg);
  background-size: 16px;
}

.product_det_right h2.accordion-header button {
  font-size: 22px;
  text-transform: uppercase;
  font-family: GlacialIndifference-Bold;
}

.product_feature ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
}

.product_feature ul li {
  padding-right: 10px;
  position: relative;
  margin-right: 8px;
}

.product_feature ul li:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #1e1e1e;
}

.rate_product {
  padding: 10px 15px;
  background: var(--white-color);
  border: 1px solid var(--text-color);
  color: var(--text-color);
  border-radius: 6px;
}


.cart_product {
  width: 100%;
  border: 1px solid #B3B3B3;
  border-radius: 10px;
  margin-bottom: 15px;
}

.cart_product .cart_images {
  width: 100%;
}

.cart_product .cart_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.cart_text {
  padding: 30px;
}

.cart_text h4 {
  font-size: 24px;
}

.color_code {
  font-size: 20px;
}

.wl_price {
  width: 100%;
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.wl_price li {
  font-size: 20px;
}

.wl_price li:last-child {
  color: var(--main-color);
}

.wl_price li:last-child span {
  text-decoration: line-through;
  font-size: 16px;
  color: #B3B3B3;
}

.left_p_text h4 {
  font-size: 18px;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
  color: var(--black-color);
  margin-bottom: 0;
  letter-spacing: 3px;
}

.right_p_text h4 {
  font-size: 18px;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
  color: var(--main-color);
  margin-bottom: 0;
  letter-spacing: 3px;
}

.final_price {
  border-top: 1px solid #BDBDBD;
  border-bottom: 1px solid #BDBDBD;
  padding: 12px 0;
}

.only_left {
  color: #E92F2A;
  font-size: 20px;
}

.expeted {
  margin-bottom: 0;
}

.call_us_drop {
  padding: 8px 12px;
  border: 1px solid #B3B3B3;
  border-radius: 6px;
}

.qty span {
  font-size: 17px;
}

.qty_te {
  padding: 8px 12px;
  border: 1px solid #B3B3B3;
  border-radius: 6px;
  margin: 0 10px;
}

.add_wishlist {
  font-family: GlacialIndifference-Bold;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--black-color);
  letter-spacing: 3px;
}

.coupons_sec {
  border: 1px solid #B3B3B3;
  padding: 10px;
  border-radius: 10px;
}

.coupon_text p {
  font-size: 16px;
  margin-bottom: 0;
}

.coupon_text span {
  font-size: 16px;
  margin-bottom: 0;
  color: var(--main-color);
}

.coupon_here {
  padding: 7px 12px;
  background: rgb(179 179 179 / 20%);
  border: none;
  border-radius: 6px;
  width: 100%;
}

.bill_details {
  padding: 20px 0;
}

.bill_details h4 {
  font-size: 24px;
  font-family: GlacialIndifference-Bold;
  color: var(--black-color);
}

.bill_text {
  padding: 25px;
  background: #fff;
  box-shadow: 0 0 16px rgb(0 0 0 / 10%);
  border-radius: 15px;
}

.bill_text ul {
  width: 100%;
  padding-left: 0;
  margin-bottom: 5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bill_text ul li {
  font-size: 20px;
}

.total_payable {
  display: flex;
  justify-content: space-between;
}

.total_payable_l {
  color: var(--black-color);
  font-size: 20px;
  font-family: GlacialIndifference-Bold;
}

.total_payable_r {
  color: var(--black-color);
  font-size: 20px;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
}

.by_con {
  padding: 25px;
}

.by_con .form-group label {
  font-size: 20px;
  color: var(--black-color);
}

.by_con .form-group label a {
  font-size: 20px;
  color: var(--main-color);
}

.back_arrow {
  color: var(--black-color);
  font-weight: 200;
  margin-right: 10px;
  font-size: 25px;
}

.radio-input {
  visibility: hidden;
  display: none;
}

.radio-label {
  position: relative;
  padding-left: 27px;
  margin-right: 20px;
}

.radio-label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 6px;
  top: 6px;
  border-radius: 50%;
}

.radio-border {
  width: 20px;
  height: 20px;
  display: inline-block;
  outline: solid 1px #000;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 0px;
}

.radio-input:checked+.radio-label:after {
  transition: all 0.5s;
  background-color: #EF1C5B;
}

.radio-input:checked+.radio-label .radio-border {
  outline: solid 1px #EF1C5B;
  background: #FFD1DF;
}

.select_danger {
  font-size: 20px;
  margin-bottom: 5px;
}

.checkout_item {
  padding-right: 150px;
}

.save_as {
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.save_as li {
  padding-right: 10px;
}

.save_as li a {
  border: 1px solid #B3B3B3;
  border-radius: 6px;
  color: var(--black-color);
  padding: 8px 20px;
  vertical-align: middle;
  font-size: 18px;
  display: inline-block;
}

.save_as li a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.save_as li a span {
  vertical-align: middle;
}

.offcanvas_vision {
  bottom: auto;
  min-height: 50%;
  background: #FBF9F7;
  width: 700px !important;
  top: 20px !important;
  right: 20px !important;
  box-shadow: 0 0 26px rgb(0 0 0 / 15%);
  border-left: 0 !important;
}

.vision_all {
  width: 100%;
  background: var(--white-color);
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.vision_text h4 {
  width: 100%;
  margin-bottom: 0;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 3px;
}

.vision_text p {
  width: 100%;
  margin-bottom: 0;
  font-size: 14px;
}

.single_vision span {
  width: 30px;
  height: 30px;
  display: block;
  margin-right: 5px;
}

.single_vision span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.subtotal_frame {
  font-size: 24px;
  margin-top: 50px;
}

.subtotal_frame span {
  color: var(--main-color);
  display: block;
}

.select_lens_back {
  color: var(--black-color);
}

.off_body {
  padding: 0px 50px 20px 20px;
}

.offcanvas-header {
  padding-bottom: 0;
}

.offcanvas-backdrop.show {
  opacity: 0;
}

.rimless {
  width: 100%;
  display: block;
  background: var(--white-color);
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 45px;
}

.lens_feature p {
  margin-bottom: 0;
}

.lens_feature h5 {
  margin-bottom: 0;
  color: var(--main-color);
}

.rimless h4 {
  color: var(--text-color);
  font-family: GlacialIndifference-Bold;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.lens_heading a {
  font-size: 35px;
}

.warranty_period {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #B3B3B3;
  padding: 15px;
}

.warranty_period ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.width_200 {
  width: 46%;
}

.select_lens_btn {
  text-align: center;
  margin-top: 15px;
  margin-bottom: -40px;
}

.form {
  width: 440px;
  padding: 0 20px;
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  right: 0;
  transition: all 0.5s ease;
  transform: scale(0);
  background: #fff;
}

.input {
  width: 400px;
  border: 0px;
  background: transparent;
  box-sizing: border-box;
  border-bottom: 3px solid #000;
  outline: none;
  padding: 0 20px 10px;
  color: #000;
  font-size: 20px;
  background: #fff;
}

.cross_search_btn {
  position: absolute;
  right: 33px;
  top: 6px;
}

#search {
  color: #000;
  position: relative;
  top: 18px;
  left: 90px;
  opacity: 0;
  letter-spacing: 1px;
  transition: all 0.5s ease;
}

#search.viewsarch {
  opacity: 1;
}

.form.viewsarch {
  transform: scale(1);
}

#search.move {
  top: 60px;
  left: 20px;
  font-size: 12px;
}

@media screen and (max-width: 640px) {



  #search {
    left: 30px;
    font-size: 14px;
  }
}

.login_page {
  padding: 0px 0 0px;
  border-top: 1px solid #000;
}

/*---- Contact -----*/
.contact_section {
  padding: 100px 0;
  border-top: 1px solid rgb(0 0 0 / 20%);
}

.contct-addr-box-outr {
  border: 1px solid #e1e1e1;
  padding: 15px;
  height: 100%;
  text-align: center;
}

.footer-heading {
  font-size: 22px;
  color: var(--main-color);
  margin-top: 10px;
}

.contct-addr-box-outr .fa-icon {
  color: var(--main-color);
}

.contct-addr-box-outr ul {
  list-style: none;
  padding-left: 0;
}

.contct-addr-box-outr ul li a,
.contct-addr-box-outr ul li,
.contct-addr-box-outr p {
  color: var(--text-color);
  font-size: 14px;
}

.contct-addr-box-outr ul li {
  margin-bottom: 10px;
}

.contact_map {
  width: 100%;
  height: 500px;
}

/*---- Contact -----*/
/*---- privacy -----*/
.pravicy_list p {
  margin-bottom: 25px;
}

.sign-form-outr {
  padding: 30px;
  border: 1px solid #eee;
}

/*---- privacy -----*/




/*---- details zoom -----*/

.box_slae {
  width: 100%;
  height: 0px;
  background: rgb(0 0 0 / 80%);
  position: fixed;
  right: 0;
  top: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 99999;
  box-shadow: 0 0 39px rgb(0 0 0 / 20%);
  border-radius: 0px;
  left: 0;
}

.box_slae.active {
  height: 100vh;
  padding: 17px;
  transition: all 0.3s ease;
}

#deletebtn {
  width: 40px;
  height: 40px;
  background: none;
  text-align: center;
  cursor: pointer;
  position: absolute;
  right: 7px;
  top: 11px;
  color: var(--main-color);
  font-size: 22px;
  z-index: 1;
}

.zoom_box {
  background: #fff;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0px;
  border-radius: 10px;
}

.slid_forbig {
  width: 100%;
  height: 400px;
}

.slid_forbig img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slid_forsmall {
  width: 100%;
  height: 80px;
}

.slid_forsmall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav-zoom .slick-nav.prev-arrow {
  left: -3%;
  transform: scaleX(-1);
  z-index: 1;
}

.slider-nav-zoom .slick-nav.next-arrow {
  left: auto;
  right: -3%;
}

.slider-nav-zoom .slick-nav i {
  display: block;
  position: absolute;
  margin: -7px 0 0 -8px;
  width: 16px;
  height: 15px;
  left: 50%;
  top: 50%;
  z-index: 1;
}

.slider-nav-zoom .slick-nav i:before,
.slider-nav-zoom .slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}

.slider-nav-zoom .slick-nav i:before {
  transform: rotate(396deg);
}

.slider-nav-zoom .slick-nav i:after {
  transform: rotate(64deg);
}

.slider-nav-zoom .slick-nav:before,
.slider-nav-zoom .slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.slider-nav-zoom .slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}


.slider-nav-zoom .slick-nav:before,
.slider-nav-zoom .slick-nav:after {
  background: var(--white-color);
  border: none;
  transition: all ease-in 0.3s;
}

.slider-nav-zoom .slick-nav i {
  transform: rotate(324deg);
}

.slider-nav-zoom .slick-nav:hover:before,
.slider-nav-zoom .slick-nav:hover:after {
  background: var(--white-color);
  border: none;
  transition: all ease-in 0.3s;
}

.slider-nav-zoom .slick-nav:hover i {
  color: var(--white-color);
  transition: all ease-in 0.3s;
}

.slider-nav-zoom .slick-nav {
  top: calc(50% - 33px);
}

.bog_zoom {
  position: absolute;
  right: 0;
  top: 0px;
  width: 100%;
  height: 400px;
  z-index: -1;
}

.bog_zoom.box_zz {
  z-index: 9;
}

.big_zoom_relative {
  position: relative;
}

.slid_nav_zoom_padding {
  padding: 0 5px;
}

/*---- details zoom -----*/
























.contact-us {
  position: relative;
  padding: 100px 0;
}



.contact-form {
  margin: 20px 0px 0;
  padding: 0px;
}

.contact-us .form-group-wrap {
  margin-bottom: 15px;
}

.contact-us .contact-form .form-control {
  padding: 10px;
  border-radius: 0;
}

.form-label {
  margin-bottom: 0px;
}

.contact-us .contact-form .send-msg .btn {
  background: #1092d7;
  color: #fff;
  font-size: 16px;
  box-shadow: none;
  outline: none;
  padding: 10px;
  width: 100%;
  border-radius: 0;
}

.contact-right {
  position: relative;
  padding: 27px 40px;
  box-shadow: 10px 25px 50px rgb(0 0 0 / 13%);
  border-radius: 0px;
}

.contact-info {
  margin-bottom: 0px;
  padding: 15px;
  border-bottom: 1px solid rgb(0 0 0 / 50%);
}

.contact-info:last-child {
  border: none;
  margin: 0px;
  background: #fff;
  text-align: center;
}

.contact-us .con-icon {
  width: 50px;
  height: 50px;
  padding: 14px;
  border-radius: 50%;
  color: #35160c;
  font-size: 25px;
  text-align: center;
  margin: 0 auto 20px;
}

.contact-us .con-text {
  margin-top: 10px;
}

.contact-us .con-text a,
.contact-us .con-text p {
  color: #161723;
  text-decoration: none;
  font-size: 17px;
  margin-bottom: 0;
}

.contact-us .con-text h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: left;
}

.map-sec iframe {
  filter: grayscale(1);
}

.bg_vision {
  background: #efffcc;
  border-radius: 15px;
  padding: 30px;
}

.mission{
  padding: 100px 0 0;
}









