/*======================
   01. Google fonts
========================*/
@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.18;
  font-family: "Rubik", serif;
  background-color: #fff;
  color: #000000;
}

:root {
  --baijamjuree: "Bai Jamjuree", serif;
  --orange: #d36a10;
}

/*======= title =======*/
.title_lg {
  font-size: 6rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
  font-family: var(--baijamjuree);
}

.title {
  font-size: 4rem;
  font-weight: 700;
  color: #000;
  font-family: var(--baijamjuree);
  line-height: 1.12;
}

ol,
ul {
  list-style: none;
}

a:hover {
  text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

/* page loader  */
#preloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0px;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #f33737;
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
/*Hamburger-menu START CSS*/
.hamburger_menu {
  display: flex;
  justify-content: flex-end;
}
.hamburger_menu_img {
  display: none;
}
.img_hum {
  width: 2.2rem;
}

/*ofcanvas-menu*/

header {
  position: fixed;
  top: 0;
  left: 0;
  /*height: 70px;
	line-height: 70px;*/
  z-index: 1024;
  width: 100%;
  transition: background 0.3s;
  padding: 1.9rem 0;
}

/*sticky START CSS*/
header.sticky {
  background-color: #000;
  padding: 0.5rem 0;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
}
.logo img {
  width: 11.6rem;
  transition: 0.4s;
}
header.sticky .logo img {
  width: 8rem;
}
#menu {
  display: flex;
  justify-content: flex-end;
  gap: 3.3rem;
}

#menu > li {
  display: inline-block;
  color: #fff;
}
#menu > li a .img_i2 {
  width: 1.2rem;
  margin-left: 0.5rem;
}

#menu > li > a {
  font-size: 1.7rem;
  color: #fff;
  font-weight: 400;
  padding: 0;
  transition: 0.3s;
}
#menu > li > a:hover .img_i2 {
  filter: brightness(0) saturate(100%) invert(56%) sepia(29%) saturate(5715%)
    hue-rotate(358deg) brightness(87%) contrast(90%);
}
#menu > li > a.active,
#menu > li > a:hover {
  color: var(--orange);
}

#menu .dropdown_menu {
  position: relative;
  line-height: 10rem;
}
#menu .dropdown_menu .dropdown_content {
  position: absolute;
  left: 50%;
  min-width: 100%;
  background-color: #ffff;
  box-shadow: 0px 0px 2.3rem 0px #00000040;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  padding: 1.6rem 2.4rem 2.5rem 2.4rem;
  transform: translateY(3rem) translateX(-50%);
  pointer-events: none;
}
#menu .dropdown_menu:hover .dropdown_content {
  visibility: visible;
  opacity: 1;
  transform: translateY(-3rem) translateX(-50%);
  pointer-events: all;
}
.dropdown_section {
  line-height: 0;
}
.dropdown_content {
  padding-top: 2.5rem;
}
.dropdown_content a {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2.35;
  white-space: nowrap;
  color: #000000;
  transition: 0.4s;
  display: block;
}
.dropdown_content a:hover {
  color: var(--orange);
}
.dropdown_content ul {
  line-height: 0;
}
.dropdown_menu1 .img_i2 {
  display: none;
}
.dropdown_menu1 .dropdown_content {
  display: none;
}

.whatsapp_icon_wrapper {
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 99;
}
.img_wh {
  width: 5.4rem;
}

/*======= hero area start =======*/
.hero_wrapper {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding-top: 25.8rem;
  padding-bottom: 20.5rem;
}
.hero_wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.53);
  height: 100%;
  width: 100%;
}
.hero_content .title_lg {
  color: #fff;
  max-width: 53.2rem;
  padding-block: 1.8rem;
}
.hero_content p {
  color: #fff;
  max-width: 46.9rem;
  padding-bottom: 1.7rem;
}
.button {
  font-size: 1.7rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.17;
  display: inline-block;
  padding: 1.8rem 7.35rem;
  background-color: transparent;
  transition: 0.4s;
  position: relative;
  border: 0.1rem solid transparent;
  overflow: hidden;
  z-index: 1;
}
.button:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: var(--orange);
  transition: 0.5s;
  z-index: -1;
}
.button:hover::before {
  height: 0;
  width: 0;
  left: auto;
  right: 0;
  background-color: transparent;
  width: 100%;
}
.button:hover {
  border: 0.1rem solid var(--orange);
  color: var(--orange);
}
.button:hover img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(29%) saturate(5715%)
    hue-rotate(358deg) brightness(87%) contrast(90%);
}
.button img {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
}

/*========= auto aplimesana area ==========*/
.auto_aplimesana_wrapper {
  padding-top: 7.4rem;
  position: relative;
  z-index: 1;
}
.auto_aplimesana_wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 6.93rem);
  background-color: #000;
  z-index: -1;
}
.auto_aplimesana_top_content {
  display: flex;
}
.auto_aplimesana_top_content .title {
  max-width: 33.3rem;
  color: #fff;
  margin-right: 10.5rem;
}
.auto_aplimesana_top_list_wrap {
  display: flex;
}
.auto_aplimesana_top_list_wrap ul li {
  display: flex;
  align-items: center;
  margin-bottom: 1.4rem;
}
.auto_aplimesana_top_list_wrap ul li:last-child {
  margin-bottom: 0;
}
.auto_aplimesana_top_list_wrap ul li .sp1 {
  height: 2.5rem;
  width: 2.5rem;
  background-color: var(--orange);
  border-radius: 10rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.9rem;
}
.auto_aplimesana_top_list_wrap ul li .sp1 img {
  width: 1.23rem;
}
.auto_aplimesana_top_list_wrap ul li .sp2 {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--baijamjuree);
  color: #fff;
}
.auto_aplist_two {
  margin-left: 5.5rem;
}
.auto_aplimesana_right_clear_wrap {
  margin-top: 6.3rem;
}
.auto_aplimesana_bottom_content {
  margin-left: 2rem;
  padding-top: 3.5rem;
}
.auto_aplimesana_img {
  position: relative;
  z-index: 1;
}
.auto_aplimesana_img .button {
  padding: 2.4rem 8.6rem 2.4rem 3.4rem;
  position: absolute;
  bottom: 0;
  right: -23.3rem;
  white-space: nowrap;
}
.auto_aplimesana_img .button img {
  right: 3.4rem;
}
.auto_aplimesana_bottom_content p {
  max-width: 33.2rem;
  color: #fff;
}
.auto_aplimesana_bottom_content .p2 {
  padding-top: 1.6rem;
}

/*======= bling slider area =======*/
.bling_slider_wrapper {
  padding-top: 10.3rem;
  overflow: hidden;
}
.bling_slider_content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.5rem;
}
.bling_slider_content .title {
  max-width: 29.6rem;
}
.bling_slider_top_img_wrap p {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--baijamjuree);
  color: #000;
}
.bling_slider_top_img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
}
.bl1_img {
  width: 4.7rem;
}
.bl2_img {
  width: 4.8rem;
}
.bl3_img {
  width: 7rem;
}
.bling_slider {
  overflow: visible;
}
.bling_slider .owl-stage-outer {
  overflow: visible;
}

.bling_slider_img img {
  width: 32.2rem !important;
  height: 43rem;
}

/*======== striker area start =======*/
.striker_wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 17.2rem;
}
.striker_wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 6.9rem);
  left: 0;
  background-color: #000;
  top: 0;
}
.striker_content {
  padding-top: 18.3rem;
}
.striker_content .title {
  color: #fff;
  max-width: 54.3rem;
  padding-bottom: 2.7rem;
}
.striker_content p {
  max-width: 50.1rem;
  color: #fff;
  padding-bottom: 2.7rem;
}
.img_st1_sm {
  display: none;
}
.striker_img .button {
  position: absolute;
  bottom: 0;
  left: -21.5rem;
  padding: 2.4rem 8.6rem 2.4rem 3.4rem;
}

/*======= kapec area start =======*/
.kapec_wrapper {
  padding-top: 13.5rem;
  padding-bottom: 19.5rem;
}
.kapec_heading {
  text-align: center;
  padding-bottom: 2.4rem;
}
.kapec_box {
  padding-top: 5.6rem;
}
.kapec_box_top {
  display: flex;
  align-items: center;
  padding-bottom: 0.7rem;
}
.kapec_box_top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.2rem;
  width: 3.2rem;
  background-color: var(--orange);
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  border-radius: 9rem;
  margin-right: 0.6rem;
}
.kapec_box_top p {
  font-size: 1.7rem;
  font-weight: 600;
  color: #000;
  font-family: var(--baijamjuree);
}
.kapec_box .p1 {
  font-size: 1.4rem;
  color: #000;
  font-weight: 400;
  max-width: 27.5rem;
}
.kapec_box1 .p1 {
  max-width: 31rem;
}
.kapec_box_com {
  padding-bottom: 3rem;
}
.kapec_border {
  border-top: 0.1rem solid rgba(112, 112, 112, 0.35);
}

/*======= uzzini form area start =======*/
.uzzini_form_wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 11.2rem;
  padding-bottom: 11.2rem;
}
.uzzini_form_content .title {
  color: #fff;
  max-width: 50.9rem;
  padding-bottom: 1.5rem;
}
.uzzini_form_content .p1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 1.6rem;
}
.uzzini_form_content a {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  transition: 0.4s;
  margin-bottom: 1.6rem;
  transition: 0.4s;
}
.uzzini_form_content a:hover {
  color: var(--orange);
}
.uzzini_form_content p {
  color: #fff;
}
.uzzini_input_box {
  margin-bottom: 1.8rem;
}
.uzzini_input_box input {
  height: 4.8rem;
  width: 100%;
  background-color: #fff;
  border: none;
  padding: 1.5rem 2rem;
}
.uzzini_textarea_box textarea::placeholder,
.uzzini_input_box input::placeholder {
  font-size: 1.6rem;
  font-family: "Rubik", serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.3);
}
.uzzini_textarea_box {
  padding-top: 0.6rem;
}
.uzzini_textarea_box textarea {
  height: 11.4rem;
  width: 100%;
  resize: none;
  border: none;
  padding: 1.5rem 2rem;
}
.uzzini_form_btn .button {
  padding: 1.8rem 6.1rem;
  font-size: 1.7rem;
  margin-top: 2rem;
}
.uzzini_form_btn .button img {
  display: none;
}

/*============  kontaki page area  ==============*/
.kontaki_hero_wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  padding-top: 24.85rem;
  padding-bottom: 17.3rem;
  z-index: 1;
}
.kontaki_hero_wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.58);
  z-index: -1;
}
.kontaki_hero_content {
  text-align: center;
}
.kontaki_hero_content .title_lg {
  color: #fff;
}
.kontaki_form_wrapper {
  padding-top: 12rem;
}
.kontaki_form_content .title {
  max-width: 35.3rem;
  padding-bottom: 3.8rem;
}
.kontaki_form_address {
  display: flex;
  flex-direction: column;
}
.kontaki_form_address .a1 {
  margin-top: 2.5rem;
  transition: 0.4s;
}
.kontaki_form_address .a1:hover .sp2 {
  color: var(--orange);
}
.kontaki_form_address a {
  display: inline-flex;
  align-items: center;
}
.kontaki_form_address a .sp1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4.5rem;
  width: 4.5rem;
  background-color: var(--orange);
  margin-right: 1.5rem;
}
.img_ko1 {
  width: 1.8rem;
}
.kontaki_form_address a .sp2 {
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
}
.img_ko2 {
  width: 2.7rem;
}
.img_ko3 {
  width: 1.56rem;
}
.kontaki_form_wrapper .uzzini_input_box input {
  background-color: #f5f5f5 !important;
}
.kontaki_form_wrapper .uzzini_textarea_box textarea {
  background-color: #f5f5f5 !important;
}
.kontaki_map_wrapper {
  padding-top: 9.8rem;
}
.kontaki_map_heading {
  padding-bottom: 3.2rem;
}
.kontaki_map iframe {
  width: 100%;
  height: 49.5rem;
}
.kontaki_footer_wrapper {
  padding: 6.2rem 0 1.1rem;
  background-color: #000;
  margin-top: 11.4rem;
}
.kontaki_footer_logo {
  text-align: center;
}
.kontaki_footer_logo img {
  width: 17.8rem;
}

/*========== par mums page area ===========*/
.parmums_mes_wrapper .auto_aplimesana_img .button {
  right: -23.94rem;
}
.parmums_mes_wrapper .auto_aplimesana_bottom_content {
  margin-left: 5rem;
  padding-top: 7.5rem;
}
.parmums_kapec_wrapper {
  padding-top: 17rem;
  padding-bottom: 17rem;
}
.parmums_kapec_content {
  padding-left: 2rem;
}
.parmums_kapec_content .title {
  padding-bottom: 1.5rem;
}
.parmums_kapec_content p {
  max-width: 50.1rem;
  font-size: 1.6rem;
}
.parmums_kapec_content .p2 {
  padding-top: 2rem;
}

/*======== reklama-uz-auto page area start =========*/
.raklamauzauto_hero_wrapper .title_lg {
  max-width: 36.2rem;
  margin-left: auto;
  margin-right: auto;
}
.reklama_auto_wrapper {
  padding-top: 9rem;
}
.reklama_auto_heading .title {
  max-width: 52.2rem;
  padding-bottom: 1.8rem;
}
.img_rak2 {
  width: 16rem;
}
.reklama_auto_content {
  padding-left: 1rem;
}
.reklama_auto_content p {
  max-width: 50.1rem;
  padding-bottom: 3.7rem;
}
.reklama_auto_content .button {
  padding: 1.8rem 3.8rem;
  font-size: 1.7rem;
}
.reklama_kapec_wrapper {
  padding-top: 18rem;
  padding-bottom: 19.7rem;
}
.reklama_kapec_wrapper .title {
  max-width: 44.6rem;
}
.reklama_slider_wrapper {
  padding-top: 4.8rem;
}
.reklama_uzini_form .uzzini_form_content .title {
  max-width: 31.7rem;
}

/*======== aizsarg pleves page area start =========*/
.aizsarg_hero_wrapper {
  padding-top: 20.2rem;
  padding-bottom: 15.9rem;
}
.aizsarg_hero_wrapper .title_lg {
  max-width: 43.6rem;
  margin-left: auto;
  margin-right: auto;
}
.aizsarg_slider_wrapper {
  margin-top: 9.5rem;
}
.aizsargs_kapec_wrapper {
  padding-top: 11.5rem;
  padding-bottom: 16.8rem;
}
.aizsargs_kapec_wrapper .title {
  max-width: 78.2rem;
  margin-left: auto;
  margin-right: auto;
}
.aizsargs_kapec_wrapper .kapec_box_top p {
  max-width: 24.1rem;
}
.aizsargs_kapec_wrapper .kapec_box_top1 p {
  max-width: 21.7rem;
}
.aizsargs_uzini_form .uzzini_form_content .title {
  max-width: 45.6rem;
}
.aizsargs_uzzini_box {
  max-width: 54.7rem;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--orange);
  padding: 4rem 0 7.5rem;
  text-align: center;
}
.aizsargs_uzzini_box .img_az6 {
  width: 8.3rem;
}
.aizsargs_uzzini_box h4 {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  padding-top: 1.6rem;
}
.aizsargs_uzzini_box p {
  color: #fff;
  max-width: 38.7rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.6rem;
}

/*===== footer area =====*/
.footer_wrapper {
  background-color: #000;
  padding: 2.3rem 0;
}
.footer_content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_content p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-right: 2rem;
}
.footer_content a {
  display: inline-block;
  margin-right: 0.5rem;
}
.footer_content a:last-child {
  margin-right: 0;
}
.footer_content a img {
  width: 3rem;
}

/*return-to-top START CSS*/

.back-to-top {
  font-size: 2.4rem;
  width: 4.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  text-align: center;
  display: none;
  position: fixed;
  bottom: 30px;
  left: 2.5rem;
  border-radius: 50%;
  background: var(--orange);
  z-index: 1000;
}

.back-to-top i {
  color: #fff;
}

/* =============================== Code by Sahriar Alam starts here ================================== */

/* ================== label_form_area  ================= */
.label_form_area {
  padding-bottom: 20rem;
}

.nice-select {
  width: 100%;
  height: 3.6rem;
  font-size: 1.4rem;
  border: 0.05rem solid #707070 !important;
}

.nice-select span {
  position: absolute;
  font-size: 1.4rem;
  right: 4rem;
  text-align: left;
  width: 9rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}

.nice-select:after {
  width: 0.75rem;
  height: 0.75rem;
  border-color: #000;
  right: 2.3rem;
}

.label_form_area .row > * {
  padding: 0 2.1rem;
}

.label_form_area .row {
  margin: 0 -2.1rem;
}

.form_label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  z-index: 1;
}

.form_group_select {
  width: 100%;
}

.label_form {
  display: grid;
  gap: 1.1rem;
}

.list {
  width: 100%;
  background: #fff;
}

.nice-select .option {
  position: relative;
  text-align: right;
}

.check {
  width: 2.28rem;
  height: 2.28rem;
  border: 0.1rem solid #707070;
  border-radius: 0.4rem;
  position: relative;
}

.check img {
  width: 1.116rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.checkbox {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  height: 3.6rem;
  width: 13.6rem;
  justify-content: space-between;
  border: 0.1rem solid #707070;
  border-radius: 0.4rem;
  cursor: pointer;
}

.checkbox.active .check {
  background: #4caf50;
  border-color: #4caf50;
}

.check_inputs {
  gap: 1.2rem;
}

.form_upload label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.7rem;
  padding: 0 2.5rem;
  border: 0.1rem solid #d36a10;
  border-radius: 10rem;
  background: #f5f5f5;
  cursor: pointer;
}

.form_group_btn .left p {
  font-size: 1.6rem;
  font-weight: 500;
}

.form_group_btn .left h5 {
  font-size: 3rem;
  font-family: var(--baijamjuree);
  font-weight: 700;
  padding-left: 0.8rem;
}

.form_label_bottom .p1 {
  font-size: 1.6rem;
  font-weight: 500;
}

.form_label_bottom .p2 {
  font-size: 1.4rem;
  padding-bottom: 1.4rem;
}

.form_label_bottom textarea {
  width: 100%;
  display: block;
  position: relative;
  resize: none;
  overflow: initial;
  height: 10.5rem;
  background: #f5f5f5;
  padding: 1.2rem 1rem;
  border-color: #d36a10;
  margin-bottom: 1rem;
}

.form_label_bottom textarea::placeholder {
  color: #ABABAB;
  font-size: 1.4rem;
}


.form_label_bottom button {
  float: right;
  background: transparent;
  border: none;
  text-decoration: underline;
  font-size: 1.7rem;
  font-weight: 400;
  padding: 0;
  transition: 0.25s ease;
  cursor: pointer;
}

.form_label_bottom button:hover {
  text-decoration: none;
}

.form_label_bottom {
  padding-top: 3.5rem;
}

.question_mark {
  width: 1.6rem;
  margin-left: 0.2rem;
}

/* ================= product-slider =================== */
.owl-thumbs {
  display: none;
}

.product-slider .owl-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  gap: 1.6rem;
  margin-top: 3rem;
}

.product-slider .owl-thumbs img {
  width: 100%;
}
.product-slider .owl-thumb-item {
  background: #fff;
  box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.1);
  height: 20.7rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: none;
  padding: 0;
}

.product-slider .owl-item .item {
  height: 66.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.product-slider .owl-stage-outer {
  box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.1);
}

/* ====================== category_area ======================== */
.category_area .row > * {
  padding: 0 2.1rem;
}

.category_area .row {
  margin: 0 -2.1rem;
}

.incre_decre_btn {
  border: none;
  background: no-repeat;
  padding: 0;
}

.increase_decrease {
  width: 13.5rem;
  margin-left: auto;
  height: 3.6rem;
  padding: 0 1.6rem;
  border: 0.1rem solid #707070;
  border-radius: 0.4rem;
}

.label_form2 .nice-select {
  height: 4.9rem;
}

.label_form2 .form_label {
  left: 2.8rem;
}

.label_form2 .nice-select::after {
  right: 3.7rem;
}

.form_increase_decrease {
  height: 4.9rem;
  display: flex;
  align-items: center;
  padding: 0 0.5rem 0;
  border: 0.1rem solid #707070;
  border-radius: 0.4rem;
}

.label_form2 {
  padding-top: 6rem;
  gap: 2.1rem;
}

.label_form2 .form_upload {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.label_form2 .form_label_bottom textarea {
  height: 13.5rem;
}

.form_label_bottom2 textarea {
  height: 13.5rem;
}

.form_label_bottom2 {
  padding-top: 4.5rem;
}

/* ================ product_reklama_slider_wrapper ================== */
.product_reklama_slider_wrapper {
  padding-bottom: 52rem;
}

/* ================ product_reklama_slider_wrapper ================== */
.modallabel .modal-content {
  padding: 0;
  background: transparent;
  border: none;
}

.modallabel .modal-body {
  padding: 0;
}

.modallabel_content {
  width: 64rem;
  background: #fff;
  padding: 5rem 8rem 10rem 5.7rem;
  border-radius: 3.7rem;
  position: relative;
}

.modallabel .close_modal {
  border: none;
  background: transparent;
  padding: 0;
  position: absolute;
  right: 2rem;
  top: 2rem;
}

.modallabel_content h5 {
  font-size: 3rem;
}




/*====================================== new code ===============================*/





/*======== pilna auto page area start =========*/
.pilnaauto_hero_wrapper{
	padding-top: 20.2rem !important;
	padding-bottom: 15.9rem;
}
.pilnaauto_hero_wrapper .title_lg{
	max-width: 33rem;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.pilnaauto_reklamauto_wrapper .reklama_auto_heading .title{
	max-width: 43rem;
}
.pilnaauto_reklamauto_wrapper .reklama_auto_content .p1{
	padding-bottom: 2rem !important;
}
.pilnaauto_reklamauto_wrapper .reklama_auto_content .p2{
	padding-bottom: 3.5rem;
}
.pilnaauto_slider_wrapper .item img{
	height: 34.9rem;
	width: 	27.9rem;
	object-fit: cover;
}
.pilnaauto_parmums_kapec_wrapper{
	padding-top: 13.3rem !important;
	padding-bottom: 16.3rem !important;
}
.pilnaauto_parmums_kapec_wrapper .parmums_kapec_content p{
	max-width: 48.1rem;
}
.pilnaauto_parmums_kapec_wrapper .p2 a{
	color: #000;
	text-decoration: underline;
}
.pilnaauto_parmums_kapec_wrapper .p2 .a1{
	font-weight: 700;
}
.pilnaauto_parmums_kapec_wrapper .p2 .a2{
	font-weight: 500;
}
.pilna_aplimesana_wrapper{
	background-color: #F5F5F5;
	padding-top: 6.8rem;
	padding-bottom: 6.8rem;
}
.pilna_aplimesana_heading .title{
	max-width: 36.6rem;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 2rem;
}
.pilna_aplimesana_heading p{
	max-width: 79.5rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.pilna_aplimesana_box{
	padding-top: 7rem;
	text-align: center;
}
.pilna_aplimesana_img img{
	width: 26rem;
}
.pilna_aplimesana_box h3{
	font-size: 3rem;
	font-weight: 700;
	margin-left: auto;
	margin-right: auto;
	font-family: var(--baijamjuree);
	max-width: 28.2rem;
	padding-top: 1rem;
}
.pilna_aplimesana_box .p1{
		padding-top: 1.6rem;
		padding-bottom: .8rem;
}
.pilnaauto_reklamauto_wrapper2{
	padding-top: 9.4rem !important;
	padding-bottom: 7rem !important;
}
.pilnaauto_reklamauto_wrapper2 .reklama_auto_heading .title{
	max-width: 53.7rem;
}
.pilnaauto_reklamauto_wrapper2 .reklama_auto_content p{
	max-width: 50.1rem;
	padding-bottom: 4.4rem !important;
}
.pilnaauto_bottom_slider_wrapper{
	padding-bottom: 15.9rem;
}
.pilnaauto_bottom_slider .item img{
	height: 28.8rem;
}
.pilna_uzini_form .uzzini_form_content .title{
	max-width: 37.4rem;
}



/*auto virsbuves page area start*/
.autovirsbuves_hero_wrapper{
	padding-top: 20.2rem !important;
	padding-bottom: 15.9rem !important;
}
.autovirsbuves_hero_wrapper .title_lg{
	max-width: 44.4rem;
	margin-left: auto;
	margin-right: auto;
}
.autovirsbuves_reklama_auto_wrapper{
	padding-top: 8.2rem !important;
}
.autovirsbuves_reklama_slider_wrapper{
	padding-top: 11.9rem !important;
}
.autovirsbuves_reklama_slider_wrapper .item img{
	height: 32.6rem;
	object-fit: cover;
}
.autovirsbuves_kapec_wrapper{
	padding-top: 13.8rem !important;
	padding-bottom: 13.9rem !important;
}
.autovirsbuves_kapec_wrapper .title{
	max-width: 58.5rem;
}
.autovirsbuves_keramis_content_box .title{
	max-width: 55.9rem;
}
.autovirsbuves_keramis_content_box p{
	max-width: 50.1rem;
	padding-top: 1rem;
}
.autovirsbuves_keramis_content_box2 .title{
	max-width: 46.1rem;
	padding-top: 6.6rem;
}
.autovirsbuves_keramis_content_box3{
	padding-top: 5rem;
}
.autovirsbuves_accordion_img{
	position: relative;
}
.autovirsbuves_accordion_img .button{
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 2.4rem 8.6rem 2.4rem 3.6rem;
	font-size: 2rem;
	text-decoration: underline;
}
.autovirsbuves_accordion_img .button img{
	width: 3.3rem;
	right: 3.4rem;
}
.autovirsbuves_accordion .title {
    max-width: 46.7rem;
    padding-bottom: 1.2rem;
}
.autovirsbuves_accordion_wrapper{
	padding-top: 24.3rem;
	padding-bottom: 22rem;
}
.accordion_box button{
	font-size: 2.5rem;
	font-weight: 700;
	color: #000;
	font-family: var(--baijamjuree);
	padding: 2.5rem 0 2.5rem;
	border: none;
	border-bottom: 0.1rem solid rgba(0, 0, 0, 0.51);
	position: relative;
	transition: 0.4s;
}
.accordion_box button::before{
	position: absolute;
	content: '';
	background-image: url(../img/vi8.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 2.4rem;
	width: 2.4rem;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.accordion_box button[aria-expanded="true"]::before{
	background-image: url(../img/vi9.svg);
}
.accordion_box button:hover{
	text-decoration: none;
	color: #000;
}
.accordion_box button:focus{
	box-shadow: none;
	text-decoration: none;
}
.accordion_box button[aria-expanded="true"]{
	text-decoration: none;
	padding: 2.5rem 0 1.7rem;
}
.accordion_content{
	border-bottom: 0.1rem solid rgba(0, 0, 0, 0.51);
	padding-bottom: 1.7rem;
	padding-top: 1rem;
}
.accordion_content p{
	max-width: 63.4rem;
	margin-left: 2.5rem;
}
.virsbuves_uzini_form .title{
	max-width: 37.4rem;
}


/*========== auto mobilu page area ===========*/
.automobilo_hero_wrapper{
	padding-top: 20.2rem;
	padding-bottom: 15.9rem;
}
.automobilo_hero_wrapper .title_lg br{
	display: none;
}
.automobilo_hero_wrapper .title_lg{
	max-width: 56.6rem;
	margin: 0 auto;
}
.automobilo_reklamauto_wrapper .title{
	max-width: 28.9rem !important;
}
.automobilo_slider_wrapper{
	padding-top: 9.4rem !important;
}
.automobilo_pulesan_wrapper{
	padding-top: 13.2rem !important;
}
.automobilo_pulesan_wrapper .autovirsbuves_keramis_content_box2 .title{
	padding-top: 3rem;
}
.automobilo_pulesan_wrapper .autovirsbuves_keramis_content_box p{
	padding-top: 2rem;
}
.automobilo_pulesan_wrapper .autovirsbuves_keramis_content_box p a{
	font-weight: 700;
	text-decoration: underline;
	color: #000;
}
.automobilo_pulesan_wrapper .autovirsbuves_keramis_content_box .title{
	max-width: 55rem;
}
.automobilo_pulesan_wrapper .autovirsbuves_keramis_img img{
	width: 58.5rem;
	height: 58.5rem;
}
.automobilo_lukturu_wrapper{
	background-color: #F5F5F5;
	padding-top: 10.3rem;
	margin-top: 12.7rem;
	padding-bottom: 10.3rem;
}
.automobilo_lukturu_wrapper .reklama_auto_wrapper{
	padding-top: 0;
}
.automobilo_lukturu_wrapper .reklama_auto_heading .title{
	max-width: 49.2rem !important;
}
.automobilo_lukturu_wrapper .automobilo_slider_wrapper{
	padding-top: 6.3rem !important;
}
.automobilo_lukturu_wrapper .reklama_slider img{
	width: 28rem;
	height: 25.2rem;
}
.automobilo_price_wrapper{
	padding-top: 13.2rem;
	padding-bottom: 15rem;
}
.automobilo_price_heading .title{
	max-width: 54rem;
	margin: 0 auto;
	text-align: center;
}
.automobilo_price_box{
	background-color: #F5F5F5;
	border-radius: 2.4rem;
	box-shadow: 0px 0.3rem 0.6rem 0px rgba(0,0,0,0.16);
}
.automobilo_price_box1{
	padding-top: 6.15rem;
	padding-bottom: 8.6rem;
	height: 52.2rem;
	margin-top: 10.5rem;
}
.pautomobilo_price_top{
	text-align: center;
}
.pautomobilo_price_top h4{
	font-size: 3rem;
	font-weight: 700;
	font-family: var(--baijamjuree);
	text-align: center;
}
.pautomobilo_price_top1 h4{
	max-width: 18.2rem;
	margin-left: auto;
	margin-right: auto;
}
.pautomobilo_price_top p{
	padding-top: 3rem;
	text-align: center;
}
.automobilo_price_bottom1{
	padding-left: 6.9rem;
	padding-top: 3.15rem;
}
.automobilo_price_bottom ul li{
	align-items: flex-start !important;
}
.automobilo_price_bottom span{
	font-size: 1.6rem !important;
	color: #000 !important;
	font-weight: 500 !important;
}
.automobilo_price_box2{
	background-color: var(--orange);
	color: #fff !important;
	padding-top: 7.2rem;
}
.pautomobilo_price_top2 h4{
	max-width: 31.4rem;
	margin: 0 auto;
	text-align: center;
}
.pautomobilo_price_top2 h3{
	font-size: 2.5rem;
	color: #fff;
	font-weight: 700;
}
.pautomobilo_price_top2 .title{
	color: #fff;
}
.automobilo_price_bottom2{
	padding-top: 3.8rem;
	padding-left: 6.4rem;
	padding-bottom: 7rem;
}
.automobilo_price_bottom2 ul li{
	align-items: flex-start !important;
}
.automobilo_price_bottom2 .sp1{
	background-color: #fff!important;
}
.automobilo_price_bottom2 span{
	max-width: 22rem;
	color: #fff !important;
}
.automobilo_price_bottom2 .auto_li span {
   max-width: 24.1rem;
}
.automobilo_price_bottom3 .auto_li1 span{
	max-width: 25.5rem;
}
.automobilo_price_box2{
	margin-top: 6.8rem;
}
.automobilo_price_box3{
	padding-bottom: 5.4rem;
}
.automobilo_price_bottom3{
	padding-top: 3.8rem;
}
.automobilo_uzini_form{
	padding: 5.2rem 0;
}
.automobilo_uzini_form .title{
	max-width: 55.5rem;
}
.automobilo_reklamauto_wrapper .reklama_auto_heading .titl br{
	display: none;
}





















/*============================ new code end ==================================*/

.owl-stage {
  display: flex;
}