@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none !important;
  transition: ease all 0.5s;
  -webkit-transition: ease all 0.5s;
  -moz-transition: ease all 0.5s;
  -ms-transition: ease all 0.5s;
  -o-transition: ease all 0.5s;
}

input,
button,
select,
textarea {
  outline: none !important;
  font-family: "Poppins", sans-serif;
}

/*TEXT STYLES*/
h1,
h2,
h3,
h4 {
  font-family: "Raleway", sans-serif !important;
}

.dark {
  color: #50535a;
}

.med {
  color: #626c7a;
}

.light {
  color: #a87b4f;
}

.bold {
  font-weight: 600;
}

.grey {
  background: #F5F6F7;
}

.white {
  color: #fff;
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 25px;
}

.underline {
  border-bottom: 1px solid #E7E7E7;
  margin-bottom: 20px;
}

.shadow {
  box-shadow: 1px 3px 5px #CCC, 1px -3px 5px #CCC;
}

a:hover {
  text-decoration: none;
}

.fullheight {
  height: 100%;
}

/*PAGE SECTION SIZES*/
/*LOGO*/
nav {
  /*	position: absolute;*/
  z-index: 999;
}

nav img {
  /*	margin-left: 52px;
  position: absolute;*/
  z-index: 999;
}

/* ul { */
/* 	text-align: right; */
/* 	height: 57px; */
/* 	padding-top: 10px; */
/* } */
.top-menu-item {
  list-style: none;
  display: inline-block;
  height: 100%;
}

.top-menu-item a {
  font-size: 1.3em;
  letter-spacing: 0.1em;
  font-weight: 300;
  padding: 20px 25px;
}

.btn-primary {
  background: #6083a7;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 7px 25px;
  border-radius: 5px;
  border: none;
}

.btn-primary:hover {
  color: #fff;
  background: #1e3c57;
}

.btn-warning:hover {
  color: #fff;
  background-color: #eea236;
  border-color: #BD812B;
}

.btn-blue {
  background: rgb(96, 131, 167);
  border: none;
  padding: 8px 15px;
  color: #fff;
  text-transform: none;
}

.btn-blue.focus,
.btn-blue:focus,
.btn-blue:hover {
  background: rgb(74, 104, 134);
  color: #DADADA;
  text-decoration: none;
}

.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}

.mainBox {
  height: 100%;
  background: #eee;
}

.description {
  margin-top: 4%;
}

.description h1 {
  font-size: 2.2em;
}

.description h3 {
  margin-right: 10%;
}

.description .btn {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 23px;
}

.space {
  margin-left: 20px;
}

.mainimg {
  margin-left: 80px;
  margin-top: 30px;
  width: 80%;
  position: relative;
  max-width: 700px;
}

.featureBox {
  background: #F5F6F7;
  color: #50535a;
  bottom: 0;
  padding-top: 60px;
  padding-bottom: 50px;
  vertical-align: bottom;
  position: fixed;
  width: 100%;
  z-index: 99;
}

.feature {
  text-align: center;
}

.feature img {
  height: 100px;
}

.feature p {
  text-align: left;
  width: 75%;
  margin: 0 auto;
  font-size: 1.1em;
  text-indent: 20px;
}

.features-section {
  margin-top: 60px;
  margin-bottom: 60px;
  background: #fff;
  padding-top: 20px;
  padding-bottom: 40px;
  -webkit-box-shadow: 1px 1px 4px 0px rgb(115, 115, 115);
  -moz-box-shadow: 1px 1px 4px 0px rgb(115, 115, 115);
  box-shadow: 1px 1px 4px 0px rgb(115, 115, 115);
}

.features-section h2 {
  padding: 20px 0 30px 0;
}

/*FLIP ANIMATION*/
.flip {
  -webkit-perspective: 800;
  perspective: 800;
  -ms-perspective: 800;
}

.flip .card.flipped {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
  -ms-transform: rotateX(-180deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}

.flip .card {
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -webkit-transition: 1s;
  transition: 1s;
  -ms-transition: 1s;
}

.flip .card .face {
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  ms-backface-visibility: hidden;
  z-index: 2;
}

.flip .card .front {
  z-index: 1;
  background: #F5F5F5;
}

.flip .card .back {
  -webkit-transform: rotatex(-180deg);
  transform: rotatex(-180deg);
  -ms-transform: rotatex(-180deg);
  color: #000;
  margin-top: -100px;
}

.intro-list {
  margin: 30px 0;
}

.img-container {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin-top: 0;
  overflow: visible;
  padding-top: 50px;
}

.img-container .bg {
  width: 100%;
  position: absolute;
  left: 0;
  display: none;
}

.map {
  z-index: -1;
}

.caption {
  background: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  padding: 15px;
  border: 1px solid #D0CBCB;
  position: absolute;
  display: none;
}

.caption h4 {
  font-size: 15px;
  line-height: 10px;
  margin: 0;
}

.caption img {
  width: 30px;
  height: auto;
}

.monitor-text {
  font-size: 1.5em;
  padding: 15px;
  text-align: center;
  color: #FFF;
  background: rgb(67, 69, 73);
  border: 1px solid rgb(67, 69, 73);
  color: #FFF;
  border-radius: 5px 5px 0px 0px;
}

.road-text {
  margin-top: 10%;
  margin-left: 1%;
}

.on-text {
  margin-top: 10%;
  margin-left: 16%;
}

.cpt-text {
  margin-top: 14%;
  margin-left: 1%;
}

.restrict-text {
  margin-top: 18%;
  margin-left: 1%;
}

.alerts-text {
  margin-top: 1%;
  margin-left: 11%;
}

.message-text {
  margin-top: 15%;
  margin-left: 33%;
}

.caption p {
  margin: 0;
  line-height: 20px;
  margin-left: 30px;
  color: #666;
}

.screen {
  line-height: 20px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #D0CBCB;
  margin-top: -50px;
  border-radius: 5px;
  display: none;
  min-width: 600px;
  position: absolute;
  right: 0;
  top: 50px;
}

.screen img {
  width: 20px;
}

.screen span {
  font-weight: 600;
}

.progress {
  padding: 0;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: inline-block;
}

.min {
  background: #fdd766;
}

.max {
  background: #92c27d;
}

.exit {
  background: #de6666;
}

ul#services {
  list-style: none;
  padding: 15px 0;
}

ul#services li {
  margin: 0;
  padding: 0px 0px 15px 50px;
  vertical-align: middle;
  list-style-position: outside;
}

ul#services .shipping {
  background: url(../images/truckcontour-01.png) no-repeat left top;
}

ul#services .delivery {
  background: url(../images/boxcontour-01.png) no-repeat left top;
}

ul#services .touring {
  background: url(../images/mapcontour-01.png) no-repeat left top;
}

ul#services .personal {
  background: url(../images/eyecontour-01.png) no-repeat left top;
}

ul#services .corporate {
  background: url(../images/corpcontour-01.png) no-repeat left top;
}

/*MEDIA QUERIES Also added a max-width to mainimg class above screen*/
@media screen and (max-width: 1280px), screen and (max-height: 850px) {
  .description h1 {
    font-size: 1.5em;
  }
  .description h2 {
    font-size: 0.8em;
  }
  .description h3 {
    font-size: 0.5em;
  }
  .description .btn {
    margin-top: -20px;
    font-size: 0.5em;
  }
  .description {
    margin-top: 10px;
  }
  .mainimg {
    margin-left: 40px;
  }
  .featureBox {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .card .back {
    zoom: 0.7;
    -ms-zoom: 0.7;
    -webkit-zoom: 0.7;
  }
}
@media screen and (min-width: 1920px) {
  .feature p {
    display: inline;
  }
  .description {
    margin-top: 5%;
  }
  .mainimg {
    margin-top: 5%;
  }
}
@media screen and (max-height: 800px) {
  .featureBox {
    position: absolute;
    top: 580px;
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .menu-offset {
    margin-left: 299px;
  }
}
@media screen and (min-width: 1475px) {
  .col-xlg-1 {
    width: 8.33333333%;
  }
  .col-xlg-2 {
    width: 16.66666667%;
  }
  .col-xlg-3 {
    width: 25%;
  }
  .col-xlg-4 {
    width: 33.33333333%;
  }
  .col-xlg-5 {
    width: 41.66666667%;
  }
  .col-xlg-6 {
    width: 50%;
  }
  .col-xlg-7 {
    width: 58.33333333%;
  }
  .col-xlg-8 {
    width: 66.66666667%;
  }
  .col-xlg-9 {
    width: 75%;
  }
  .col-xlg-10 {
    width: 83.33333333%;
  }
  .col-xlg-11 {
    width: 91.66666667%;
  }
  .col-xlg-12 {
    width: 100%;
  }
}
/* FIX for browsers with no 3d transform or refect */
.no-csstransforms3d nav a span:after {
  display: none;
}

.no-csstransforms3d nav a:hover span {
  color: #fff;
  background: #3D4149;
}

.no-csstransforms3d nav a:hover span {
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
}

/* ie10 fix */
.no-cssreflections nav a span:after {
  display: none;
}

.no-cssreflections nav a:hover span {
  color: #fff;
  background: #3D4149;
}

.no-cssreflections nav a:hover span {
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
}

html,
body {
  color: #898989;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  line-height: normal;
  font-weight: 400;
  overflow-x: hidden !important;
  background-color: #ffffff;
}

body {
  overflow: hidden !important;
}

a {
  color: #1f1f1f;
  text-decoration: none !important;
  outline: none !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
a:hover, a:focus {
  color: #252525;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  font-weight: normal;
  position: relative;
  padding: 0;
  line-height: normal;
  color: #ff753a;
  margin: 0;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #000000;
  text-decoration: none !important;
}

h1 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.2em;
}

h2 {
  font-size: 54px;
  font-weight: 500;
  letter-spacing: -2px;
  margin-bottom: 25px;
  line-height: 50px;
}

h3 {
  font-size: 32px;
  color: #000000;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
}

h4 {
  font-size: 24px;
  color: #000000;
  line-height: 21px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 30px 0 20px;
}

h5 {
  font-size: 18px;
  color: #000000;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
}

h6 {
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #000000;
}

.small_heading.main-heading {
  margin-bottom: 20px;
  width: 100%;
}
.small_heading.main-heading h2 {
  font-size: 21px;
}
.small_heading.main-heading::after {
  top: 18px;
}

p {
  color: #999;
  font-size: 14px;
  line-height: 21px;
  font-weight: 300;
  margin-bottom: 15px;
}
p.large {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
}
p.large_2 {
  font-weight: 500;
  font-size: 14px;
  color: #000000;
}

.lead {
  font-size: 18px;
  line-height: 30px;
  color: #767676;
  margin: 0 0 15px;
}

blockquote {
  margin: 20px 0;
  padding: 30px;
}

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

.list-check {
  list-style: none !important;
}
.list-check i {
  margin-left: -20px;
}

.text-underline {
  text-decoration: underline;
}

.color_black p,
.color_black p.large,
.color_black ul,
.color_black ul li {
  color: #000;
}

.black_color {
  color: #000 !important;
}

.white_fonts p,
.white_fonts h1,
.white_fonts h2,
.white_fonts h3,
.white_fonts h4,
.white_fonts h5,
.white_fonts h6,
.white_fonts ul,
.white_fonts ul li,
.white_fonts ul li a,
.white_fonts ul i,
.white_fonts .post_info i,
.white_fonts div,
.white_fonts a.read_more,
.white_fonts h2 span {
  color: #fff !important;
}

.light_gray_fonts p,
.light_gray_fonts h1,
.light_gray_fonts h2,
.light_gray_fonts h3,
.light_gray_fonts h4,
.light_gray_fonts h5,
.light_gray_fonts h6,
.light_gray_fonts ul,
.light_gray_fonts ul li,
.light_gray_fonts ul li a,
.light_gray_fonts ul i,
.light_gray_fonts .post_info i,
.light_gray_fonts div,
.light_gray_fonts a.read_more {
  color: #898989 !important;
}

.extra_light_font {
  font-weight: 300 !important;
}

.light_font {
  font-weight: 300 !important;
}

.normal_font {
  font-weight: 400 !important;
}

.semi_bold_font {
  font-weight: 600 !important;
}

.bold_font {
  font-weight: 700 !important;
}

.extra_bold_font {
  font-weight: 900 !important;
}

.text_align_left {
  text-align: left;
}

.text_align_right {
  text-align: right;
}

.text_align_center {
  text-align: center;
}

.center {
  width: 100%;
  display: flex;
  justify-content: center;
}

.margin_0 {
  margin: 0 !important;
}

.padding_0 {
  padding: 0 !important;
}

.padding-top_0 {
  padding-top: 0 !important;
}

.padding-bottom_0 {
  padding-bottom: 0 !important;
}

.padding-bottom_1 {
  padding-bottom: 10px !important;
}

.padding-bottom_2 {
  padding-bottom: 20px !important;
}

.padding-bottom_3 {
  padding-bottom: 30px !important;
}

.padding-bottom_4 {
  padding-bottom: 40px !important;
}

.padding-bottom_5 {
  padding-bottom: 50px !important;
}

.margin_top_0 {
  margin-top: 0 !important;
}

.margin_top_30 {
  margin-top: 30px;
}

.margin_bottom_30 {
  margin-bottom: 30px;
}

a,
.btn {
  text-decoration: none !important;
  outline: none !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 50px;
  border-radius: 100px;
  padding: 0 32px;
  text-align: center;
  line-height: 52px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 10px;
  color: #fff;
  border: 1px solid transparent;
  background-color: #ff753a;
  cursor: pointer;
}
.btn:hover, .btn:focus {
  background: #252525;
  color: #fff;
}
.btn-custom {
  margin-top: 20px;
  background-color: transparent;
  border: 2px solid #ddd;
  padding: 12px 40px;
  font-size: 16px;
  color: #000000;
}

.btn-green,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-green {
  background-color: #34a853;
  color: #fff;
  border-color: #34a853;
}
.btn-green:hover, .btn-green:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-green:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-green:focus {
  background: transparent;
  color: #34a853;
}

.btn-orange,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-orange {
  background-color: #f0a116;
  color: #fff;
  border-color: #f0a116;
}
.btn-orange:hover, .btn-orange:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-orange:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-orange:focus {
  background: transparent;
  color: #f0a116;
}

.btn-dark-cyan,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-dark-cyan {
  background-color: #132f4a;
  color: #fff;
  border-color: #132f4a;
}
.btn-dark-cyan:hover, .btn-dark-cyan:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-dark-cyan:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-dark-cyan:focus {
  background: transparent;
  color: #132f4a;
}

.btn-transparent,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-transparent {
  background-color: transparent;
  color: #487399;
  border-color: #487399;
}
.btn-transparent:hover, .btn-transparent:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-transparent:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-transparent:focus {
  background: #487399;
  color: #fff;
}

button {
  transition: ease all 0.5s;
  cursor: pointer;
}

.bt_main {
  color: #fff;
  font-size: 14px;
  min-width: 148px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  line-height: 50px;
  font-weight: 500;
  border: none;
  padding: 0 35px;
  background: #ff3d00;
  border-radius: 100px;
}
.bt_main:hover, .bt_main:focus {
  color: #fff;
  background: #252525;
}
.bt_main.white_bt {
  background: #fff;
  color: #000000;
}
.bt_main.white_bt:hover, .bt_main.white_bt:focus {
  color: #fff;
  background: #ff753a;
}

.field button {
  padding: 0 35px;
  background: #c30000;
  color: #fff;
  font-size: 14px;
  min-width: 148px;
  height: 48px;
  line-height: 50px;
  font-weight: 500;
  border: none;
  margin-top: 15px;
  border-radius: 5px;
  transition: ease all 0.5s;
}
.field button:hover, .field button:focus {
  background: #fff;
  color: #ff753a;
}
.field input {
  width: 100% !important;
  margin-top: 10px;
  border: none;
  min-height: 45px;
  padding: 0 25px;
  line-height: 45px;
  font-size: 14px;
}
.field textarea {
  width: 100%;
  margin-top: 10px;
  border: none;
  font-size: 14px;
  min-height: 100px;
  padding: 30px 25px;
  line-height: 1.6;
}

.border_circle_bt {
  border-radius: 50px;
}

.img-responsive {
  max-width: 100%;
}

button,
input,
select,
textarea,
option {
  font-family: "Poppins", sans-serif;
}

.text_align_left {
  text-align: left;
}

.text_align_right {
  text-align: right;
}

.text_align_center {
  text-align: center;
}

@media screen and (max-width: 992px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 42px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 14px;
  }
  p {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 14px;
  }
  h6 {
    font-size: 12px;
  }
  p {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 13px;
  }
  h6 {
    font-size: 12px;
  }
  p {
    font-size: 14px;
  }
}
.hero-page {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 320px;
}

.hero-page .hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #E84B3C;
  opacity: 0.85;
}

.hero-page .hero-content {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
}

.hero-page .section-title {
  margin: 0 0 12px;
  font-weight: 600;
  color: #fff;
  font-size: 55px;
  font-family: "Poppins";
}

.hero-page .hero-subtitle {
  margin: 0 auto;
  line-height: 1.6;
  max-width: 900px;
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #fff;
}

@media (max-width: 575.98px) {
  .hero-page {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .hero-page .hero-subtitle {
    padding: 0 12px;
  }
}
/* =======================================================================
   Services archive filters
   ======================================================================= */
.services-archive__controls {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.services-archive__search,
.services-archive__sort {
  width: 100%;
}

.services-archive__label,
.services-archive__sort-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #7c8599;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.services-archive__search-input {
  position: relative;
  background: #f4f7fb;
  border-radius: 12px;
  overflow: hidden;
}

.services-archive__search-input .form-control {
  border: none;
  background: transparent;
  padding: 18px 18px 18px 56px;
  height: 60px;
  font-size: 16px;
  box-shadow: none;
}

.services-archive__search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  color: #7c8599;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.services-archive__search-icon svg {
  width: 18px;
  height: 18px;
}

.services-archive__select {
  height: 56px;
  border-radius: 12px;
  border: 1px solid #d8dde8;
  font-size: 16px;
  color: #313040;
  max-width: 220px;
}

.services-archive .bestservice-card {
  margin-bottom: 30px;
}

.services-archive__footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #d5dce3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.service-pagination--client {
  display: inline-flex;
  align-items: center;
  order: 1;
}

.service-pagination--client nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-pagination--client .page-numbers {
  display: inline-flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.bestservice-card__link {
  width: 100%;
}

.service-pagination--client .page-numbers a,
.service-pagination--client .page-numbers span {
  width: 40px;
  height: 40px;
  border: 1px solid #d5dce3;
  border-radius: 4px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #313040;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: none;
}

.service-pagination--client .page-numbers a:hover {
  border-color: #ff3d00 !important;
  color: #ff3d00 !important;
}

.service-pagination--client .page-numbers .current,
.service-pagination--client .page-numbers a.current {
  background: #ff3d00 !important;
  border-color: #ff3d00 !important;
  color: #fff;
}

.service-pagination--client .page-numbers .disabled {
  opacity: 0.4;
  cursor: default;
  color: #b8c0cb;
}

.services-archive__total {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
  color: #939ba3;
}

.services-archive__total-value {
  font-weight: 600;
  color: #111a30;
}

.services-archive__total-items {
  font-weight: 600;
  color: #111a30;
}

@media (min-width: 768px) {
  .services-archive__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .service-pagination--client {
    order: 1;
  }
  .services-archive__total {
    order: 2;
    align-items: flex-end;
    text-align: right;
  }
}
/* =======================================================================
   Service — Hero Card 
   ======================================================================= */
:root {
  --alfa-text: #313040;
  --alfa-primary: #00C6FF;
  --alfa-accent: #FF3D00;
}

.service-hero {
  padding-block: 40px;
  background: #fff;
}
.service-hero__grid {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  min-height: 420px;
}
.service-hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 630px;
  min-height: 420px;
  flex: 0 0 630px;
  color: var(--alfa-text);
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.service-hero__excerpt {
  display: block;
  width: 630px;
  color: var(--alfa-text);
  font-size: 16px;
  line-height: 160%;
}
.service-hero__excerpt p {
  margin: 0 0 20px;
  color: var(--alfa-text);
  font-size: 16px;
  line-height: 160%;
}
.service-hero__excerpt p:last-child {
  margin-bottom: 0;
}
.service-hero__title {
  width: 630px;
  margin: 0;
  font-weight: 600;
  font-size: 42px;
  line-height: 110%;
  color: var(--alfa-text);
  letter-spacing: 0;
}
.service-hero__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 320px;
  height: 50px;
}
.service-hero__btn {
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 150px;
  height: 50px;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.service-hero__btn:active {
  transform: translateY(1px);
}
.service-hero .btn--ghost {
  background: transparent;
  color: var(--alfa-accent);
  border: 1px solid var(--alfa-accent);
}
.service-hero .btn--primary {
  background: var(--alfa-primary);
  color: #fff;
  border: 1px solid var(--alfa-primary);
}
.service-hero__media {
  flex: 0 0 630px;
  width: 630px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.service-hero__media img,
.service-hero__media picture,
.service-hero__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.service-hero {
  /* ================== Адаптив ================== */
}
@media (max-width: 992px) {
  .service-hero__grid {
    flex-direction: column;
    gap: 18px;
    min-height: 0;
  }
  .service-hero__content, .service-hero__excerpt, .service-hero__title, .service-hero__media {
    width: 100%;
    max-width: 680px;
    flex: auto;
  }
  .service-hero__content {
    min-height: unset;
  }
  .service-hero__media {
    height: auto;
  }
  .service-hero__btns {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .service-hero__title {
    font-size: clamp(28px, 6vw, 36px);
  }
  .service-hero__excerpt {
    font-size: clamp(14px, 3.4vw, 16px);
  }
  .service-hero__btn {
    width: 100%;
  }
  .service-hero__btns {
    flex-wrap: wrap;
  }
}

/* Service — Intro box  */
.svc-intro__full {
  margin: 0 0 40px;
}

.svc-intro__full p {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #313040;
}

.svc-intro__full > * {
  margin: 0 0 16px;
}

.svc-intro__full > :last-child {
  margin-bottom: 0;
}

.svc-intro {
  padding-block: 0;
}
.svc-intro__grid {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 40px;
  background: #F1F4F8;
  border: 1px solid #D5DCE3;
  border-radius: 12px;
  color: #313040;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin-bottom: 60px;
}
.svc-intro__grid.has-aside {
  align-items: flex-start;
}
.svc-intro__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
}
.svc-intro__title {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 110%;
  color: #313040;
}
.svc-intro__text, .svc-intro__full {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #313040;
}
.svc-intro__text > * {
  margin: 0 0 16px;
}
.svc-intro__text > :last-child {
  margin-bottom: 0;
}
.svc-intro__text h1, .svc-intro__text h2, .svc-intro__text h3, .svc-intro__text h4, .svc-intro__text h5, .svc-intro__text h6 {
  margin: 16px 0;
  font-size: 18px;
  line-height: 140%;
  font-weight: 600;
  color: #313040;
}
.svc-intro__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 280px;
}
.svc-intro__aside-title {
  margin: 0 0 4px;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  text-transform: capitalize;
  color: #313040;
  margin-top: 16px;
}
.svc-intro__aside-text {
  font-size: 16px;
  line-height: 160%;
  color: #313040;
}
@media (max-width: 992px) {
  .svc-intro__grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .svc-intro__aside {
    min-width: 0;
  }
}
@media (max-width: 560px) {
  .svc-intro__title {
    font-size: clamp(22px, 6vw, 28px);
  }
  .svc-intro__text, .svc-intro__full {
    font-size: 15px;
  }
}

.svc-two-col__grid {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
}
.svc-two-col__media {
  width: 410px;
  height: 310px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 41/31;
}
.svc-two-col__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.svc-two-col__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  flex: 1 1 auto;
  min-width: 0;
}
.svc-two-col__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #313040;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  max-width: 410px;
}
.svc-two-col__title {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  text-transform: capitalize;
  color: #313040;
}
.svc-two-col__text > * {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 160%;
  color: #313040;
  font-weight: 400;
}
.svc-two-col__text > :last-child {
  margin-bottom: 0;
}
.svc-two-col__list {
  margin: 0;
  padding-left: 18px;
  font-size: 16px;
  font-weight: 400;
  color: #313040;
}
.svc-two-col__list li {
  margin-bottom: 8px;
  list-style: disc;
}
.svc-two-col__list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .svc-two-col__content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 920px) {
  .svc-two-col__grid {
    flex-direction: column;
  }
  .svc-two-col__media {
    width: 100% !important;
    height: auto !important;
  }
  .svc-two-col__content {
    grid-template-columns: 1fr;
  }
}

.svc-benefits__grid {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
}
.svc-benefits__col {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  width: 630px;
  background: #F1F4F8;
  border: 1px solid #D5DCE3;
  border-radius: 12px;
  color: #313040;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  flex: 1 1 0;
  min-width: 0;
}
.svc-benefits__heading {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 110%;
  color: #313040;
}
.svc-benefits__lead {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #313040;
}
.svc-benefits__lead > * {
  margin: 0 0 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #313040;
}
.svc-benefits__lead > :last-child {
  margin-bottom: 0;
}
.svc-benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.svc-benefits__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "icon title" "icon text";
  column-gap: 16px;
  row-gap: 6px;
  align-items: start;
}
.svc-benefits__item-icon {
  grid-area: icon;
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border-radius: 25px;
  display: inline-block;
  object-fit: contain;
}
.svc-benefits__item-title {
  grid-area: title;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #313040;
}
.svc-benefits__item-text {
  grid-area: text;
  margin: 0;
}
.svc-benefits__item-text > * {
  margin: 0 !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #313040;
}
@media (max-width: 992px) {
  .svc-benefits__grid {
    flex-direction: column;
  }
  .svc-benefits__col {
    width: 100%;
  }
}

.svc-two-col.svc-two-col--img-right .svc-two-col__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.svc-two-col.svc-two-col--img-right .svc-two-col__block {
  max-width: 630px;
}
.svc-two-col.svc-two-col--img-right .svc-two-col__media {
  width: 630px;
  height: 410px;
}

.svc-video {
  background: #F1F4F8;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  padding: 80px 0;
  text-align: center;
  color: #313040;
}
.svc-video__title {
  margin: 0 0 20px;
  font: 600 42px/110% "Poppins", system-ui;
  color: #313040;
}
.svc-video__lead {
  max-width: 900px;
  margin: 0 auto 40px;
}
.svc-video__lead p {
  font: 400 16px/160% "Poppins", system-ui;
  color: #313040;
}
.svc-video__frame {
  position: relative;
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  aspect-ratio: 1290/600;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-video__frame::before, .svc-video__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.svc-video__frame::before {
  background: rgba(24, 24, 24, 0.4);
}
.svc-video__frame::after {
  background: rgba(211, 44, 30, 0.1);
}
.svc-video__frame.is-playing::before, .svc-video__frame.is-playing::after {
  opacity: 0;
}
.svc-video__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-video__play {
  position: relative;
  z-index: 2;
  width: 130px;
  height: 130px;
  border: 0;
  border-radius: 50%;
  background: #FF3D00;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  transition: transform 0.18s ease;
}
.svc-video__play img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}
.svc-video__play:hover {
  transform: scale(1.06);
}
.svc-video__play:not(:has(img))::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 18px 28px;
  border-color: transparent transparent transparent #fff;
  margin-left: 6px;
}
.svc-video__embed {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.svc-video__embed iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  aspect-ratio: 16/9;
}
@media (max-width: 1200px) {
  .svc-video {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .svc-video {
    padding: 48px 0;
  }
  .svc-video__title {
    font-size: clamp(26px, 6vw, 32px);
  }
  .svc-video__lead {
    padding: 0 16px;
  }
  .svc-video__frame {
    border-radius: 10px;
  }
  .svc-video__play {
    width: 84px;
    height: 84px;
  }
  .svc-video__play:not(:has(img))::before {
    border-width: 12px 0 12px 20px;
    margin-left: 4px;
  }
}

.bestservice-card__heading {
  margin-top: 20px;
}

/* Bestseller cards */
.bestservice-block {
  padding: 80px 0 !important;
  background-color: transparent !important;
}
.bestservice-block__title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 140%;
  color: #27283d;
}

.bestservice-grid {
  margin-top: 48px;
}

.single-service-bestseller .bestservice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.single-service-bestseller .bestservice-grid > [class*=col-] {
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  .single-service-bestseller .bestservice-grid > [class*=col-] {
    flex: 0 0 calc(50% - 16px);
  }
}
.bestservice-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  background: transparent;
  border: none;
}
.bestservice-card__media {
  width: 100%;
  height: 350px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(24, 41, 78, 0.12);
}
.bestservice-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bestservice-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0;
  width: 100%;
}
.bestservice-card__heading {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  color: #313040;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bestservice-card__heading .post-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.bestservice-card__excerpt {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #647585;
}
.bestservice-card__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Buttons */
.bestservice-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 150px;
  padding: 0 16px;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  transition: all 0.2s ease;
}
.bestservice-card__btn--primary {
  border: 1px solid #ff3d00;
  background: transparent;
  color: #ff3d00;
}
.bestservice-card__btn--primary:hover {
  background: #ff3d00;
  color: #fff;
}
.bestservice-card__btn--secondary {
  border: 1px solid #00c6ff;
  background: #00c6ff;
  color: #fff;
}
.bestservice-card__btn--secondary:hover {
  background: #00aee6;
  border-color: #00aee6;
}

.bestservice-block {
  padding: 80px 0;
  background: #f2f6fb;
}
.bestservice-block__title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 140%;
  color: #313040;
}

.bestservice-grid {
  margin-top: 48px;
}

.bestservice-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0 0 24px;
  background: transparent;
  border: none;
}
.bestservice-card__media {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(35, 51, 79, 0.15);
}
.bestservice-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bestservice-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}
.bestservice-card__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bestservice-card__heading {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  color: #313040;
  text-transform: capitalize;
}
.bestservice-card__excerpt {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 160%;
  color: #647585;
  text-align: justify;
}
.bestservice-card__actions {
  display: flex;
  gap: 20px;
  margin-top: auto;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.bestservice-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 50px;
  padding: 0 16px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 160%;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.bestservice-card__btn--outline {
  border: 1px solid #ff3d00;
  color: #ff3d00;
  background: transparent;
}
.bestservice-card__btn--outline:hover {
  background: #ff3d00;
  color: #fff;
}
.bestservice-card__btn--filled {
  border: 1px solid #00c6ff;
  background: #00c6ff;
  color: #fff;
}
.bestservice-card__btn--filled:hover {
  background: #00aee6;
  border-color: #00aee6;
}

.bestservice-block__more {
  margin-top: 48px;
}
.bestservice-block__more-link {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f2336;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bestservice-block__more-link:hover {
  color: #00c6ff;
}

@media (max-width: 991.98px) {
  .bestservice-card__media {
    height: 280px;
  }
}
@media (max-width: 575.98px) {
  .bestservice-card__media {
    height: 220px;
  }
  .bestservice-card__actions {
    flex-direction: column;
    width: 100%;
  }
  .bestservice-card__actions .bestservice-card__btn {
    width: 100%;
  }
}
.feature-page {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
@media screen and (max-width: 991px) {
  .feature-page {
    gap: 48px;
  }
}

.feature-hero {
  position: relative;
  padding: clamp(100px, 11vw, 140px) 40px;
  min-height: 600px;
  background-color: #ff532c;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .feature-hero {
    padding: 50px 20px;
  }
}
.feature-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 83, 44, 0.9) 0%, rgba(211, 44, 30, 0.9) 100%);
  opacity: 0.9;
  pointer-events: none;
}
.feature-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.feature-hero h1 {
  font-size: clamp(3rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #fff;
}
.feature-hero h2,
.feature-hero .subtitle {
  font-family: "Nunito Sans", "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 4px;
}
.feature-hero p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 0;
  color: #fff;
}
.feature-hero__text {
  margin-bottom: 20px;
  max-width: 760px;
}
.feature-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.feature-hero__actions .btn {
  min-width: 150px;
  height: 50px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  border-radius: 6px;
}
.feature-hero__actions .btn-outline {
  background-color: #00c6ff;
  border-color: #00c6ff;
  color: #fff;
}
.feature-hero__actions .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.feature-hero__actions .btn-primary {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}

.feature-highlight,
.feature-grid {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (max-width: 740px) {
  .feature-highlight,
  .feature-grid {
    max-width: 100%;
  }
}
.feature-highlight__inner,
.feature-grid__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .feature-highlight__inner,
  .feature-grid__inner {
    grid-template-columns: 1fr;
  }
}

.feature-highlight__contact {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature-highlight__contact .btn {
  min-width: 160px;
  height: 44px;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}
@media screen and (max-width: 767px) {
  .feature-highlight__contact .btn {
    min-width: 150px;
  }
}
.feature-highlight__contact .btn-outline {
  border: 1px solid #ff3d00;
  color: #ff3d00;
  background: transparent;
}
.feature-highlight__contact .btn-primary {
  background: #00c6ff;
  border: 1px solid #00c6ff;
  color: #fff;
}

.feature-grid__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.feature-grid__cta .btn {
  min-width: 200px;
  height: 42px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 740px) {
  .feature-grid__cta .btn {
    min-width: 50px;
  }
}
.feature-grid__cta .btn-outline {
  border: 1px solid #FF3D00;
  color: #FF3D00;
  background: transparent;
}
.feature-grid__cta .btn-primary {
  background: #00C6FF;
  border: 1px solid #00C6FF;
  color: #fff;
}

.feature-card {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}
.feature-card__link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.feature-card__image {
  position: relative;
  padding-top: 55%;
}
.feature-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card__body {
  padding: 12px 0 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 575px) {
  .feature-card__body {
    padding: 16px 0;
  }
}
.feature-card__head {
  width: 100%;
}
.feature-card__head h3 {
  font-size: 24px;
  margin: 0 0 12px;
  color: #313040;
}
.feature-card__subtitle {
  color: #2ab4d0;
  font-weight: 600;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.feature-card p {
  margin: 0;
  width: 100%;
  max-width: none;
  font-size: 16px;
  line-height: 1.5;
  color: #647585;
  float: none;
  text-align: justify;
}
.feature-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}
.feature-card .btn-link {
  padding-left: 0;
}

.feature-card--hidden {
  display: none;
}

.feature-highlight {
  display: grid;
  grid-template-columns: minmax(280px, 630px) 1fr;
  grid-template-rows: auto auto;
  gap: 32px;
  align-items: start;
}
@media screen and (max-width: 991px) {
  .feature-highlight {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}
.feature-highlight .feature-card {
  display: contents;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.feature-highlight .feature-card__link {
  display: contents;
}
.feature-highlight .feature-card__image {
  padding-top: 0;
  grid-column: 1/2;
  grid-row: 1/2;
}
.feature-highlight .feature-card__image img {
  position: static;
  display: block;
  width: 100%;
  max-width: 630px;
  aspect-ratio: 3/2;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 991px) {
  .feature-highlight .feature-card__image {
    grid-row: 1/2;
  }
}
.feature-highlight .feature-card__body {
  grid-column: 2/3;
  grid-row: 1/2;
  padding: 0;
  gap: 16px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  .feature-highlight .feature-card__body {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.feature-highlight .feature-card__head h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 42px;
}
@media screen and (max-width: 767px) {
  .feature-highlight .feature-card__head h3 {
    font-size: 28px;
  }
}
.feature-highlight .feature-card__head p {
  font-family: "Poppins", sans-serif;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  color: #272645;
}
.feature-highlight .feature-highlight__contact {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  justify-content: flex-start;
  align-self: flex-start;
}
@media screen and (max-width: 767px) {
  .feature-highlight .feature-highlight__contact {
    align-self: center;
  }
}

.feature-grid__cta {
  justify-content: center;
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.feature-video {
  text-align: center;
  background: #f6f8fd;
  padding: clamp(48px, 10vw, 96px) 16px;
}
.feature-video__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feature-video h2 {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 12px;
  text-align: center;
  color: #313040;
}
.feature-video p {
  color: #272645;
  font-size: 16px;
  margin: 0 0 18px;
  font-family: "Poppins", sans-serif;
}
.feature-video__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 31, 51, 0.18);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.feature-video__frame::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.feature-video__frame .feature-video__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.feature-video__frame iframe,
.feature-video__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-video__play {
  position: absolute;
  inset: 0;
  border: 0;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.feature-video__play::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.feature-video__play img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.feature-video__play::before {
  content: "";
  position: relative;
  z-index: 3;
  display: inline-block;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #ff3d00 url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.5 5.5L17.5 12L8.5 18.5V5.5Z' fill='white'/%3E%3C/svg%3E") center center no-repeat;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.feature-benefit {
  position: relative;
  min-height: 480px;
  padding: clamp(48px, 7vw, 96px) 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 31, 51, 0.15);
}
.feature-benefit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ff532c 0%, #d32c1e 100%);
  opacity: 0.9;
}

.feature-benefit__content {
  position: relative;
  z-index: 1;
  width: min(974px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  color: #fff;
}

.feature-benefit__content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(42px, 4vw, 55px);
  line-height: 1;
  margin: 0;
  color: #fff;
}

.feature-benefit__content p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #FFD9D9;
  margin: 0;
}

.feature-benefit__content .btn {
  width: 200px;
  height: 50px;
  padding: 0 16px;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #00C6FF;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #FFFFFF;
  flex: none;
  order: 2;
  flex-grow: 0;
  border-color: #00C6FF;
}

.feature-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.feature-modal.feature-modal--open {
  display: flex;
}
.feature-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.feature-modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #132f4a;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(15, 31, 51, 0.15);
  padding: 36px;
  width: min(1360px, 96vw);
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .feature-modal__dialog {
    padding: 28px;
    width: 94vw;
  }
}
@media screen and (max-width: 768px) {
  .feature-modal__dialog {
    padding: 16px;
    max-height: 92vh;
  }
}
.feature-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: inherit;
  cursor: pointer;
}
.feature-modal__dialog {
  max-width: 1260px;
}
.feature-modal__content {
  max-height: 80vh;
  overflow: visible;
  padding-right: 0;
}
.feature-modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .feature-modal__body {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.feature-modal__header {
  margin-bottom: 12px;
}
.feature-modal__header h3 {
  margin: 0 0 4px;
  color: #132f4a;
}
.feature-modal__title {
  margin-bottom: 12px;
}
.feature-modal__title h3 {
  margin: 0;
  color: #132f4a;
}
.feature-modal__media {
  display: flex;
  justify-content: center;
}
.feature-modal__media img {
  display: block;
  width: 100%;
  height: 520px;
  border-radius: 10px;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .feature-modal__media img {
    height: 440px;
  }
}
@media screen and (max-width: 768px) {
  .feature-modal__media img {
    height: 200px;
  }
}
.feature-modal__text {
  color: #132f4a;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .feature-modal__text {
    min-height: 100%;
  }
}
.feature-modal__copy {
  max-height: 46vh;
  overflow-y: auto;
  padding: 0 12px 12px 0;
  flex: 1 1 auto;
}
@media screen and (max-width: 768px) {
  .feature-modal__copy {
    max-height: 33vh;
    padding-bottom: 80px;
  }
}
.feature-modal__copy h3 {
  margin-bottom: 16px;
}
.feature-modal__copy p:last-child {
  margin-bottom: 0;
}
.feature-modal__copy::-webkit-scrollbar {
  width: 8px;
}
.feature-modal__copy::-webkit-scrollbar-track {
  background: #e6eaee;
  border-radius: 4px;
}
.feature-modal__copy::-webkit-scrollbar-thumb {
  background: #ff532c;
  border-radius: 4px;
}
.feature-modal__subtitle {
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 18px;
  color: #313040;
}
.feature-modal__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .feature-modal__cta-group {
    position: sticky;
    bottom: 0;
    background: transparent;
    padding: 10px 12px 8px;
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .feature-modal__cta-group {
    position: sticky;
    bottom: 0;
    padding: 12px 0 8px;
  }
}
.feature-modal__cta-inline {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  min-width: 200px;
  height: 50px;
  background-color: #00c6ff !important;
  border: 0;
  border-color: #00c6ff !important;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(15, 31, 51, 0.12);
}
@media screen and (max-width: 768px) {
  .feature-modal__cta-inline {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 16px;
    min-width: 100%;
    height: 50px;
    background-color: #00c6ff !important;
    border: 0;
    border-color: #00c6ff !important;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
  }
}

body.modal-open {
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
}

.shop-products ul.products {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-products ul.products li.product {
  padding: 0;
  margin: 0;
  background: none;
  float: none !important;
  width: 100% !important;
  display: block;
  border: none;
  background-color: transparent;
}

.shop-products .products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 0;
}
.shop-products .products::before, .shop-products .products::after {
  display: none;
  content: none;
}
.shop-products .products > li {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .shop-products .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 640px) {
  .shop-products .products {
    grid-template-columns: 1fr;
  }
}

.shop-card {
  border: 1px solid #d5dce3;
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  height: 100%;
}

.shop-card__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 100%;
}

.shop-card__media {
  display: block;
  width: 100%;
  border: 1px solid #d5dce3;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 300/288;
}
.shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.shop-card__media:hover img {
  transform: scale(1.03);
}

.shop-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: "Poppins", sans-serif;
  flex: 1 1 auto;
  text-align: left;
}

.shop-card__brand {
  font-size: 16px;
  line-height: 1.6;
  color: #6c757d;
  text-transform: uppercase;
}

.shop-card__title {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  color: #313040;
  text-decoration: none;
  display: block;
}
.shop-card__title:hover {
  color: #00c6ff;
}

.shop-card__price {
  font-size: 16px;
  color: #313040;
  display: flex;
  align-items: center;
  gap: 12px;
}
.shop-card__price del {
  font-size: 14px;
  color: #939ba3;
}
.shop-card__price ins {
  text-decoration: none;
}

.shop-card__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}

.shop-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  min-width: 120px;
}
.shop-card__btn--outline {
  border: 1px solid #ff3d00;
  color: #ff3d00;
  background: transparent;
}
.shop-card__btn--outline:hover {
  background: rgba(255, 61, 0, 0.08);
}
.shop-card__btn--filled {
  background: #00c6ff;
  color: #fff;
  border: 1px solid #00c6ff;
}
.shop-card__btn--filled:hover {
  background: #00a5d5;
  border-color: #00a5d5;
}

.woocommerce-pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 30px 0;
}

body.woocommerce nav.woocommerce-pagination {
  margin: 40px 0 0;
  display: flex;
  justify-content: flex-start;
}

body.woocommerce nav.woocommerce-pagination ul.page-numbers {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

body.woocommerce nav.woocommerce-pagination ul.page-numbers li {
  box-sizing: border-box;
}

body .woocommerce-pagination a.page-numbers,
body .woocommerce-pagination span.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 6px 16px;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #D5DCE3;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #939BA3;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.woocommerce nav.woocommerce-pagination ul.page-numbers li + li a.page-numbers,
body.woocommerce nav.woocommerce-pagination ul.page-numbers li + li span.page-numbers {
  margin-left: -1px;
}

body .woocommerce-pagination span.page-numbers.current {
  background: #FF3D00 !important;
  border-color: #FF3D00 !important;
  color: #FFFFFF !important;
}

body .woocommerce-pagination a.page-numbers:not(.current):hover {
  border-color: #FF3D00;
  color: #FF3D00;
}

body .woocommerce-pagination span.page-numbers.dots {
  border-color: #D5DCE3;
  background: #FFFFFF;
  color: #939BA3;
  cursor: default;
}

body .woocommerce-pagination a.page-numbers.prev,
body .woocommerce-pagination a.page-numbers.next {
  font-size: 18px;
}

.woocommerce-pagination .page-numbers .next,
.woocommerce-pagination .page-numbers .prev {
  background: none;
  color: #d5dce3;
  font-size: 16px;
  border: none;
}

.woocommerce-pagination .page-numbers .dots {
  background: none;
  color: #d5dce3;
  font-weight: bold;
}

body.woocommerce div.product form.cart {
  margin-top: 30px;
}

.single_add_to_cart_button {
  background-color: #34a853 !important;
  font-size: 24px;
  padding: 18px 30px !important;
  font-weight: 500;
}

body.woocommerce .woocommerce-breadcrumb {
  margin-top: 15px;
}

.single-product-breadcrumbs {
  margin-bottom: 24px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #939BA3;
  margin-top: 24px;
}
.single-product-breadcrumbs nav.breadcrumb {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 2px;
  background-color: transparent;
}
.single-product-breadcrumbs a,
.single-product-breadcrumbs span {
  display: inline-flex;
  align-items: center;
  height: 20px;
  color: inherit;
  text-decoration: none;
  font-weight: 400;
}
.single-product-breadcrumbs a:hover {
  color: #00c6ff;
}
.single-product-breadcrumbs nav.breadcrumb > :last-child {
  font-weight: 500;
  color: #313040;
  pointer-events: none;
}
.single-product-breadcrumbs .sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  padding: 0;
}
.single-product-breadcrumbs .sep::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #939BA3;
  border-bottom: 1.5px solid #939BA3;
  transform: rotate(-45deg);
}
.single-product-breadcrumbs .sep {
  font-size: 0;
}

.woocommerce-product-details__short-description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0;
  font-weight: 400;
  color: #313040;
  margin: 0;
  padding: 0;
}

.related.products > h2 {
  text-align: center;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 110%;
  color: #313040;
  margin-bottom: 32px;
}

.single-product__category {
  font-size: 16px;
  font-weight: 600;
  color: #6C757D;
  margin-bottom: 12px;
  margin-top: 12px;
}
.single-product__category span {
  text-transform: uppercase;
  font-weight: 600;
  color: #6C757D;
  margin-left: 4px;
}

.single-product-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 24px;
  font-size: 14px;
  color: #7a8694;
}

.single-product-share__icons {
  display: flex;
  gap: 10px;
}

.single-product-share__icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eef1f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7a8694;
  transition: background 0.2s ease, color 0.2s ease;
}

.single-product-share__icons a:hover {
  background: #00c6ff;
  color: #fff;
}

.single-product .product .product_title {
  font-size: 42px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #132f4a;
  line-height: 1.2;
}

.single-product .product .price {
  font-family: "Poppins", sans-serif;
  font-size: 18px !important;
  font-weight: 600;
  line-height: 1.4;
  color: #313040 !important;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 16px 0 20px;
}

.single-product .woocommerce-tabs {
  margin-top: 48px;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
  overflow: visible !important;
  position: relative;
}
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none !important;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  text-align: center;
}
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .single-product.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.active,
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  background: #f1f4f8 !important;
  color: #313040 !important;
  text-align: center;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-width: 1px 1px 0 1px !important;
  border-style: solid !important;
  border-color: #D5DCE3 !important;
}

.single-product .woocommerce-tabs ul.tabs {
  padding: 0 !important;
  margin: 0 !important;
  border: none;
  overflow: visible;
  background: none;
  position: relative;
}
.single-product .woocommerce-tabs ul.tabs::before {
  display: none;
}

.single-product .woocommerce-tabs ul.tabs li {
  border: none;
}
.single-product .woocommerce-tabs ul.tabs li::before, .single-product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.single-product .tabs.wc-tabs {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 0;
  max-width: fit-content;
  position: relative;
  border-left: 1px solid #F1F4F8;
  border-right: 1px solid #F1F4F8;
}
.single-product .tabs.wc-tabs::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d5dce3;
  z-index: 0;
}

.single-product .tabs.wc-tabs li {
  margin: 0;
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #d5dce3;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  min-width: 120px;
}
.single-product .tabs.wc-tabs li:not(:first-child) {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .single-product .tabs.wc-tabs li {
    min-width: 80px;
  }
}

.single-product .tabs.wc-tabs li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #939ba3;
  background: transparent;
  border: none;
  text-transform: none;
}
@media (max-width: 992px) {
  .single-product .tabs.wc-tabs li a {
    font-size: 12px;
  }
}

.single-product .tabs.wc-tabs li.active,
.single-product .tabs.wc-tabs li:hover {
  background: #f1f4f8;
  border-color: #d5dce3;
}

.single-product .tabs.wc-tabs li.active a,
.single-product .tabs.wc-tabs li:hover a {
  color: #313040;
}

.single-product .woocommerce-Tabs-panel {
  background: #f1f4f8;
  border: 1px solid #d5dce3;
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 40px !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 992px) {
  .single-product .woocommerce-Tabs-panel {
    padding: 24px !important;
    text-align: justify;
  }
}

.single-product .woocommerce-Tabs-panel h2 {
  display: none;
}

.single-product .woocommerce-Tabs-panel p {
  font-size: 16px;
  line-height: 1.6;
  color: #313040;
  margin: 0;
}

.single-product .woocommerce-Tabs-panel p + p {
  margin-top: 0;
}

.single-product .woocommerce-Tabs-panel img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.single-product .woocommerce-Tabs-panel p img {
  display: inline-block;
  width: calc(50% - 15px);
  margin: 0;
}
@media (max-width: 992px) {
  .single-product .woocommerce-Tabs-panel p img {
    width: 100%;
    margin: 10px 0;
  }
}

.single-product .woocommerce-Tabs-panel p img:first-child:last-child {
  width: 100%;
}

.single-product .woocommerce-Tabs-panel p img:not(:last-child) {
  margin-right: 30px;
}

.single-product .summary .js-cf7-popup-btn {
  display: inline-flex;
  font-family: "Poppins", sans-serif;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 50px;
  padding: 0 16px;
  border-radius: 8px;
  background: #00c6ff;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 24px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.single-product .summary .js-cf7-popup-btn:hover {
  background: #009dd1;
  color: #fff;
}

.single-product .product {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .single-product .product {
    flex-direction: column;
  }
}

.single-product .product .product-gallery {
  flex: 1 1 55%;
  max-width: 620px;
  width: 100%;
}
@media (max-width: 992px) {
  .single-product .product .product-gallery {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

.single-product .product .summary {
  flex: 1 1 40%;
  max-width: 100%;
}
@media (max-width: 992px) {
  .single-product .product .summary {
    max-width: 100%;
    flex: 1 1 100%;
    margin-top: 8px;
  }
}

.product-gallery {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .product-gallery {
    flex-direction: column;
    gap: 16px;
  }
}

.product-gallery__thumbs {
  flex: 0 0 110px;
  max-width: 110px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  max-height: 520px;
}
@media (max-width: 768px) {
  .product-gallery__thumbs {
    order: 2;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
    overflow-y: visible;
    justify-content: center;
    max-height: none;
  }
}

.product-gallery__thumb {
  border: 1px solid #d5dce3;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.product-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-gallery__thumb.is-active {
  border-color: #00c6ff;
  box-shadow: 0 0 0 2px rgba(0, 198, 255, 0.2);
}
@media (max-width: 768px) {
  .product-gallery__thumb {
    flex: 0 0 calc(25% - 12px);
    min-height: 80px;
  }
  .product-gallery__thumb:nth-child(n) {
    width: calc(25% - 12px);
  }
}
@media (max-width: 480px) {
  .product-gallery__thumb {
    flex: 0 0 calc(33.333% - 10px);
    width: calc(33.333% - 10px);
    min-height: 70px;
  }
}

.product-gallery__main {
  flex: 1 1 auto;
  border: 1px solid #d5dce3;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .product-gallery__main {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .product-gallery__main {
    order: 1;
  }
}
.product-gallery__main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery--single img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/*------------------------------------------------------------------
        File Name: responsive.css
        Template Name: auricle
-------------------------------------------------------------------*/
@media (min-width: 1200px) and (max-width: 1390px) {
  /** ecommere style 2 **/
  .header_style_ecomm2 .header_top .float-left,
  .header_style_ecomm2 .header_top .float-right {
    width: 100%;
  }
  .header_style_ecomm2 .header_top .float-left ul,
  .header_style_ecomm2 .header_top .float-right ul {
    display: flex;
    justify-content: center;
    margin: 4px 0;
  }
  .header_style_ecomm2 .header_top li {
    font-size: 13px;
  }
  .header_style_ecomm2 .main_menu div.menu ul li a {
    font-size: 12px;
    padding: 15px 8px;
  }
  .right_cart_section ul li {
    margin-right: 20px;
  }
  .right_cart_section ul li i {
    margin-right: 5px;
    margin-top: 0px;
    float: left;
    color: #000;
    font-size: 21px;
  }
  .search_style_2 .top_search_bar button.submit_search {
    width: 110px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .body {
    overflow-x: hidden;
  }
  .container {
    width: 100%;
    max-width: 990px;
  }
  .slide_cont h2 {
    font-size: 45px;
    line-height: 60px;
  }
  .cont_theme_blog h3 {
    font-size: 42px;
    line-height: 60px;
    font-weight: 600;
  }
  .home_page1 .slide_cont {
    margin-top: 145px;
  }
  .layout_screen {
    left: 0;
    width: 140%;
  }
  .padding_inner {
    padding-top: 0;
    padding-bottom: 0;
  }
  .layout_pur_minus {
    margin-bottom: 0;
  }
  .layout_padding {
    margin: 0 !important;
  }
  .bt_main {
    height: 48px;
    padding: 0 25px;
  }
  .team_member_img img {
    width: 100%;
  }
  .footer_icon img {
    width: 50px;
  }
  /** side bar **/
  .toggle_side_bar {
    display: block;
  }
  .sidenav {
    height: 100%;
    width: 0;
  }
  .sidebar_page {
    margin-left: 0;
  }
  .sidenav .closebtn {
    display: block;
  }
  /** home pages **/
  .header .social_icons {
    border-top: none;
    padding-top: 0;
  }
  .target_section {
    padding: 50px;
    margin-top: 20px;
    margin-bottom: 45px;
  }
  .slide_banner4 h2 strong {
    font-size: 62px;
    top: 10px;
  }
  .service_blog1 {
    padding: 50px 10px;
    margin: 15px 0;
  }
  .contact_form {
    padding: 55px 15px;
  }
  .blog_section.style_2 .blog_head {
    font-size: 20px;
    line-height: 28px;
  }
  .header.header_style4.header_left_side .main_menu {
    float: right !important;
  }
  .header_bottom .main_menu {
    padding: 1px;
  }
  .header_style5 div.menu > ul > li > a {
    padding: 10px 18px;
  }
  .header_information .right_head {
    display: none;
  }
  .logo img {
    width: 190px;
    margin: 0;
  }
  .service_info_sec {
    margin-top: 40px;
    position: relative;
    margin-bottom: -30px;
  }
  section .small_head h2 {
    font-size: 25px;
  }
  .bt_main {
    font-size: 13px;
  }
  .service_blog2 {
    padding: 35px 0;
    margin: 15px 0;
  }
  .slide_banner10 .slider_information ul li {
    width: 100%;
  }
  .play_pause_control ul {
    padding-left: 30px;
  }
  .play_pause_bt ul {
    display: flex;
  }
  .audio_and_video_version .span2 {
    width: 33.33%;
  }
  .slide_banner12 {
    background-size: cover;
  }
  section.slide_banner12 .slide_cont {
    margin-top: 120px;
  }
  .slide_banner12 .slide_cont h3 {
    font-size: 65px;
  }
  .team_blog_style_cheif .team_member_img img {
    width: auto;
  }
  .team_blog_style_cheif .owl-nav .owl-prev {
    left: 0;
  }
  .team_blog_style_cheif .owl-nav .owl-next {
    right: 0;
  }
  .slide_banner15.banner_parallax h2 {
    font-size: 42px;
    line-height: 40px;
  }
  .home_page15 section.layout_padding_2.horizontal_cross_layout {
    margin-bottom: 0;
  }
  .slide_banner16 .slide_cont h2 {
    font-size: 40px;
  }
  .slide_cont {
    margin-top: 200px;
  }
  .slide_banner16 {
    min-height: 720px;
    max-height: inherit;
  }
  .header.header_style17 .header_top.top_imform {
    display: none;
  }
  .home_page17 .heading_style_3 h2 {
    font-size: 30px;
  }
  .dentist_imfor_ser .cont_list p {
    display: none;
  }
  .dentis_team_blog .team_member_img img {
    width: auto;
  }
  .inform_dentist_botm p {
    text-align: center;
  }
  .slide_bottom_icon li {
    margin: 0 5px 10px;
  }
  .doctor_ser h3 {
    font-size: 15px;
  }
  .sidebar_menu {
    float: right;
    padding: 14px 0 0;
  }
  .header_style_ecomm2 .header_top .float-left,
  .header_style_ecomm2 .header_top .float-right {
    width: 100%;
  }
  .header_style_ecomm2 .header_top .float-left ul,
  .header_style_ecomm2 .header_top .float-right ul {
    display: flex;
    justify-content: center;
    margin: 3px 0;
  }
  .header_style_ecomm2 .header_top li {
    font-size: 12px;
  }
  .search_style_2 {
    float: left;
    width: 100%;
    margin: 20px 0;
  }
  .right_cart_section {
    display: none;
  }
  .header_style_ecomm2 .main_menu div.menu ul li a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    padding: 15px 2px;
  }
  .header_style_ecomm2 .sidebar_menu a {
    background: #2ea6ff;
    width: 36px;
    float: right;
    height: 36px;
    border-radius: 0;
    text-align: center;
    padding: 5px 4px;
    margin: 12px 0 0;
  }
  .blue_layer_image2 h2,
  .blue_layer_image h2 {
    font-size: 30px;
    line-height: 55px;
    letter-spacing: -1px;
    margin-top: 25px;
  }
  .newslatterform form {
    width: 100%;
  }
  .header_style_ecomr3 .menu {
    width: auto;
    margin: 8px 0;
    float: left;
  }
  .header.header_style_ecomr3 .menu > ul > li > a {
    padding: 7px 24px;
  }
  .header.header_style_ecomr3 .header_top.top_imform {
    display: none;
  }
  .light_red .header.header_style_ecomr3 .menu > ul > li > a {
    color: #222;
  }
  .home_page24 .with_search_bar .menu {
    width: auto;
    margin: 9px 9px 0;
    float: left;
  }
  .skyblue .portfolio img {
    width: auto;
  }
  .effect_2 {
    margin-bottom: 30px;
  }
  .brand_logo_section li {
    width: 33.33%;
  }
  .header_funky_style a.menu-mobile {
    margin: 10px;
  }
  .infor_head li {
    margin: 8px 10px;
  }
  .slide_banner25 .slide_cont h2 {
    font-size: 45px;
  }
  .bottom_service_temp_inner {
    margin-top: 50px;
  }
  .slide_banner25 .inner_slide {
    float: right;
    margin: 60px 0 0;
  }
  .bottom_service_temp_inner h4 {
    font-size: 16px;
  }
  .header.header_funky_style .menu > ul > li > a {
    font-size: 14px;
    padding: 7px 20px;
  }
  .header_style26 .menu {
    width: auto;
    margin: 8px 0 0;
    float: left;
  }
  .inform_ser_blogs_3 ul li {
    width: 50%;
  }
  .header_style_ecomm .menu > ul > li > a {
    font-size: 11px;
    padding: 17px 9px;
    font-weight: 600;
  }
  .top_search_bar .field input {
    font-size: 12px;
  }
  /** home page 13 **/
  .header.header_style13 .menu > ul > li > a {
    font-size: 13px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .logo.desk_logo {
    margin: 10px 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 750px;
    width: 100%;
  }
  .slide_cont h2 {
    font-size: 35px;
    line-height: 40px;
  }
  .home_page1 .slide_cont {
    margin-top: 158px;
  }
  .layout_padding {
    padding: 80px 0 75px;
  }
  .layout_screen {
    left: -90px;
    position: relative;
    width: 180%;
  }
  .padding_inner {
    padding-top: 0;
    padding-bottom: 0;
  }
  .layout_pur_minus {
    margin-bottom: 0;
  }
  .layout_padding {
    padding: 80px 0 75px;
    margin: 0 !important;
  }
  .table_price_per p {
    font-size: 40px;
    font-weight: 300;
  }
  .team_member_img img {
    width: 100%;
  }
  /**** home page 2 add custom with arrange ****/
  .margin_bottom_30 {
    margin-bottom: 30px;
  }
  .team_blog {
    margin-bottom: 30px;
  }
  .target_section .feature_icon {
    margin-top: 25px;
  }
  .header .social_icons {
    width: 100%;
    justify-content: center;
    display: flex;
    border-top: solid rgba(255, 255, 255, 0.1) 1px;
    padding-top: 15px;
  }
  /** side bar **/
  .toggle_side_bar {
    display: block;
  }
  .sidenav {
    height: 100%;
    width: 0;
  }
  .sidebar_page {
    margin-left: 0;
  }
  .sidenav .closebtn {
    display: block;
  }
  /** home pages **/
  .header .social_icons {
    border-top: none;
    padding-top: 0;
  }
  .target_section {
    padding: 50px;
    margin-top: 20px;
    margin-bottom: 45px;
  }
  .slide_banner4 h2 strong {
    font-size: 62px;
    top: 10px;
  }
  .service_blog1 {
    padding: 50px 10px;
    margin: 15px 0;
  }
  .contact_form {
    padding: 55px 15px;
  }
  .blog_section.style_2 .blog_head {
    font-size: 20px;
    line-height: 28px;
  }
  .header.header_style4.header_left_side .main_menu {
    float: right !important;
  }
  .header_bottom .main_menu {
    padding: 1px;
  }
  .header_style5 div.menu > ul > li > a {
    padding: 10px 18px;
  }
  .header_information .right_head {
    display: none;
  }
  .service_info_sec {
    margin-top: 40px;
    position: relative;
    margin-bottom: -30px;
  }
  section .small_head h2 {
    font-size: 25px;
  }
  .bt_main {
    font-size: 13px;
  }
  .service_blog2 {
    padding: 35px 0;
    margin: 15px 0;
  }
  .slide_banner10 .slider_information ul li {
    width: 100%;
  }
  .play_pause_control ul {
    padding-left: 30px;
  }
  .play_pause_bt ul {
    display: flex;
  }
  .audio_and_video_version .span2 {
    width: 33.33%;
  }
  .slide_banner12 {
    background-size: cover;
  }
  section.slide_banner12 .slide_cont {
    margin-top: 120px;
  }
  .slide_banner12 .slide_cont h3 {
    font-size: 65px;
  }
  .team_blog_style_cheif .team_member_img img {
    width: auto;
  }
  .team_blog_style_cheif .owl-nav .owl-prev {
    left: 0;
  }
  .team_blog_style_cheif .owl-nav .owl-next {
    right: 0;
  }
  .slide_banner15.banner_parallax h2 {
    font-size: 42px;
    line-height: 40px;
  }
  .home_page15 section.layout_padding_2.horizontal_cross_layout {
    margin-bottom: 0;
  }
  .slide_banner16 .slide_cont h2 {
    font-size: 40px;
  }
  .slide_cont {
    margin-top: 100px;
  }
  .slide_banner16 {
    min-height: 720px;
    max-height: inherit;
  }
  .header.header_style17 .header_top.top_imform {
    display: none;
  }
  .home_page17 .heading_style_3 h2 {
    font-size: 30px;
  }
  .dentist_imfor_ser .cont_list p {
    display: none;
  }
  .dentis_team_blog .team_member_img img {
    width: auto;
  }
  .inform_dentist_botm p {
    text-align: center;
  }
  .slide_bottom_icon li {
    margin: 0 5px 10px;
  }
  .doctor_ser h3 {
    font-size: 15px;
  }
  .sidebar_menu {
    float: right;
    padding: 14px 0 0;
  }
  .header.header_style_ecomm2 .header_top {
    display: none;
  }
  .search_style_2 {
    float: left;
    width: 100%;
    margin: 20px 0;
  }
  .right_cart_section {
    position: absolute;
    top: -152px;
  }
  .header_bottom_thirth {
    display: none;
  }
  .header_style_ecomm2 .sidebar_menu a {
    background: #0163d2;
    width: 36px;
    float: right;
    height: 36px;
    border-radius: 0;
    text-align: center;
    padding: 5px 4px;
    margin: 12px 0 0;
  }
  .blue_layer_image2 h2,
  .blue_layer_image h2 {
    font-size: 30px;
    line-height: 55px;
    letter-spacing: -1px;
    margin-top: 25px;
  }
  .newslatterform form {
    width: 100%;
  }
  .header_style_ecomr3 .menu {
    width: auto;
    margin: 8px 0;
    float: left;
  }
  .header.header_style_ecomr3 .menu > ul > li > a {
    padding: 7px 24px;
  }
  .header.header_style_ecomr3 .header_top.top_imform {
    display: none;
  }
  .light_red .header.header_style_ecomr3 .menu > ul > li > a {
    color: #222;
  }
  .home_page24 .with_search_bar .menu {
    width: auto;
    margin: 9px 9px 0;
    float: left;
  }
  .skyblue .portfolio img {
    width: auto;
  }
  .effect_2 {
    margin-bottom: 30px;
  }
  .brand_logo_section li {
    width: 33.33%;
  }
  .header_funky_style a.menu-mobile {
    margin: 10px;
  }
  .infor_head li {
    margin: 8px 10px;
  }
  .slide_banner25 .slide_cont h2 {
    font-size: 45px;
  }
  .bottom_service_temp_inner {
    margin-top: 50px;
  }
  .slide_banner25 .inner_slide {
    float: right;
    margin: 60px 0 0;
  }
  .bottom_service_temp_inner h4 {
    font-size: 16px;
  }
  .header.header_funky_style .menu > ul > li > a {
    font-size: 14px;
    padding: 7px 20px;
  }
  .header_style26 .menu {
    width: auto;
    margin: 8px 0 0;
    float: left;
  }
  .inform_ser_blogs_3 ul li {
    width: 50%;
  }
  /* responsive menu */
  .header_style26 .menu > ul > li > a {
    padding: 7px 25px;
  }
  .cake_club .menu-mobile::after {
    top: 4px;
  }
  .cake_club .menu > ul > li a {
    font-size: 13px;
    margin: 0;
  }
  .menu-dropdown-icon::before {
    padding: 13px 15px 13px;
  }
  .header.header_style14 .header_top {
    display: none;
  }
  .header_style14 .logo {
    top: 0;
  }
  .header_style14 .logo img {
    height: 85px;
  }
  .header.header_style14 .main_menu {
    width: 100%;
    padding-left: 200px;
    margin: 35px 0 0;
  }
  .header.header_style14 .main_menu > .menu > ul > li > a {
    color: #222;
  }
  .home_page14 .main_menu .clearfix {
    top: 65px;
  }
  .home_page14 .menu-dropdown-icon::before {
    padding: 16px 15px 16px;
  }
  .slide_banner19 {
    min-height: 380px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  /** home page 13 **/
  .banner_parallax.slide_banner13 .slide_cont h2 {
    font-size: 50px;
    line-height: 58px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .information_icon {
    margin: 15px 0 0 0;
  }
  .slide_banner13 {
    min-height: auto;
    max-height: inherit;
    padding-bottom: 50px;
  }
  .slide_cont {
    margin-top: 115px;
  }
  .berber_side_img::after {
    display: none;
  }
  .hair_menu_list_cont ul {
    float: left;
    width: 100%;
  }
  .tab_bar_section ul.nav.nav-tabs li a {
    font-size: 15px;
    font-weight: 500;
    padding: 0 10px;
    line-height: 45px;
  }
  .discount_section_inner {
    top: 0;
    left: 0;
  }
  .discount_section h4 {
    line-height: 28px;
    margin: 15px 0;
  }
  .discount_section h3 {
    color: #d19d64;
    font-size: 30px;
    margin: 10px 0;
    line-height: 38px;
  }
  .join_us_section {
    text-align: center;
  }
  .join_us_section h2 {
    margin-bottom: 15px;
  }
  .cont_theme_blog h3 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  /** basic css **/
  .margin_top_30_respon {
    margin-top: 30px;
  }
  .container {
    max-width: 540px;
    width: 100%;
  }
  .inform_dentist_botm p {
    text-align: center;
  }
  p.large {
    font-size: 14px;
  }
  h2 {
    font-size: 40px;
  }
  .cont_theme_blog h3 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
  }
  .home_page1 #banner_slide {
    margin-bottom: 0;
  }
  .slide_cont {
    text-align: center;
  }
  .slide_bt {
    display: flex;
    justify-content: center;
  }
  .home_page1 .slide_cont {
    margin-top: 75px;
  }
  .slide_banner1 {
    min-height: auto;
  }
  .slide_cont h2 {
    font-size: 30px;
    line-height: 34px;
  }
  .slide_pc_img img {
    width: 100%;
    margin-left: 0;
    margin-top: 35px;
    right: inherit;
  }
  .slide_pc_img {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .blog_feature_img img {
    width: 100%;
  }
  .contact_form_inner {
    max-width: 430px;
    margin: 0 auto;
  }
  .right_bt {
    float: right;
    width: 100%;
    justify-content: center;
    display: flex;
    margin-top: 15px;
  }
  .right_bt a.bt_main {
    width: 100%;
  }
  .home_page1 .padding_right_left_15 {
    margin-bottom: 30px;
  }
  .layout_screen {
    left: 0;
    position: relative;
    width: 100%;
  }
  .padding_inner {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .theme_bg {
    min-height: auto;
  }
  .layout_pur_minus {
    margin-bottom: 0;
  }
  .team_member_img img {
    width: 100%;
  }
  .table_price {
    margin-bottom: 30px;
  }
  .home_page1 .layout_padding_2 {
    margin: 0 !important;
  }
  .layout_padding {
    margin: 0 !important;
  }
  .blog_section {
    margin-top: 30px;
  }
  .blog_feature_cantant {
    padding: 30px 20px 20px;
  }
  .contact_form {
    min-height: auto;
    padding: 80px 30px;
  }
  .footer_blog {
    display: flex;
    margin-bottom: 25px;
  }
  /**** home page 2 add custom with arrange ****/
  .margin_bottom_30 {
    margin-bottom: 30px;
  }
  .target_section {
    width: 100%;
    background: #fff;
    padding: 50px 25px 50px;
    box-shadow: 0 0 45px -15px #000;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .team_blog {
    margin-bottom: 30px;
  }
  .target_section .feature_icon {
    margin-top: 25px;
  }
  .header .social_icons {
    width: 100%;
    justify-content: center;
    display: flex;
    border-top: solid rgba(255, 255, 255, 0.1) 1px;
    padding-top: 15px;
  }
  .footer_style_2 img.img-responsive {
    width: 100%;
  }
  .home_page2 .slide_cont {
    margin-top: 20px;
  }
  .home_page2 .banner_parallax .slide_cont p {
    line-height: 30px;
    font-size: 22px;
    margin-top: 30px;
  }
  .slide_banner2 {
    min-height: 480px;
  }
  .heading_style_2 p {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 45px;
  }
  .heading_style_2 h2 {
    line-height: 30px;
    margin-top: 15px;
  }
  .home_page2 .light_silver_2 div.layout_bt {
    margin-bottom: 25px;
    float: left;
    width: 100%;
  }
  /** home page 3 **/
  .haf_full_section.right_full::after {
    height: 350px;
    position: relative;
    width: 100%;
  }
  .haf_full_section.left_full::after {
    height: 350px;
    position: relative;
    width: 100%;
  }
  .center_padding {
    padding: 75px 0 60px;
  }
  .home_page3 .slide_cont h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .home_page3 section.banner_parallax.slide_banner3 .slide_cont p {
    font-size: 20px;
  }
  .slide_banner3 h2::after {
    margin-left: auto;
    margin-right: auto;
  }
  .slide_banner3 {
    min-height: 720px;
  }
  .information_blog h3 {
    font-size: 21px;
  }
  .information_blog {
    margin: 15px 0;
  }
  /** side bar **/
  .toggle_side_bar {
    display: block;
  }
  .sidenav {
    height: 100%;
    width: 0;
  }
  .sidebar_page {
    margin-left: 0;
  }
  .sidenav .closebtn {
    display: block;
  }
  /** home page 4 **/
  .overlap_top_img_main {
    margin: -70px 0 0 0;
    width: 100%;
  }
  .brand_logo_section li {
    width: 33.33%;
    padding: 0 15px;
  }
  .slide_banner4 h2 strong {
    font-size: 50px;
  }
  .slide_banner4 h2::after {
    margin-left: auto;
    margin-right: auto;
  }
  .home_page4 .slide_cont p {
    font-size: 12px;
    line-height: 21px;
  }
  .golden_yellow_theme a.transparent_bt {
    padding: 0 10px;
    min-width: 148px;
    line-height: 45px;
    font-size: 13px;
  }
  .bt_main {
    font-size: 13px;
    min-width: 120px;
    height: 45px;
    line-height: 45px;
    padding: 0 10px;
  }
  #contant_slider .carousel-indicators {
    display: flex;
    bottom: -80px;
  }
  .heading_style_4 p {
    font-size: 16px;
  }
  .heading_style_4 h2 {
    font-size: 28px;
    color: #343434;
    line-height: 40px;
  }
  .tab_head ul {
    display: block;
  }
  .blog_section.style_2 .blog_head {
    font-size: 18px;
  }
  .contact_form {
    padding: 80px 30px 80px;
  }
  /** home page 5 **/
  .screen_website_bannr {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .slide_banner5 {
    margin-bottom: 0;
  }
  .heading_style_5 .small_text {
    margin: 0 0 10px 0;
  }
  .layout_pur_minus img {
    width: 100%;
    margin-top: 50px;
  }
  .overlap_top_img_main {
    margin: 0;
    width: 100%;
  }
  .feature_cs img {
    width: 100%;
  }
  /** home page 6 **/
  .header.header_style4.header_left_side .main_menu {
    float: right !important;
  }
  .home_page6 .slide_cont {
    margin-top: 280px;
  }
  .heading_style_6 h2 {
    margin-bottom: 20px;
    font-size: 25px;
  }
  .padding_right_left_25 {
    margin-top: 50px;
  }
  .blog_news1 {
    padding: 35px;
  }
  .gray_layer_bg .full img {
    width: 100%;
  }
  .field input {
    padding: 0 20px;
  }
  .contact_form_layout .field textarea {
    padding: 5px 20px;
  }
  /** home page 7 **/
  .header_style5 div.menu > ul > li > a {
    padding: 10px 18px;
  }
  .header_top p {
    margin: 0;
    color: #555;
    font-size: 13px;
    margin: 5px 0 5px;
  }
  .right_section_bottom_header {
    display: flex;
    justify-content: center;
    border-top: solid #ddd 1px;
    margin-top: 10px;
  }
  #searchbar {
    width: 90%;
    right: 5%;
    top: 50px;
  }
  .slide_banner7 .slide_cont h2 {
    line-height: normal;
    font-size: 24px;
  }
  .slide_inform {
    text-align: left;
  }
  .slider_information {
    display: flex;
    justify-content: center;
  }
  .heading_style_7 h2 {
    font-size: 28px;
    line-height: 30px;
  }
  .full.bottm_bt_style {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .inform_ser_blogs_3 ul li {
    width: 100%;
  }
  .position_abs {
    position: relative;
  }
  .hight_100_per {
    margin-bottom: 35px;
  }
  .left_head ul {
    margin: 12px 0 11px;
    float: left;
    width: 100%;
  }
  /** home page 8 **/
  .with_out_menu_header div.left_head ul li {
    display: inline;
    margin-right: 0;
    font-size: 14px;
    color: #fff;
    float: left;
    width: 100%;
    text-align: center;
  }
  .home_page8 .right_head {
    display: none;
  }
  .layout_bt {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .service_info_sec {
    margin-top: 30px;
    position: relative;
    margin-bottom: -20px;
  }
  .heading_style_8 h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .tab_bar .tags li {
    float: left;
    margin: 3px;
  }
  #testimoial_slider {
    margin-bottom: 80px;
  }
  .why_peoeple_choose .col-md-2 {
    margin-bottom: 25px;
  }
  /** home page 9 **/
  .banner_parallax.slide_banner9 h2 {
    font-size: 50px;
  }
  .cont_boder_style_slide::after {
    margin-left: auto;
    margin-right: auto;
  }
  .hiren_img {
    margin-top: 30px;
  }
  .feature_cs img {
    width: 100%;
  }
  /** home page 10 **/
  .banner_parallax.slide_banner10 h2 {
    font-size: 50px;
  }
  .cont_boder_style_slide::after {
    margin-left: auto;
    margin-right: auto;
  }
  .hiren_img {
    margin-top: 30px;
  }
  .feature_cs img {
    width: 100%;
  }
  .slide_banner10 .slider_information ul li {
    display: flex;
    margin: 15px 0;
    float: left;
    width: 100%;
    justify-content: center;
  }
  /** home page 11 **/
  .play_section {
    position: relative;
  }
  .weekend_section_inner .play_pause_control {
    padding-left: 35px;
  }
  .weeked_section .play_pause {
    left: 0;
  }
  .click_section_form_change_vedio .float-left {
    width: 100%;
  }
  .click_section_form_change_vedio .profile_uploaded {
    text-align: center;
    margin: 0;
  }
  .click_section_form_change_vedio .profile_cont_uploaded {
    margin-left: 0;
    margin-top: 15px;
    text-align: center;
  }
  .click_section_form_change_vedio .float-right {
    margin-top: 0;
    width: 100%;
    text-align: center;
  }
  .profile_cont {
    display: block;
  }
  /** home page 12 **/
  .span2 {
    width: 100%;
  }
  .cake_club .menu > ul > li > a {
    font-size: 13px;
    margin: 0;
  }
  .cake_club .menu > ul > li > a {
    font-size: 14px;
  }
  .cake_club .menu > ul > li > a {
    font-size: 14px;
    padding: 13px;
  }
  .cake_club .menu-mobile::after {
    top: 4px;
  }
  .slide_banner12 {
    background-size: cover;
  }
  .slide_banner12 .slide_cont h3 {
    font-size: 50px;
    line-height: 70px;
  }
  .Courgette_font h2 {
    font-size: 35px;
  }
  div.layout_padding_2 {
    padding-top: 50px;
  }
  /** home page 13 **/
  .banner_parallax.slide_banner13 .slide_cont h2 {
    font-size: 50px;
    line-height: 58px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .information_icon {
    margin: 15px 0 0 0;
  }
  .slide_banner13 {
    min-height: auto;
    max-height: inherit;
    padding-bottom: 50px;
  }
  .slide_cont {
    margin-top: 115px;
  }
  .berber_side_img::after {
    display: none;
  }
  .hair_menu_list_cont ul {
    float: left;
    width: 100%;
  }
  .tab_bar_section ul.nav.nav-tabs li a {
    font-size: 15px;
    font-weight: 500;
    padding: 0 10px;
    line-height: 45px;
  }
  .discount_section_inner {
    top: 0;
    left: 0;
  }
  .discount_section h4 {
    line-height: 28px;
    margin: 15px 0;
  }
  .discount_section h3 {
    color: #d19d64;
    font-size: 30px;
    margin: 10px 0;
    line-height: 38px;
  }
  .join_us_section {
    text-align: center;
  }
  .join_us_section h2 {
    margin-bottom: 15px;
  }
  /** home page 14 **/
  .header.header_style14 .header_top {
    display: none;
  }
  .header_style14 .logo {
    top: 0;
  }
  .header_style14 .logo img {
    width: 110px;
  }
  .header_style14 .logo {
    position: absolute;
    top: 0;
    padding: 10px 0;
  }
  .header_style14 .logo {
    top: -47px;
  }
  .header_style14 .header_bottom {
    min-height: 60px;
    padding-top: 55px;
  }
  .header.header_style14 .header_bottom .right_section_bottom_header {
    margin: 10px 0 18px;
    padding-top: 15px;
    width: 100%;
  }
  .header.header_style14 .main_menu > .menu > ul > li > a {
    color: #000;
  }
  .slide_banner14 {
    min-height: 450px;
  }
  .waiter_img {
    margin-top: 45px;
  }
  .style_pro_head {
    margin-top: 0;
    margin-bottom: 75px;
  }
  .top_center_pro .head_cafe_img {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .top_center_pro {
    display: block;
  }
  .head_cafe_img {
    text-align: center;
  }
  .top_left_pro .head_cafe_pro {
    position: relative;
    top: 0;
  }
  .top_center_pro .head_cafe_pro {
    position: relative;
    top: 0;
    left: 0;
  }
  .head_cafe_img img {
    width: 50%;
  }
  .bottom_center_pro .text_align_left {
    text-align: center;
    padding-left: 0;
    margin: 0;
  }
  .bottom_right_pro .head_cafe_img {
    text-align: center;
  }
  .bottom_center_pro .text_align_left {
    text-align: center;
    padding-left: 0;
    margin: 0;
  }
  .bottom_right_pro {
    top: 0;
  }
  .bottom_right_pro .head_cafe_img {
    text-align: center;
  }
  .head_cafe_pro.text_align_right {
    text-align: center;
  }
  .head_cafe_pro.text_align_left {
    text-align: center;
  }
  .top_center_pro .head_cafe_pro {
    text-align: center;
  }
  .top_left_pro .head_cafe_pro {
    text-align: center;
  }
  .style_pro_head {
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .team_blog_style_cheif .team_blog {
    width: 80%;
    margin: 0 10%;
  }
  .time_ser {
    margin-bottom: 35px;
  }
  /** home page 15 **/
  .slide_banner15.banner_parallax h2 {
    font-size: 35px;
    line-height: 38px;
    font-weight: 400;
    color: #ffb125;
  }
  .home_page15 .slide_cont {
    margin-top: 220px;
  }
  .home_page15 section.layout_padding_2.horizontal_cross_layout {
    margin-bottom: 0;
  }
  .home_page15 .streat_section_rev img {
    height: 80px;
  }
  .white_border {
    margin-left: 0;
    padding-left: 80px;
  }
  .enter_roll_bt {
    display: flex;
    justify-content: center;
    margin-top: 35px;
  }
  .streat_section_rev_bottom img {
    position: absolute;
    bottom: 0;
    height: 85px;
  }
  .black_border {
    margin-left: 0;
    padding-left: 80px;
  }
  .team_blog_gym {
    display: block;
    margin: 15px 0;
    text-align: center;
  }
  .team_blog_gym .team_img {
    margin: 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .gym_cle {
    margin-bottom: 45px;
  }
  /** home page 16 **/
  .slide_banner16 .slide_cont h2 {
    font-size: 35px;
  }
  .banner_parallax.slide_banner16 .slide_cont p {
    font-size: 18px;
  }
  .heading_style_13 h2 {
    font-size: 48px;
    font-weight: 600;
    color: #343434;
    margin: 0 0 25px 0;
    line-height: 48px;
  }
  .yoga_icon {
    margin-bottom: 20px;
    text-align: center;
  }
  .yoga_icon + div {
    text-align: center;
  }
  .bg_layout_yoga .heading_style_13 h2 {
    font-size: 32px;
    line-height: 32px;
  }
  /** home page 17 **/
  .header_style17 .header_top.top_imform {
    display: none;
  }
  .slide_banner17 {
    min-height: 720px;
    max-height: inherit;
  }
  .dentist_slide img {
    width: 100%;
    margin-bottom: 50px;
  }
  .home_page17 .heading_style_3 p.small_text {
    font-size: 20px;
    line-height: 24px;
  }
  .home_page17 .heading_style_3 h2 {
    font-size: 30px;
    margin: 25px 0;
    line-height: 35px;
  }
  .dentist_imfor_ser .col-md-7 {
    margin-bottom: 50px;
  }
  .dentis_team_blog .team_member_img img {
    width: auto;
  }
  .header.header_style18 .top_imform {
    display: none;
  }
  /** home page 18 **/
  .menu_border_hover .main_menu .menu > ul > li > a {
    padding-bottom: 10px;
  }
  .fiver_boy img {
    max-width: 100%;
  }
  .slide_bottom_icon li {
    margin: 5px 5px;
  }
  .doc_ser {
    margin-bottom: 25px;
  }
  .doctor_team .team_member_img.team_member_img img {
    width: auto;
  }
  /** home page 19 **/
  .sidebar_menu {
    float: right;
    top: 15px;
    position: relative;
  }
  .banner_parallax.slide_banner19 {
    padding-top: 1px;
  }
  .home_page19 .slide_cont {
    margin-top: 35px;
  }
  .product_ecommr {
    margin-top: 45px;
  }
  .heading_style_19 h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .one_line_layout {
    margin: 15px 0;
  }
  .coffee_machine {
    position: relative;
    top: 0;
  }
  .product_style_1 .product_img {
    border-right: none;
  }
  .coffee_machine img {
    margin-top: 25px;
  }
  .newslatterform form {
    position: relative;
    width: 100%;
  }
  .menu_product li {
    float: left;
    margin: 0;
    width: 50%;
  }
  /** home page 20 **/
  .header.header_style_ecomm2 .header_top {
    display: none;
  }
  .top_search_bar .field {
    display: block;
  }
  .search_style_2 .top_search_bar input {
    max-width: 100%;
    border-radius: 0;
    border: solid #e1e1e1 1px;
    margin-bottom: -1px;
  }
  .search_style_2 .top_search_bar .bootstrap-select button,
  .search_style_2 .top_search_bar .bootstrap-select button:hover,
  .search_style_2 .top_search_bar .bootstrap-select button:focus,
  .search_style_2 .top_search_bar .bootstrap-select button:active {
    width: 100%;
    margin: 0;
  }
  div.top_search_bar .btn-group.bootstrap-select {
    width: 100% !important;
  }
  .search_style_2 .top_search_bar button.submit_search {
    background: #0163d2;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    border-radius: 0;
  }
  .search_catry_bt {
    position: relative;
    top: 0;
    right: 1px;
  }
  .header_style_ecomm2 .sidebar_menu a {
    background: #0163d2;
    width: 36px;
    float: right;
    height: 36px;
    border-radius: 0;
    text-align: center;
    padding: 5px 4px;
    margin: 12px 0 0;
  }
  .right_cart_section {
    position: absolute;
    top: -248px;
  }
  .header_bottom_thirth {
    display: none;
  }
  .home_page20 .bt_main {
    padding: 0 25px;
  }
  .top_sec {
    line-height: 24px;
    font-size: 15px;
    padding: 20px 20px;
  }
  .blue_layer_image2 h2,
  .blue_layer_image h2 {
    font-size: 28px;
    line-height: 42px;
    letter-spacing: -1px;
  }
  /** home page 21 **/
  .header_style_ecomr3 .header_top {
    display: none;
  }
  .header_style_ecomr3 .menu {
    width: auto;
    margin: 9px 0 0;
    float: left;
  }
  .right_icon_ecoomr {
    float: right;
    margin: 10px 0;
  }
  .header.header_style_ecomr3 .menu > ul > li > a {
    padding: 10px 24px;
    font-weight: 500;
  }
  .home_page21 .slide_banner18 .slide_cont h2 {
    font-size: 72px;
    line-height: 72px;
    text-align: center;
  }
  .home_page21 .slide_banner18 .slide_cont h2 span {
    float: left;
  }
  .slide_banner18.banner_parallax p {
    font-size: 15px;
  }
  .categary_part {
    width: 100%;
    min-height: 280px;
  }
  .slide_banner18 .slide_bt {
    padding-bottom: 35px;
  }
  /** home page 22 **/
  .light_red .header.header_style_ecomr3 .menu > ul > li > a {
    color: #222;
  }
  .slide_banner22 .slide_cont {
    margin-top: 55px;
  }
  .slide_banner22 .slide_cont h2 {
    font-size: 40px;
    line-height: 45px;
  }
  .date_counter_2 #clockdiv div.count {
    width: 50%;
    margin: 7px 0 0 0;
    text-align: center;
  }
  .date_counter_2 #clockdiv div > span {
    width: 90%;
    margin: 0 5%;
  }
  .full.counter_price h2 {
    line-height: normal;
  }
  .home_page22 div.full.layout_bt {
    margin-bottom: 35px;
  }
  /** home paga 23 **/
  .catergary_tab_bar ul li.nav-item {
    width: 50%;
  }
  .client_slider_main2 .testi_head {
    margin-top: 25px;
    text-align: center;
  }
  .client_slider_main2 div#testimonial2 {
    width: 90%;
    margin: 20px 5% 80px;
  }
  .service_information .pink1,
  .service_information .pink2,
  .service_information .pink3 {
    margin-bottom: 35px;
  }
  /** home page 24 **/
  .skyblue .menu-mobile {
    border-color: #fff;
    color: #fff;
    margin: 10px 5px;
  }
  .master_ji {
    margin-bottom: 30px;
  }
  .bottom_fixed {
    position: relative;
    bottom: 0;
  }
  .brand_logo_section li {
    width: 50%;
    padding: 0 15px;
  }
  /** home page 25 **/
  .header_funky_style .header_top {
    display: none;
  }
  .header_funky_style a.menu-mobile {
    margin: 10px;
  }
  .header.header_funky_style .menu > ul > li > a {
    font-size: 15px;
    font-weight: 400;
    color: #898989;
    padding: 10px 15px 9px;
  }
  .slide_banner25 .slide_cont h2 {
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
    font-size: 28px;
    line-height: 35px;
    z-index: 0;
    margin-bottom: 25px;
  }
  .slide_banner25 .slide_cont {
    margin-top: 50px;
  }
  .bottom_service_temp_inner {
    margin-top: 0;
  }
  .bottom_service_temp {
    display: none;
  }
  .slide_banner25 .inner_slide {
    margin: 25px 0 0 0;
  }
  .team_blog_img {
    float: left;
    width: 100%;
    height: 170px;
    margin-top: 0px;
    margin-left: 0;
    border-radius: 0;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .team_blog {
    border-radius: 5px;
    min-height: 170px;
    float: left;
    width: 100%;
  }
  .team_blog_cont {
    padding: 25px 0 15px 0;
    float: left;
    width: 100%;
  }
  /** home page 26 **/
  .header_style26 .right_side_bt {
    display: none;
  }
  .header_style26 .menu {
    width: auto;
    margin: 9px 0 0;
    float: left;
  }
  .header_style26 .menu > ul > li > a {
    padding: 10px 25px;
  }
  .slide_banner26 .slide_cont {
    margin-top: 220px;
  }
  .slide_banner26 .slide_cont h2 {
    font-size: 40px;
    line-height: 45px;
  }
  .owl-carousel-mousewheel .owl-prev {
    width: 35px;
  }
  .owl-carousel-mousewheel .owl-next {
    width: 35px;
  }
  .owl-carousel-mousewheel {
    padding: 0 35px;
  }
  .owl-carousel-mousewheel {
    background: #fff;
  }
  .step_process li {
    width: 100%;
  }
  /** inner pages **/
  .team_member_img img {
    width: 100%;
  }
  #inner_slide .slider_information ul li {
    margin: 10px 0;
    width: 100%;
  }
  .slider_information {
    margin-bottom: 25px;
  }
  .lawyer_img {
    margin-bottom: 35px;
  }
  .about_page_3.brown_color_theme .heading_style_7 h2 {
    font-size: 21px;
  }
  .left_section_head {
    margin-bottom: 35px;
  }
  .testimonial_ser2 .owl-nav.disabled {
    top: -50px;
  }
  .client_slider_main .testimonial_ser2 .owl-nav .owl-next,
  .client_slider_main .testimonial_ser2 .owl-nav .owl-next:hover,
  .client_slider_main .testimonial_ser2 .owl-nav .owl-next:focus {
    width: 50%;
    height: 45px;
    text-align: center;
    line-height: 45px;
    right: 0;
    border-radius: 0;
  }
  .client_slider_main .testimonial_ser2 .owl-nav .owl-prev,
  .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:hover,
  .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:focus {
    width: 50%;
    height: 45px;
    border-radius: 0;
    text-align: center;
    line-height: 45px;
    left: 0;
  }
  .testimonial_ser2 .testimo {
    margin-bottom: 25px;
  }
  .service_blog3 .padding_right_left_15 {
    background: #f8f8f8;
    padding: 15px 15px;
  }
  .inner_banner7 {
    padding-top: 180px;
  }
  .slide_banner1 {
    min-height: auto;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
  }
  .slide_cont {
    margin: 50px 0 100px;
  }
  .blog_banner h2,
  .portfolio_banner h2 {
    margin: 85px 0 0;
    font-weight: 300;
  }
  .breadcrum_side ul {
    margin: 5px 0 30px;
    width: 100%;
  }
  .blog_detail h3 {
    text-align: left;
  }
  #default_theme.blog_detail section p {
    text-align: left;
  }
  .width_50 {
    width: 100%;
  }
  .layout_padding_grey_half {
    padding: 35px;
  }
  .portfolio .tab_bar_section ul.nav.nav-tabs li {
    margin-bottom: 15px;
    margin-left: 10px;
    margin-right: 10px;
    width: auto;
  }
  .portfolio .portfolio_layout2 .tab_bar_section ul.nav.nav-tabs li {
    margin: 0 10px 20px;
  }
  .portblog_img img {
    width: 100%;
  }
  .share_section ul li {
    margin: 0 0 10px 0;
    width: 100%;
  }
  .share_section {
    float: left;
    width: 100%;
    margin-top: 0;
    margin-bottom: 35px;
  }
  .portfolio_detail .one_line_layout .feature_icon img {
    width: 100px;
  }
  /** shop page **/
  .shopping-cart-cart {
    max-width: 100%;
    width: 100%;
    margin-top: 25px;
  }
  .product-table table.table {
    min-width: 720px;
  }
  .product_detail_page .tab_bar_section .nav.nav-tabs {
    display: flex;
    justify-content: center;
  }
  .product_detail_page .tab_bar_section .nav-tabs .nav-item {
    width: 100%;
  }
}
@media (max-width: 575px) {
  /** cross layout **/
  .inform_dentist_botm p {
    text-align: center;
  }
  .margin_top_30_respon {
    margin-top: 30px;
  }
  .cross_layout:before {
    height: 20px;
  }
  .cross_layout:after {
    height: 20px;
  }
  p.large {
    font-size: 14px;
  }
  h2 {
    font-size: 32px !important;
    line-height: 35px;
    letter-spacing: -1px;
  }
  .container {
    max-width: 100%;
  }
  .home_page1 #banner_slide {
    margin-bottom: 0;
  }
  .right_bt {
    float: right;
    width: 100%;
    justify-content: center;
    display: flex;
    margin-top: 15px;
  }
  .right_bt a.bt_main {
    width: 100%;
  }
  .home_page1 .slide_cont {
    margin-top: 75px;
  }
  .slide_banner1 {
    position: relative;
    background-repeat: no-repeat;
    background-size: auto 100%;
    height: auto;
    min-height: auto;
    background-position: bottom left;
  }
  .slide_cont h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .slide_pc_img img {
    width: 100%;
    margin-left: 0;
    margin-top: 35px;
    right: 0;
  }
  .slide_pc_img {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
  }
  .slide_bt .bt_main {
    border: solid #FF753A 1px;
    line-height: 43px;
  }
  .home_page1 .padding_right_left_15 {
    margin-bottom: 30px;
  }
  .layout_screen {
    left: 0;
    position: relative;
    width: 100%;
  }
  .padding_inner {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .theme_bg {
    min-height: auto;
  }
  .layout_pur_minus {
    margin-bottom: 0;
  }
  .team_member_img img {
    width: 100%;
  }
  .table_price {
    margin-bottom: 15px;
  }
  .blog_feature_img img {
    width: 100%;
  }
  .contact_form_inner {
    max-width: 100%;
  }
  .slide_cont {
    text-align: center;
  }
  .slide_bt {
    display: flex;
    justify-content: center;
  }
  .home_page1 .layout_padding_2 {
    margin: 0 !important;
  }
  .layout_padding {
    margin: 0 !important;
  }
  .blog_section {
    margin-top: 30px;
  }
  .blog_feature_cantant {
    padding: 30px 20px 20px;
  }
  .contact_form {
    min-height: auto;
    padding: 80px 30px;
  }
  .footer_blog {
    display: flex;
    margin-bottom: 25px;
  }
  .information_blog h3 {
    font-size: 21px;
  }
  .information_blog {
    margin: 15px 0;
  }
  /** portfolio popup **/
  .description_popup {
    padding: 30px;
  }
  #portfolio_pop .modal-content {
    width: 90%;
    margin: 0 auto;
  }
  .description_popup h3 {
    font-size: 18px;
  }
  /**** home page 2 add custom with arrange ****/
  .margin_bottom_30 {
    margin-bottom: 30px;
  }
  .target_section {
    width: 100%;
    background: #fff;
    padding: 50px 25px 50px;
    box-shadow: 0 0 45px -15px #000;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .team_blog {
    margin-bottom: 30px;
  }
  .target_section .feature_icon {
    margin-top: 25px;
  }
  .header .social_icons {
    width: 100%;
    justify-content: center;
    display: flex;
    border-top: solid rgba(255, 255, 255, 0.1) 1px;
    padding-top: 15px;
  }
  .home_page2 .slide_cont {
    margin-top: 20px;
  }
  .home_page2 .banner_parallax .slide_cont p {
    line-height: 30px;
    font-size: 22px;
    margin-top: 30px;
  }
  .slide_banner2 {
    min-height: 480px;
  }
  .heading_style_2 p {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 45px;
  }
  .heading_style_2 h2 {
    line-height: 30px;
    margin-top: 15px;
  }
  .home_page2 .light_silver_2 div.layout_bt {
    margin-bottom: 25px;
    float: left;
    width: 100%;
  }
  /** home page 3 **/
  .haf_full_section.right_full::after {
    height: 350px;
    position: relative;
    width: 100%;
  }
  .haf_full_section.left_full::after {
    height: 350px;
    position: relative;
    width: 100%;
  }
  .center_padding {
    padding: 75px 0 60px;
  }
  .home_page3 .slide_cont h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .home_page3 section.banner_parallax.slide_banner3 .slide_cont p {
    font-size: 20px;
  }
  .slide_banner3 h2::after {
    margin-left: auto;
    margin-right: auto;
  }
  .slide_banner3 {
    min-height: 720px;
  }
  .information_blog h3 {
    font-size: 21px;
  }
  .information_blog {
    margin: 15px 0;
  }
  /** side bar **/
  .toggle_side_bar {
    display: block;
  }
  .sidenav {
    height: 100%;
    width: 0;
  }
  .sidebar_page {
    margin-left: 0;
  }
  .sidenav .closebtn {
    display: block;
  }
  /** home page 4 **/
  .overlap_top_img_main {
    margin: -70px 0 0 0;
    width: 100%;
  }
  .brand_logo_section li {
    width: 33.33%;
    padding: 0 15px;
  }
  .slide_banner4 h2 strong {
    font-size: 50px;
  }
  .slide_banner4 h2::after {
    margin-left: auto;
    margin-right: auto;
  }
  .home_page4 .slide_cont p {
    font-size: 12px;
    line-height: 21px;
  }
  .golden_yellow_theme a.transparent_bt {
    padding: 0 10px;
    min-width: 148px;
    line-height: 45px;
    font-size: 13px;
  }
  .bt_main {
    font-size: 13px;
    min-width: 120px;
    height: 45px;
    line-height: 45px;
    padding: 0 10px;
  }
  #contant_slider .carousel-indicators {
    display: flex;
    bottom: -80px;
  }
  .heading_style_4 p {
    font-size: 16px;
  }
  .heading_style_4 h2 {
    font-size: 28px;
    color: #343434;
    line-height: 40px;
  }
  .tab_head ul {
    display: block;
  }
  .blog_section.style_2 .blog_head {
    font-size: 18px;
  }
  .contact_form {
    padding: 80px 30px 80px;
  }
  /** home page 5 **/
  .screen_website_bannr {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .slide_banner5 {
    margin-bottom: 0;
  }
  .heading_style_5 .small_text {
    margin: 0 0 10px 0;
  }
  .layout_pur_minus img {
    width: 100%;
    margin-top: 50px;
  }
  .overlap_top_img_main {
    margin: 0;
    width: 100%;
  }
  .feature_cs img {
    width: 100%;
  }
  /** home page 6 **/
  .header.header_style4.header_left_side .main_menu {
    float: right !important;
  }
  .home_page6 .slide_cont {
    margin-top: 280px;
  }
  .heading_style_6 h2 {
    margin-bottom: 20px;
    font-size: 25px;
  }
  .padding_right_left_25 {
    margin-top: 50px;
  }
  .blog_news1 {
    padding: 35px;
  }
  .gray_layer_bg .full img {
    width: 100%;
  }
  .field input {
    padding: 0 20px;
  }
  .contact_form_layout .field textarea {
    padding: 5px 20px;
  }
  /** home page 7 **/
  .header_style5 div.menu > ul > li > a {
    padding: 10px 18px;
  }
  .header_top p {
    margin: 0;
    color: #555;
    font-size: 13px;
    margin: 5px 0 5px;
  }
  .right_section_bottom_header {
    display: flex;
    justify-content: center;
    border-top: solid #ddd 1px;
    margin-top: 10px;
  }
  #searchbar {
    width: 90%;
    right: 5%;
    top: 50px;
  }
  .slide_banner7 .slide_cont h2 {
    line-height: normal;
    font-size: 24px;
  }
  .slide_inform {
    text-align: left;
  }
  .slider_information {
    display: flex;
    justify-content: center;
  }
  .heading_style_7 h2 {
    font-size: 28px;
    line-height: 30px;
  }
  .full.bottm_bt_style {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .inform_ser_blogs_3 ul li {
    width: 100%;
  }
  .position_abs {
    position: relative;
  }
  .hight_100_per {
    margin-bottom: 35px;
  }
  .left_head ul {
    margin: 12px 0 11px;
    float: left;
    width: 100%;
  }
  /** home page 8 **/
  .with_out_menu_header div.left_head ul li {
    display: inline;
    margin-right: 0;
    font-size: 14px;
    color: #fff;
    float: left;
    width: 100%;
    text-align: center;
  }
  .home_page8 .right_head {
    display: none;
  }
  .layout_bt {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .service_info_sec {
    margin-top: 30px;
    position: relative;
    margin-bottom: -20px;
  }
  .heading_style_8 h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .tab_bar .tags li {
    float: left;
    margin: 3px;
  }
  #testimoial_slider {
    margin-bottom: 80px;
  }
  .why_peoeple_choose .col-md-2 {
    margin-bottom: 25px;
  }
  /** home page 9 **/
  .banner_parallax.slide_banner9 h2 {
    font-size: 50px;
  }
  .cont_boder_style_slide::after {
    margin-left: auto;
    margin-right: auto;
  }
  .hiren_img {
    margin-top: 30px;
  }
  .feature_cs img {
    width: 100%;
  }
  /** home page 10 **/
  .banner_parallax.slide_banner10 h2 {
    font-size: 50px;
  }
  .cont_boder_style_slide::after {
    margin-left: auto;
    margin-right: auto;
  }
  .hiren_img {
    margin-top: 30px;
  }
  .feature_cs img {
    width: 100%;
  }
  .slide_banner10 .slider_information ul li {
    display: flex;
    margin: 15px 0;
    float: left;
    width: 100%;
    justify-content: center;
  }
  /** home page 11 **/
  .play_section {
    position: relative;
  }
  .weekend_section_inner .play_pause_control {
    padding-left: 35px;
  }
  .weeked_section .play_pause {
    left: 0;
  }
  .click_section_form_change_vedio .float-left {
    width: 100%;
  }
  .click_section_form_change_vedio .profile_uploaded {
    text-align: center;
    margin: 0;
  }
  .click_section_form_change_vedio .profile_cont_uploaded {
    margin-left: 0;
    margin-top: 15px;
    text-align: center;
  }
  .click_section_form_change_vedio .float-right {
    margin-top: 0;
    width: 100%;
    text-align: center;
  }
  .profile_cont {
    display: block;
  }
  /** home page 12 **/
  .span2 {
    width: 100%;
  }
  .cake_club .menu > ul > li > a {
    font-size: 13px;
    margin: 0;
  }
  .cake_club .menu > ul > li > a {
    font-size: 14px;
  }
  .cake_club .menu > ul > li > a {
    font-size: 14px;
    padding: 13px;
  }
  .cake_club .menu-mobile::after {
    top: 4px;
  }
  .slide_banner12 {
    background-size: cover;
  }
  .slide_banner12 .slide_cont h3 {
    font-size: 50px;
    line-height: 70px;
  }
  .Courgette_font h2 {
    font-size: 35px;
  }
  div.layout_padding_2 {
    padding-top: 50px;
  }
  /** home page 13 **/
  .banner_parallax.slide_banner13 .slide_cont h2 {
    font-size: 50px;
    line-height: 58px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .information_icon {
    margin: 15px 0 0 0;
  }
  .slide_banner13 {
    min-height: auto;
    max-height: inherit;
    padding-bottom: 50px;
  }
  .slide_cont {
    margin: 50px 0 100px;
  }
  .slide_cont {
    margin-top: 115px;
  }
  .berber_side_img::after {
    display: none;
  }
  .hair_menu_list_cont ul {
    float: left;
    width: 100%;
  }
  .tab_bar_section ul.nav.nav-tabs li a {
    font-size: 15px;
    font-weight: 500;
    padding: 0 10px;
    line-height: 45px;
  }
  .discount_section_inner {
    top: 0;
    left: 0;
  }
  .discount_section h4 {
    line-height: 28px;
    margin: 15px 0;
  }
  .discount_section h3 {
    color: #d19d64;
    font-size: 30px;
    margin: 10px 0;
    line-height: 38px;
  }
  .join_us_section {
    text-align: center;
  }
  .join_us_section h2 {
    margin-bottom: 15px;
  }
  /** home page 14 **/
  .header.header_style14 .header_top {
    display: none;
  }
  .header_style14 .logo {
    top: 0;
  }
  .header_style14 .logo img {
    width: 110px;
  }
  .header_style14 .logo {
    position: absolute;
    top: 0;
    padding: 10px 0;
  }
  .header_style14 .logo {
    top: -47px;
  }
  .header_style14 .header_bottom {
    min-height: 60px;
    padding-top: 55px;
  }
  .header.header_style14 .header_bottom .right_section_bottom_header {
    margin: 10px 0 18px;
    padding-top: 15px;
    width: 100%;
  }
  .header.header_style14 .main_menu > .menu > ul > li > a {
    color: #000;
  }
  .slide_banner14 {
    min-height: 450px;
  }
  .waiter_img {
    margin-top: 45px;
  }
  .style_pro_head {
    margin-top: 0;
    margin-bottom: 75px;
  }
  .top_center_pro .head_cafe_img {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .top_center_pro {
    display: block;
  }
  .head_cafe_img {
    text-align: center;
  }
  .top_left_pro .head_cafe_pro {
    position: relative;
    top: 0;
  }
  .top_center_pro .head_cafe_pro {
    position: relative;
    top: 0;
    left: 0;
  }
  .head_cafe_img img {
    width: 50%;
  }
  .bottom_center_pro .text_align_left {
    text-align: center;
    padding-left: 0;
    margin: 0;
  }
  .bottom_right_pro .head_cafe_img {
    text-align: center;
  }
  .bottom_center_pro .text_align_left {
    text-align: center;
    padding-left: 0;
    margin: 0;
  }
  .bottom_right_pro {
    top: 0;
  }
  .bottom_right_pro .head_cafe_img {
    text-align: center;
  }
  .head_cafe_pro.text_align_right {
    text-align: center;
  }
  .head_cafe_pro.text_align_left {
    text-align: center;
  }
  .top_center_pro .head_cafe_pro {
    text-align: center;
  }
  .top_left_pro .head_cafe_pro {
    text-align: center;
  }
  .style_pro_head {
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .team_blog_style_cheif .team_blog {
    width: 80%;
    margin: 0 10%;
  }
  .time_ser {
    margin-bottom: 35px;
  }
  /** home page 15 **/
  .slide_banner15.banner_parallax h2 {
    font-size: 35px;
    line-height: 38px;
    font-weight: 400;
    color: #ffb125;
  }
  .home_page15 .slide_cont {
    margin-top: 220px;
  }
  .home_page15 section.layout_padding_2.horizontal_cross_layout {
    margin-bottom: 0;
  }
  .home_page15 .streat_section_rev img {
    height: 80px;
  }
  .white_border {
    margin-left: 0;
    padding-left: 80px;
  }
  .enter_roll_bt {
    display: flex;
    justify-content: center;
    margin-top: 35px;
  }
  .streat_section_rev_bottom img {
    position: absolute;
    bottom: 0;
    height: 85px;
  }
  .black_border {
    margin-left: 0;
    padding-left: 80px;
  }
  .team_blog_gym {
    display: block;
    margin: 15px 0;
    text-align: center;
  }
  .team_blog_gym .team_img {
    margin: 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .gym_cle {
    margin-bottom: 45px;
  }
  /** home page 16 **/
  .slide_banner16 .slide_cont h2 {
    font-size: 35px;
  }
  .banner_parallax.slide_banner16 .slide_cont p {
    font-size: 18px;
  }
  .heading_style_13 h2 {
    font-size: 48px;
    font-weight: 600;
    color: #343434;
    margin: 0 0 25px 0;
    line-height: 48px;
  }
  .yoga_icon {
    margin-bottom: 20px;
    text-align: center;
  }
  .yoga_icon + div {
    text-align: center;
  }
  .bg_layout_yoga .heading_style_13 h2 {
    font-size: 32px;
    line-height: 32px;
  }
  /** home page 17 **/
  .header_style17 .header_top.top_imform {
    display: none;
  }
  .slide_banner17 {
    min-height: 720px;
    max-height: inherit;
  }
  .dentist_slide img {
    width: 100%;
    margin-bottom: 50px;
  }
  .home_page17 .heading_style_3 p.small_text {
    font-size: 20px;
    line-height: 24px;
  }
  .home_page17 .heading_style_3 h2 {
    font-size: 30px;
    margin: 25px 0;
    line-height: 35px;
  }
  .dentist_imfor_ser .col-md-7 {
    margin-bottom: 50px;
  }
  .dentis_team_blog .team_member_img img {
    width: auto;
  }
  .header.header_style18 .top_imform {
    display: none;
  }
  /** home page 18 **/
  .menu_border_hover .main_menu .menu > ul > li > a {
    padding-bottom: 10px;
  }
  .fiver_boy img {
    max-width: 100%;
  }
  .slide_bottom_icon li {
    margin: 5px 5px;
  }
  .doc_ser {
    margin-bottom: 25px;
  }
  .doctor_team .team_member_img.team_member_img img {
    width: auto;
  }
  /** home page 19 **/
  .sidebar_menu {
    float: right;
    top: 15px;
    position: relative;
  }
  .banner_parallax.slide_banner19 {
    padding-top: 1px;
  }
  .home_page19 .slide_cont {
    margin-top: 35px;
  }
  .product_ecommr {
    margin-top: 45px;
  }
  .heading_style_19 h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .one_line_layout {
    margin: 15px 0;
  }
  .coffee_machine {
    position: relative;
    top: 0;
  }
  .product_style_1 .product_img {
    border-right: none;
  }
  .coffee_machine img {
    margin-top: 25px;
  }
  .newslatterform form {
    position: relative;
    width: 100%;
  }
  .menu_product li {
    float: left;
    margin: 0;
    width: 50%;
  }
  /** home page 20 **/
  .header.header_style_ecomm2 .header_top {
    display: none;
  }
  .top_search_bar .field {
    display: block;
  }
  .search_style_2 .top_search_bar input {
    max-width: 100%;
    border-radius: 0;
    border: solid #e1e1e1 1px;
    margin-bottom: -1px;
  }
  .search_style_2 .top_search_bar .bootstrap-select button,
  .search_style_2 .top_search_bar .bootstrap-select button:hover,
  .search_style_2 .top_search_bar .bootstrap-select button:focus,
  .search_style_2 .top_search_bar .bootstrap-select button:active {
    width: 100%;
    margin: 0;
  }
  div.top_search_bar .btn-group.bootstrap-select {
    width: 100% !important;
  }
  .search_style_2 .top_search_bar button.submit_search {
    background: #0163d2;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    border-radius: 0;
  }
  .search_catry_bt {
    position: relative;
    top: 0;
    right: 1px;
  }
  .header_style_ecomm2 .sidebar_menu a {
    background: #0163d2;
    width: 36px;
    float: right;
    height: 36px;
    border-radius: 0;
    text-align: center;
    padding: 5px 5px;
    margin: 12px 0 0;
  }
  .right_cart_section ul li {
    margin-right: 20px;
  }
  .right_cart_section ul {
    margin: 0 0 10px;
  }
  .header_bottom_thirth {
    display: none;
  }
  .home_page20 .bt_main {
    padding: 0 25px;
  }
  .top_sec {
    line-height: 24px;
    font-size: 15px;
    padding: 20px 20px;
  }
  .blue_layer_image2 h2,
  .blue_layer_image h2 {
    font-size: 28px;
    line-height: 42px;
    letter-spacing: -1px;
  }
  /** home page 21 **/
  .header_style_ecomr3 .header_top {
    display: none;
  }
  .header_style_ecomr3 .menu {
    width: auto;
    margin: 9px 0 0;
    float: left;
  }
  .right_icon_ecoomr {
    float: right;
    margin: 10px 0;
  }
  .header.header_style_ecomr3 .menu > ul > li > a {
    padding: 10px 24px;
    font-weight: 500;
  }
  .home_page21 .slide_banner18 .slide_cont h2 {
    font-size: 72px;
    line-height: 72px;
    text-align: center;
  }
  .home_page21 .slide_banner18 .slide_cont h2 span {
    float: left;
  }
  .slide_banner18.banner_parallax p {
    font-size: 15px;
  }
  .categary_part {
    width: 100%;
    min-height: 280px;
  }
  .slide_banner18 .slide_bt {
    padding-bottom: 35px;
  }
  /** home page 22 **/
  .light_red .header.header_style_ecomr3 .menu > ul > li > a {
    color: #222;
  }
  .slide_banner22 .slide_cont {
    margin-top: 55px;
  }
  .slide_banner22 .slide_cont h2 {
    font-size: 40px;
    line-height: 45px;
  }
  .date_counter_2 #clockdiv div.count {
    width: 50%;
    margin: 7px 0 0 0;
    text-align: center;
  }
  .date_counter_2 #clockdiv div > span {
    width: 90%;
    margin: 0 5%;
  }
  .full.counter_price h2 {
    line-height: normal;
  }
  .home_page22 div.full.layout_bt {
    margin-bottom: 35px;
  }
  /** home paga 23 **/
  .catergary_tab_bar ul li.nav-item {
    width: 50%;
  }
  .client_slider_main2 .testi_head {
    margin-top: 25px;
    text-align: center;
  }
  .client_slider_main2 div#testimonial2 {
    width: 90%;
    margin: 20px 5% 80px;
  }
  .service_information .pink1,
  .service_information .pink2,
  .service_information .pink3 {
    margin-bottom: 35px;
  }
  /** home page 24 **/
  .skyblue .menu-mobile {
    border-color: #fff;
    color: #fff;
    margin: 10px 5px;
  }
  .master_ji {
    margin-bottom: 30px;
  }
  .bottom_fixed {
    position: relative;
    bottom: 0;
  }
  .brand_logo_section li {
    width: 50%;
    padding: 0 15px;
  }
  /** home page 25 **/
  .header_funky_style .header_top {
    display: none;
  }
  .header_funky_style a.menu-mobile {
    margin: 10px;
  }
  .header.header_funky_style .menu > ul > li > a {
    font-size: 15px;
    font-weight: 400;
    color: #898989;
    padding: 10px 15px 9px;
  }
  .slide_banner25 .slide_cont h2 {
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
    font-size: 28px;
    line-height: 35px;
    z-index: 0;
    margin-bottom: 25px;
  }
  .slide_banner25 .slide_cont {
    margin-top: 50px;
  }
  .bottom_service_temp_inner {
    margin-top: 0;
  }
  .bottom_service_temp {
    display: none;
  }
  .slide_banner25 .inner_slide {
    margin: 25px 0 0 0;
  }
  .team_blog_img {
    float: left;
    width: 100%;
    height: 170px;
    margin-top: 0px;
    margin-left: 0;
    border-radius: 0;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .team_blog {
    border-radius: 5px;
    min-height: 170px;
    float: left;
    width: 100%;
  }
  .team_blog_cont {
    padding: 25px 0 15px 0;
    float: left;
    width: 100%;
  }
  /** home page 26 **/
  .header_style26 .right_side_bt {
    display: none;
  }
  .header_style26 .menu {
    width: auto;
    margin: 9px 0 0;
    float: left;
  }
  .header_style26 .menu > ul > li > a {
    padding: 10px 25px;
  }
  .slide_banner26 .slide_cont {
    margin-top: 220px;
  }
  .slide_banner26 .slide_cont h2 {
    font-size: 40px;
    line-height: 45px;
  }
  .owl-carousel-mousewheel .owl-prev {
    width: 35px;
  }
  .owl-carousel-mousewheel .owl-next {
    width: 35px;
  }
  .owl-carousel-mousewheel {
    padding: 0 35px;
  }
  .owl-carousel-mousewheel {
    background: #fff;
  }
  .step_process li {
    width: 100%;
  }
  /** inner pages **/
  .team_member_img img {
    width: 100%;
  }
  #inner_slide .slider_information ul li {
    margin: 10px 0;
    width: 100%;
  }
  .slider_information {
    margin-bottom: 25px;
  }
  .lawyer_img {
    margin-bottom: 35px;
  }
  .about_page_3.brown_color_theme .heading_style_7 h2 {
    font-size: 21px;
  }
  .left_section_head {
    margin-bottom: 35px;
  }
  .testimonial_ser2 .owl-nav.disabled {
    top: -50px;
  }
  .client_slider_main .testimonial_ser2 .owl-nav .owl-next,
  .client_slider_main .testimonial_ser2 .owl-nav .owl-next:hover,
  .client_slider_main .testimonial_ser2 .owl-nav .owl-next:focus {
    width: 50%;
    height: 45px;
    text-align: center;
    line-height: 45px;
    right: 0;
    border-radius: 0;
  }
  .client_slider_main .testimonial_ser2 .owl-nav .owl-prev,
  .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:hover,
  .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:focus {
    width: 50%;
    height: 45px;
    border-radius: 0;
    text-align: center;
    line-height: 45px;
    left: 0;
  }
  .testimonial_ser2 .testimo {
    margin-bottom: 25px;
  }
  .service_blog3 .padding_right_left_15 {
    background: #f8f8f8;
    padding: 15px 15px;
  }
  .inner_banner7 {
    padding-top: 180px;
  }
  .blog_banner h2,
  .portfolio_banner h2 {
    margin: 85px 0 0;
    font-weight: 300;
  }
  .breadcrum_side ul {
    margin: 5px 0 30px;
    width: 100%;
  }
  .blog_detail h3 {
    text-align: left;
  }
  #default_theme.blog_detail section p {
    text-align: left;
  }
  .width_50 {
    width: 100%;
  }
  .layout_padding_grey_half {
    padding: 35px;
  }
  .portfolio .tab_bar_section ul.nav.nav-tabs li {
    margin-bottom: 15px;
    margin-left: 10px;
    margin-right: 10px;
    width: auto;
  }
  .portfolio .portfolio_layout2 .tab_bar_section ul.nav.nav-tabs li {
    margin: 0 10px 20px;
  }
  .portblog_img img {
    width: 100%;
  }
  .share_section ul li {
    margin: 0 0 10px 0;
    width: 100%;
  }
  .share_section {
    float: left;
    width: 100%;
    margin-top: 0;
    margin-bottom: 35px;
  }
  .portfolio_detail .one_line_layout .feature_icon img {
    width: 100px;
  }
  /** shop page **/
  .shopping-cart-cart {
    max-width: 100%;
    width: 100%;
    margin-top: 25px;
  }
  .product-table table.table {
    min-width: 720px;
  }
  .product_detail_page .tab_bar_section .nav.nav-tabs {
    display: flex;
    justify-content: center;
  }
  .product_detail_page .tab_bar_section .nav-tabs .nav-item {
    width: 100%;
  }
  .inner_banner1 h2 {
    font-size: 30px;
  }
  .cont_theme_blog h3 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
  }
  .cont_theme_blog p {
    font-size: 16px;
    line-height: normal;
  }
  .information_blogs {
    margin-bottom: 45px;
  }
}
/*---------------------------------------------
	Responsive Menu 
---------------------------------------------*/
@media only screen and (max-width: 991px) {
  .only_desk_menu {
    display: none;
  }
  .only_mobile_tab_menu {
    display: block;
  }
  .menu {
    margin: 7px 0 0;
    float: right;
  }
  .menu-container {
    width: 100%;
  }
  .menu-container .menu {
    display: inline-block;
  }
  .menu > ul > li > ul.normal-sub > li {
    width: 50%;
    padding: 0;
  }
  .menu > ul > li > ul > li {
    padding: 8px 0;
  }
  .menu > ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 8px 0;
  }
  .menu > ul > li > ul > li a {
    color: #777;
    padding: 0;
    width: 100%;
    display: block;
    font-size: 13px;
  }
  .menu-mobile {
    display: block !important;
    float: right;
    padding: 0 !important;
    width: 35px;
    cursor: pointer !important;
    height: 35px;
    border: solid #FF753A 2px;
    border-radius: 5px;
    z-index: 9;
  }
  .menu-mobile {
    text-align: center;
    color: #FF753A;
    font-size: 18px;
  }
  .menu-mobile:hover,
  .menu-mobile:focus {
    border-color: #000;
    color: #000;
  }
  .menu-dropdown-icon:before {
    display: block;
  }
  .menu > ul > li > ul > li {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    list-style: none;
    width: 50%;
    background: none;
    float: left;
    min-height: auto;
  }
  .menu > ul > li {
    width: 100%;
    float: none;
    display: block;
    border-bottom: solid #ddd 2px;
  }
  .menu > ul > li a {
    padding: 10px 15px 10px;
    width: 100%;
    display: block;
  }
  .menu > ul > li > ul {
    position: relative;
    padding: 10px 15px;
    overflow-y: auto;
    border: none;
    border-top: solid #ddd 2px;
    width: 100%;
    min-height: auto;
    background-image: none;
    box-shadow: none;
    margin: 0;
  }
  .menu > ul > li > ul > li:nth-child(2n+1) {
    background: #fff;
  }
  .menu > ul > li > ul.normal-sub {
    width: 100%;
    padding: 10px 15px;
  }
  .menu > ul > li > ul > li:first-child {
    margin: 0;
  }
  .menu > ul > li > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul > li > ul > li {
    float: none;
  }
  .main_menu .clearfix {
    position: absolute;
    width: 100%;
    left: 0;
    /*top: 65px;*/
    top: 105px;
    z-index: 9;
    background: #fff;
    transition: ease all 0.5s;
    opacity: 0;
    visibility: hidden;
    border-top: solid #ddd 2px;
  }
  .main_menu .clearfix.show-on-mobile {
    opacity: 1;
    visibility: visible;
  }
  .responsive_logo {
    display: block;
  }
  .desk_logo {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  body .container {
    max-width: 1290px;
  }
}
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.service-card img, .product-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.services img.wp-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.breadcrumbs {
  color: #d5dce3;
}
.breadcrumbs span.current-item {
  color: #487399;
}
.breadcrumbs a {
  color: #d5dce3;
}
@media screen and (max-width: 767px) {
  .breadcrumbs a {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs span {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .wp-block-list li {
    font-size: 14px;
  }
}

.footer {
  padding-top: 25px;
  padding-bottom: 25px;
  background: #132f4a;
  color: #fff;
}
.footer-menu-list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-column-gap: 56px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: start;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-menu-list li {
  padding: 0;
}
.footer-menu-list li a {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2em;
}
.footer-menu-list li a:hover, .footer-menu-list li a:focus {
  color: #2ab4d0;
}
.footer-description {
  color: #7e8e9d;
}
@media screen and (max-width: 992px) {
  .footer-description {
    margin-bottom: 25px;
    text-align: left;
  }
}
.footer-form .cf7-custom-form {
  padding: 0;
}
.footer-form .cf7-custom-form .cf7-row {
  margin-bottom: 0;
}
.footer-form .cf7-custom-form label {
  color: #fff;
}
.footer-form .cf7-custom-form input,
.footer-form .cf7-custom-form textarea {
  background-color: #2c4d6d;
  border: none !important;
  max-height: 140px;
  color: #fff;
}
.footer-form .cf7-custom-form input[type=submit] {
  background-color: #00a4d3;
  max-width: 200px;
  width: 100%;
  color: #fff;
}
.footer .social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.footer .social-icons a {
  display: inline-flex;
  line-height: 1;
}
.footer .footer_phone {
  margin-top: 12px;
  text-align: right;
}
.footer .footer_phone b {
  font-weight: 600;
}
.footer .footer_phone p {
  margin: 4px 0 0;
  color: #7e8e9d;
}

.footer-logo img {
  max-width: 220px;
  height: auto;
}
@media screen and (max-width: 992px) {
  .footer-logo img {
    width: 240px;
  }
}

.row-socials p {
  margin: 0;
  color: #7e8e9d;
}

hr {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

body .footer-menu-list {
  justify-content: center;
}
@media screen and (max-width: 992px) {
  body .footer-menu-list {
    grid-template-columns: repeat(2, 1fr);
    justify-content: start;
    column-gap: 40px;
  }
  body .footer-menu-list li {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 576px) {
  body .footer-menu-list {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
  }
  body .footer-menu-list li {
    margin-bottom: 12px;
  }
}

.home .footer .footer-form {
  display: none !important;
}

.hero-section {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  text-align: center;
  background-color: #a8a8a8;
}
@media screen and (min-width: 992px) {
  .hero-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.hero-section h1 {
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .hero-section .hero-section-text {
    display: none;
  }
}

.shop-hero {
  position: relative;
  padding: clamp(40px, 6vw, 60px) 20px;
  min-height: clamp(360px, 40vw, 480px);
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #FF532C 0%, #D32C1E 100%);
  opacity: 0.9;
  z-index: 0;
}
.shop-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}
.shop-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}
.shop-hero h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  margin-bottom: 12px;
}
.shop-hero .hero-section-text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 575px) {
  .shop-hero .hero-section-text {
    font-size: 15px;
  }
}
.shop-hero .hero-section-text p {
  color: #FFD9D9;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
}

.shop-archive-controls {
  padding: clamp(32px, 5vw, 56px) 0 clamp(32px, 6vw, 72px);
  background-color: #fff;
  border-bottom: 1px solid rgba(20, 20, 43, 0.08);
}
.shop-archive-controls .shop-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.shop-archive-controls .shop-breadcrumbs {
  font-size: 14px;
  color: #6d7485;
}
.shop-archive-controls .shop-breadcrumbs nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background-color: transparent;
  padding: 0;
}
.shop-archive-controls .shop-breadcrumbs a {
  color: #6d7485;
}
.shop-archive-controls .shop-breadcrumbs .sep {
  color: rgba(0, 0, 0, 0.25);
}
.shop-archive-controls .shop-controls__toolbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  justify-content: flex-start;
}
.shop-archive-controls .shop-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #5b6171;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.shop-archive-controls .shop-search {
  position: relative;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 4px;
  background: #f2f4f6;
  padding: 0 16px;
  height: 60px;
}
.shop-archive-controls .shop-search input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #313040;
  letter-spacing: 0;
  padding-left: 20px;
}
.shop-archive-controls .shop-search input::placeholder {
  color: #939ba3;
  font-weight: 400;
}
.shop-archive-controls .shop-search input:focus {
  outline: none;
}
.shop-archive-controls .shop-controls__search label {
  display: none;
}
.shop-archive-controls .shop-search button {
  border: none;
  background: none;
  order: -1;
  width: 48px;
  height: 48px;
  padding: 0;
  margin-right: 12px;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  min-width: 0;
}
.shop-archive-controls .shop-search button::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 12.5h-.79l-.28-.27a5.39 5.39 0 001.22-3.38 5.41 5.41 0 10-5.41 5.41 5.39 5.39 0 003.38-1.22l.27.28v.79l4.5 4.5 1.5-1.5zm-5.67 0a3.69 3.69 0 113.69-3.69 3.69 3.69 0 01-3.69 3.69z' fill='%239393a3'/%3E%3C/svg%3E") center/contain no-repeat;
}
.shop-archive-controls .shop-controls__search {
  width: 100%;
}
.shop-archive-controls .shop-select,
.shop-archive-controls .shop-sort-select select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #dfe3ea;
  padding: 12px 14px;
  font-size: 16px;
  color: #1d2a35;
}
.shop-archive-controls .shop-sort-select {
  display: inline-flex;
  width: 200px;
}
.shop-archive-controls .shop-controls__sort {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.shop-archive-controls .shop-controls__layout {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 32px;
}
@media screen and (max-width: 991px) {
  .shop-archive-controls .shop-controls__layout {
    grid-template-columns: 1fr;
  }
}
.shop-archive-controls .shop-filters {
  width: 100%;
  max-width: 300px;
  border: 1px solid #d5dce3;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-height: max-content;
}
.shop-archive-controls .shop-filters h3 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #313040;
  margin: 0;
}
.shop-archive-controls .shop-filters p {
  display: none;
}
.shop-archive-controls .shop-filters__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #d5dce3;
  padding-bottom: 16px;
}
.shop-archive-controls .shop-filters__section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.shop-archive-controls .shop-filters__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shop-archive-controls .shop-filters__list .shop-filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #313040;
}
.shop-archive-controls .shop-filters__list .shop-filter-checkbox input[type=checkbox] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #d5dce3;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.shop-archive-controls .shop-filters__list .shop-filter-checkbox input[type=checkbox]:checked {
  background: #ff3d00;
  border-color: #ff3d00;
}
.shop-archive-controls .shop-filters__list .shop-filter-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.shop-archive-controls .shop-filters__list .shop-filter-checkbox span {
  line-height: 1.4;
}
.shop-archive-controls .shop-filters__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.shop-archive-controls .shop-filters__actions .btn {
  min-width: 100%;
  height: 40px;
  justify-content: center;
  background: #ff3d00;
  color: #fff;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  border-radius: 2px;
}
.shop-archive-controls .shop-filters__actions .shop-filters__clear {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #939ba3;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  height: 26px;
  line-height: 1.6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.shop-archive-controls .shop-filters__actions .btn.btn-outline {
  min-width: auto;
  background: none;
  border: none;
  padding: 0;
  height: 26px;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #939ba3;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.shop-archive-controls .shop-layout__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.shop-archive-controls .shop-filters-toggle {
  display: none;
  width: 100%;
  border: 1px solid #ff3d00;
  border-radius: 4px;
  padding: 10px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ff3d00;
  background: transparent;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.shop-archive-controls .shop-filters-toggle__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ff3d00;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 991px) {
  .shop-archive-controls .shop-controls__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .shop-archive-controls .shop-filters-toggle {
    display: inline-flex;
  }
  .shop-archive-controls .shop-filters {
    display: none;
    max-width: 100%;
  }
  .shop-archive-controls .shop-filters.is-open {
    display: block;
  }
}
.shop-archive-controls .shop-products-placeholder {
  min-height: 40px;
  border: 1px dashed rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}
.shop-archive-controls .shop-results-panel {
  border: 1px solid rgba(20, 20, 43, 0.08);
  border-radius: 14px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 25px 45px rgba(19, 47, 74, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.shop-archive-controls .shop-results-panel__summary {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}
.shop-archive-controls .shop-results-panel__count {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.shop-archive-controls .shop-results-panel__label {
  margin: 0;
  color: #939ba3;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.shop-archive-controls .shop-results-panel__value {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1c2a3a;
}
.shop-archive-controls .shop-active-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 29px;
}
.shop-archive-controls .shop-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 16px;
  background-color: #f2f4f6;
  color: #313040;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
}
.shop-archive-controls .shop-tag .shop-tag__text {
  margin: 0;
}
.shop-archive-controls .shop-tag .shop-tag__remove {
  background: transparent;
  border: 0;
  font-size: 14px;
  color: #939ba3;
  margin-left: 6px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.shop-archive-controls #shop-products {
  width: 100%;
}
.shop-archive-controls #shop-products.is-loading {
  opacity: 0.5;
  pointer-events: none;
}
.shop-archive-controls #shop-products .products {
  width: 100%;
}
.shop-archive-controls #shop-products .woocommerce-pagination {
  margin-top: 0;
}
.shop-archive-controls .shop-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}
.shop-archive-controls .shop-pagination__nav {
  flex: 1 1 auto;
}
.shop-archive-controls .shop-pagination__total {
  font-size: 15px;
  font-weight: 600;
  color: #1c2a3a;
}

.cf7-custom-form {
  background: transparent;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.cf7-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.cf7-column {
  flex: 1;
  min-width: 250px;
}

.cf7-custom-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #1e293b;
}

.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.wpcf7 textarea {
  min-height: 100px;
}

.cf7-required-note {
  font-size: 12px;
  color: #1e293b;
  margin-bottom: 15px;
}

.cf7-buttons p {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cf7-clear,
.cf7-submit {
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cf7-clear {
  background: #f0f0f0;
  color: #333;
}

.cf7-submit {
  background: #00a4d3;
  color: white;
}

.cf7-submit:hover {
  background: #008cb3;
}

.text-image__image {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
}
.text-image__content {
  padding: 10px 15px;
}

@media screen and (min-width: 991px) {
  .services.section-services {
    background-size: 165%;
    background-position: 60%;
  }
}
.services.section-services .element-bg:before {
  background: rgba(236, 239, 241, 0.6);
}
.services .services-slider-wrapper .service {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px;
  background-color: #fff;
  border-radius: 6px;
}
.services .services-slider-wrapper .service-slide {
  padding: 15px 10px;
}
.services .services-slider-wrapper .service-slide a {
  color: inherit;
}
.services .services-slider-wrapper .service-slide .service-thumbnail {
  margin-top: auto;
}
.services .services-slider-wrapper .service-slide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services .services-slider-wrapper .service-slide-head .post-icon {
  height: auto;
  width: 25px;
}
.services .services-slider-wrapper .service-slide-title {
  max-width: 80%;
}
@media screen and (max-width: 767px) {
  .services .services-slider-wrapper .service-slide-title {
    font-size: 16px;
    font-weight: 600;
  }
}
.services .slick-prev,
.services .slick-next {
  font-size: 0;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  z-index: 10;
}
.services .slick-prev:before,
.services .slick-next:before {
  content: "";
  display: none;
}
.services .slick-prev {
  left: 0;
}
@media screen and (min-width: 1420px) {
  .services .slick-prev {
    left: -45px;
  }
}
.services .slick-next {
  right: 0;
}
@media screen and (min-width: 1420px) {
  .services .slick-next {
    right: -45px;
  }
}
.services .slick-prev::after {
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background-image: url("/wp-content/themes/trackensure/assets/images/arrow-left-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.services .slick-next::after {
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background-image: url("/wp-content/themes/trackensure/assets/images/arrow-right-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (min-width: 767px) {
  .products .slider-products .products-slide .product {
    display: flex;
    flex-direction: column;
  }
  .products .slider-products .products-slide .product .product-buttons {
    margin-top: auto;
  }
}
@media screen and (max-width: 1400px) {
  .products .slider-products .product-buttons > div {
    flex-direction: column;
  }
  .products .slider-products .product-buttons > div a {
    margin-bottom: 10px;
  }
}
.products .slider-products .products-slide {
  padding: 15px 10px;
}
.products .slider-products .slick-prev,
.products .slider-products .slick-next {
  font-size: 0;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  z-index: 10;
}
.products .slider-products .slick-prev:before,
.products .slider-products .slick-next:before {
  content: "";
  display: none;
}
.products .slider-products .slick-prev {
  left: 0;
}
@media screen and (min-width: 1420px) {
  .products .slider-products .slick-prev {
    left: -45px;
  }
}
.products .slider-products .slick-next {
  right: 0;
}
@media screen and (min-width: 1420px) {
  .products .slider-products .slick-next {
    right: -45px;
  }
}
.products .slider-products .service-slide {
  padding: 15px 10px;
}
.products .slider-products .slick-prev::after {
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background-image: url("/wp-content/themes/trackensure/assets/images/arrow-left-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.products .slider-products .slick-next::after {
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background-image: url("/wp-content/themes/trackensure/assets/images/arrow-right-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.woocommerce ul.products .product,
.woocommerce ul.products .woocommerce-page ul.products li.product {
  background-color: transparent !important;
}

body .product {
  padding: 16px;
  transition: 0.3s linear;
  background-color: transparent;
  border-radius: 6px;
  border: none;
}
body .product .product-categories a {
  color: #7e8e9d;
  text-transform: uppercase;
}
body .product .woocommerce-loop-product__title {
  font-size: 20px;
  color: #132f4a;
}
body .product .price, body .product .product-price, body .product .woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
  color: #34a853;
  font-size: 24px;
  font-weight: 500;
}

.woocommerce ul.products .product, .woocommerce ul.products .woocommerce-page ul.products li.product {
  padding: 16px;
  transition: 0.3s linear;
  background-color: #f2f4f6;
  border-radius: 6px;
}
.woocommerce ul.products .product .woocommerce-loop-product__title, .woocommerce ul.products .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  font-size: 20px;
  color: #132f4a;
  text-align: left;
}
.woocommerce ul.products .product .price, .woocommerce ul.products .woocommerce-page ul.products li.product .price {
  color: #34a853;
  font-size: 24px;
  font-weight: 500;
}

.single-product .product {
  background-color: inherit;
}

.service-item-image-bestsellers img {
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

.single-service .archive-service-search-position .fab {
  color: #2ab4d0;
  font-size: 16px;
  padding: 0 5px;
}

.container-services .service-changed {
  flex-direction: column !important;
}
.container-services .service-changed .service-item-content {
  padding: 15px !important;
}
@media screen and (min-width: 767px) {
  .container-services .service-changed .service-item-image img {
    height: 400px;
  }
}

.single-service-head .post-thumbnail img {
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .single-service-head {
    flex-direction: column-reverse;
  }
  .single-service-head .single-service-heading {
    margin-top: 30px;
  }
  .single-service-head .post-thumbnail img {
    max-height: 240px;
    object-fit: cover;
  }
}

@media screen and (max-width: 767px) {
  .single-service-button a {
    width: 100%;
  }
}

/*single-services_type*/
.single-service-feature {
  padding: 30px;
  margin-bottom: 15px;
  background-color: #f2f4f6;
}
.single-service-feature .single-service-feature-list ul li {
  display: flex;
  align-items: center;
}
.single-service-feature .single-service-feature-list ul li img {
  margin-right: 10px;
}

.single-service-feature ul {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 0;
}

.single-service-main-gallery {
  margin-top: 30px;
  margin-bottom: 30px;
}

.single-service-main-gallery img {
  max-height: 250px;
  object-fit: cover;
}

.single-service-main-bottom ul {
  columns: 2;
}

.single-service-main-bottom ul li {
  margin-bottom: 15px;
  padding-right: 15px;
}

.single-service-main-box {
  border: 1px solid #d5dce3;
  padding: 30px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .single-service-main-box {
    padding: 12px;
  }
}

.single-service-main-image img {
  margin-top: -200px;
  max-height: 320px;
  border-radius: 6px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .single-service-main-image img {
    margin-top: 15px;
  }
}

.single-service-features-mobile-slider .slick-slide {
  padding: 10px;
}

.single-service-main-top img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}

.single-service-main {
  background-color: #f2f4f6;
}

.single-services_type .entry-title {
  font-size: 32px;
  font-weight: 500;
  color: #132f4a;
}

.single-services_type .single-service-content {
  background-color: #f2f4f6;
  margin-top: 15px;
  padding: 15px;
  color: #7e8e9d;
}

@media screen and (max-width: 575px) {
  .slider-hero {
    margin-bottom: 0 !important;
  }
}
.slider-hero__wrapper {
  margin-top: 15px;
}
@media screen and (min-width: 1200px) {
  .slider-hero__wrapper {
    margin-top: 100px;
  }
}
.slider-hero__wrapper h4 {
  font-weight: 400;
  line-height: 1.4em;
}
@media screen and (max-width: 767px) {
  .slider-hero__wrapper h4 {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .slider-hero__wrapper h1 {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 991px) {
  .slider-hero .py-4 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
}
.slider-hero .hero {
  position: relative;
  min-height: 450px;
}
@media screen and (min-width: 991px) {
  .slider-hero .hero {
    min-height: 860px;
  }
}
@media screen and (max-width: 575px) {
  .slider-hero .hero.section-padding {
    padding-top: 30px !important;
    padding-bottom: 65px !important;
  }
}
.slider-hero .hero__downloads {
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .slider-hero .hero__downloads {
    margin-bottom: 15px !important;
  }
}
.slider-hero .hero__downloads a {
  background-color: #fff;
  border-radius: 6px;
}
.slider-hero .hero__downloads a img {
  width: 100%;
  height: auto;
  max-width: 160px;
}
@media screen and (min-width: 991px) {
  .slider-hero .hero__downloads a img {
    max-width: 300px;
  }
}
.slider-hero .hero__downloads a.btn-googleplay {
  margin-right: 10px;
}
.slider-hero .hero__downloads a.btn-appstore {
  margin-left: 10px;
}
.slider-hero .hero .button__download {
  padding: 10px 55px;
  font-size: 12px;
  width: 100%;
}
@media screen and (min-width: 991px) {
  .slider-hero .hero .button__download {
    padding: 20px 30px;
    font-size: 24px;
  }
}
.slider-hero .hero .button__download svg {
  margin-left: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .slider-hero .hero .button__download svg {
    display: none;
  }
}
.slider-hero .hero h1, .slider-hero .hero h2, .slider-hero .hero h3, .slider-hero .hero h4, .slider-hero .hero h5, .slider-hero .hero h6, .slider-hero .hero p {
  color: #fff;
}
.slider-hero .slick-prev,
.slider-hero .slick-next {
  font-size: 0;
  width: 100px;
  height: 100%;
  background: none;
  border: none;
  z-index: 10;
}
@media screen and (max-width: 575px) {
  .slider-hero .slick-prev,
  .slider-hero .slick-next {
    width: 70px;
  }
}
.slider-hero .slick-prev:before,
.slider-hero .slick-next:before {
  content: "";
  display: none;
}
.slider-hero .slick-prev {
  left: 0;
}
.slider-hero .slick-next {
  right: 0;
}
.slider-hero .slick-prev::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 25px;
  background-image: url("/wp-content/themes/trackensure/assets/images/arrow-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 575px) {
  .slider-hero .slick-prev::after {
    width: 24px;
  }
}
.slider-hero .slick-next::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 25px;
  background-image: url("/wp-content/themes/trackensure/assets/images/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 575px) {
  .slider-hero .slick-next::after {
    width: 24px;
  }
}

.slick-slider .slick-dots {
  bottom: 30px;
}
.slick-slider .slick-dots li {
  width: 14px;
  height: 14px;
  margin: 0 7px;
}
.slick-slider .slick-dots li button:before {
  font-size: 14px;
  color: #fff;
  opacity: 1;
}
.slick-slider .slick-dots li.slick-active button:before {
  color: #7e8e9d;
}

/* Header */
.site-header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 100;
}

.site-header__inner {
  min-height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  padding: 20px 24px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 1 auto;
}

.site-header__logo {
  display: block;
  width: 240px;
  height: auto;
}

.site-header__logo img,
.site-header__logo svg {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: auto;
  position: relative;
  z-index: 110;
}

.site-nav::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 90;
}

.site-nav--open::before {
  opacity: 1;
  visibility: visible;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list li {
  position: relative;
}

.site-nav__cta-item {
  margin-left: 14px;
  color: #fff;
}

.site-nav__list a {
  display: block;
  width: 100%;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.03em;
  color: #313040;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  color: #FF3D00;
}

.site-nav__cta-item .site-nav__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 50px;
  border-radius: 4px;
  background: #FF3D00;
  color: #fff;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  background: #d33300;
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px;
  margin: 0;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle .burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
}

.menu-toggle .burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #313040;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active .burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .burger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.site-nav-is-open {
  overflow: hidden;
}

@media (max-width: 1200px) {
  .site-header__inner {
    max-width: 1040px;
  }
}
@media (max-width: 991.98px) {
  .site-header__brand {
    justify-content: space-between;
    width: 100%;
  }
  .site-header__inner {
    min-height: 72px;
    padding: 12px 16px;
    max-width: none;
    gap: 16px;
  }
  .site-header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    width: auto;
    height: 80px;
    font-size: 20px;
  }
  .site-header__logo img,
  .site-header__logo svg {
    height: 80px;
    width: auto;
    z-index: 999;
  }
  .site-nav__list {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: 360px;
    margin: 0 auto;
    padding: 120px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 26px 44px rgba(15, 23, 42, 0.28);
    transform: translateX(120%);
    transition: transform 0.25s ease;
    z-index: 115;
    overflow: hidden;
  }
  .site-nav__list li {
    width: 100%;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  }
  .site-nav__list li:last-child {
    border-bottom: none;
  }
  .site-nav__list a {
    display: block;
    width: 100%;
    padding: 18px 0;
    font-size: 16px;
    line-height: 1.55;
  }
  .site-nav__cta-item {
    margin-left: 0;
    padding-top: 0;
    border-bottom: none;
    color: #fff;
    display: flex;
  }
  .site-nav__cta-item .site-nav__cta {
    display: inline-flex;
    width: 100%;
    height: 50px;
    border-radius: 6px;
    font-size: 18px;
    justify-content: center;
    align-items: center;
  }
  .menu-toggle {
    display: inline-flex;
    width: 38px;
    height: 38px;
    z-index: 140;
    margin-left: auto;
  }
  .site-nav--open::before {
    opacity: 1;
    visibility: visible;
  }
  .site-nav--open .site-nav__list {
    transform: translateX(0);
  }
  .site-nav--open .menu-toggle {
    color: #111827;
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
  }
  .site-nav--open .menu-toggle .burger span {
    background: #111827;
  }
}
@media (max-width: 599.98px) {
  .site-nav__list {
    left: 0;
    right: 0;
    width: auto;
    top: 0;
    max-width: none;
    border-radius: 0;
    padding: 96px 24px 32px;
  }
}
@media (min-width: 992px) {
  .menu-toggle {
    display: none !important;
  }
}
.archive-service-search-wrap .btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  border: none !important;
  line-height: 2em;
  right: 15px;
}
@media screen and (max-width: 991px) {
  .archive-service-search-wrap .btn {
    right: 25px;
  }
}
@media screen and (max-width: 991px) {
  .archive-service-search .archive-service-search-view span {
    display: none;
  }
  .archive-service-search .archive-service-search-view svg {
    width: 24px;
    height: auto;
  }
}
.archive-service-search-sort {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .archive-service-search-sort {
    justify-content: flex-end;
  }
}
.archive-service-search-sort p {
  flex: 1 1 100%;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 1rem;
  color: #132f4a;
}
.archive-service-search-position a {
  color: #132f4a;
  margin-bottom: 15px;
}
.archive-service-search-position a span {
  padding-left: 5px;
}
.archive-service-search-position a:hover {
  color: #487399;
}

.products-section .product-wrap {
  padding: 15px !important;
}
@media screen and (max-width: 630px) {
  .products-section .product-wrap {
    padding: 5px !important;
  }
}
.products-section .product .product-image img {
  height: 235px;
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 630px) {
  .archive-service-search-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
body .product.row-list {
  align-items: center;
}
@media screen and (max-width: 767px) {
  body .product.row-list {
    flex-direction: row;
  }
}
body .product.row-list .product-list-wrap {
  padding: 24px 40px !important;
}

body .product-buttons .button {
  width: 48%;
  text-align: center;
  padding: 10px 0;
}
@media screen and (max-width: 1199px) {
  body .product-buttons .button {
    font-size: 12px;
  }
}

@media screen and (min-width: 992px) {
  .service .service-item-content {
    padding: 0 30px;
  }
}
.service .service-item-content .button {
  text-align: center;
}
@media screen and (min-width: 630px) {
  .service .service-item-content .button {
    min-width: 120px;
  }
}
@media screen and (min-width: 991px) {
  .service:not(.flex-row-reverse) .service-item-content {
    padding-left: 70px;
  }
}
.service img.img-responsive {
  object-fit: cover;
  border-radius: 10px;
  height: 415px;
}
@media screen and (max-width: 767px) {
  .service img.img-responsive {
    height: 180px;
  }
}

.service-pagination a, .service-pagination span {
  margin: 0;
  padding: 12px 15px;
  height: 2.5em;
  min-width: 2em;
  color: #d5dce3;
  line-height: 1;
  font-size: 1em;
  font-weight: 400;
  border: 1px solid #d5dce3;
  text-decoration: none;
  display: block;
}
.service-pagination a.current, .service-pagination a:hover, .service-pagination span.current, .service-pagination span:hover {
  background-color: #ff3d00 !important;
  border: 1px solid #ff3d00 !important;
  color: #fff !important;
}

.contact-us-message a {
  color: #34a853;
}

.woocommerce-ordering {
  display: none;
}

.single-blog-post .single-blog-post-wrap .reviews-container .show-reviews {
  color: #2ab4d0 !important;
}
.single-blog-post .single-blog-post-wrap .reviews-container .social-share {
  margin-left: auto;
}
.single-blog-post .single-blog-post-wrap .reviews-container .social-share i {
  font-size: 20px;
  color: #2ab4d0;
  margin: 0 5px;
}
.single-blog-post .single-blog-post-bottom-content img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 6px;
}
.single-blog-post .single-blog-post-extra-content .col-12 {
  border: 1px solid #d5dce3;
  border-radius: 6px;
  padding: 15px;
  width: 97.5%;
  margin: 0 auto;
}
.single-blog-post .single-blog-post-info-box {
  padding: 15px;
  background-color: #f2f4f6;
  border-radius: 6px;
}
.single-blog-post .single-blog-post-main .single-blog-post-top-image img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 6px;
}

.social-share-mods {
  text-align: right;
}
.social-share-mods a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 6px;
  border-radius: 50%;
  background-color: rgba(19, 47, 74, 0.08);
  color: #132f4a;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.social-share-mods a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.social-share-mods a:hover, .social-share-mods a:focus {
  background-color: rgba(19, 47, 74, 0.15);
  color: #2ab4d0;
}

.similar-posts .entry-title {
  margin-top: 30px;
  font-size: 20px !important;
}

.products-cats-section {
  background-color: #f2f4f6;
}

.product-cat-item {
  padding: 15px;
}

.product-cat-item.Uncategorized {
  display: none;
}

.product-cat-item-wrap {
  background-color: white;
  min-height: 535px;
}
@media screen and (max-width: 575px) {
  .product-cat-item-wrap {
    min-height: unset;
  }
}

.product-cat-item-wrap img {
  padding: 10px;
  height: 500px;
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 575px) {
  .product-cat-item-wrap img {
    height: auto;
  }
}

.product-cat-item a {
  color: #14314c;
}

/* ===== FOOTER (pixel-perfect @1920, responsive below) ===== */
/* Базова сітка контейнера */
.site-footer .container {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: 16px;
}

.footer-contact {
  background: #EE7D4A;
  color: #fff;
  padding-block: 68px;
  font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.footer-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-start;
  gap: 30px;
}

@media (min-width: 1200px) {
  .footer-contact .container {
    padding-inline: clamp(24px, 6vw, 425px);
  }
  .footer-contact__grid {
    grid-template-columns: 520px 520px;
    justify-content: center;
  }
}
@media (min-width: 1920px) {
  .footer-contact .container {
    padding-inline: 425px;
  }
  .footer-contact {
    min-height: 417px;
  }
}
.footer-contact__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 110%;
  margin: 0 0 12px;
  color: #fff;
}

.footer-contact__underline {
  width: 100px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  display: block;
  margin: 0 0 24px;
}

.footer-contact__desc,
.footer-contact__line {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #fff;
  margin: 0 0 12px;
  max-width: 364px;
}

.footer-contact__line a {
  color: #fff;
  text-decoration: none;
}

.footer-contact__line a:hover {
  text-decoration: underline;
}

.footer-socials {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-socials__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.footer-socials__item {
  width: 16px;
  height: 16px;
  flex: none;
}

.footer-socials__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #fff;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

.footer-socials__link .icon,
.footer-socials__link svg,
.footer-socials__link img {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-socials__link svg,
.footer-socials__link .icon {
  fill: currentColor;
  stroke: currentColor;
}

.footer-socials__link img:not(.style-svg) {
  filter: brightness(0) invert(1);
}

.footer-socials__link:hover,
.footer-socials__link:focus-visible {
  opacity: 1;
}

.footer-socials__link--static {
  cursor: default;
  pointer-events: none;
}

.footer-contact__right {
  display: flex;
  justify-content: flex-start;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 520px;
}

.footer-input {
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  background: #fff;
  border: 1px solid #D5DCE3;
  border-radius: 4px;
  padding: 0 16px;
  color: #111827;
  font: 400 16px/160% Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.footer-input::placeholder {
  color: #939BA3;
}

.footer-form textarea.footer-input {
  height: 90px;
  min-height: 90px;
  resize: vertical;
  padding: 13px 16px 6px;
}

.footer-btn {
  box-sizing: border-box;
  height: 40px;
  width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  font: 400 16px/160% Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  cursor: pointer;
}

.footer-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer-bottom .container {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: clamp(24px, 6vw, 425px);
}

@media (min-width: 1920px) {
  .footer-bottom .container {
    padding-inline: 425px;
  }
}
.footer-bottom__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

.footer-links .footer-inline {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.footer-links .footer-inline a,
.footer-links .footer-inline .sep {
  font: 400 14px/150% Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #939BA3;
}

.footer-copy {
  margin: 0 0 0 auto;
  white-space: nowrap;
  color: #939BA3;
  font: 400 14px/150% Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

@media (max-width: 991.98px) {
  .footer-bottom .container {
    padding-inline: 16px;
  }
  .footer-bottom__grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .footer-links .footer-inline,
  .footer-copy {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}
.footer-menu {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.footer-menu a {
  color: #939BA3;
  text-decoration: none;
  font: 400 14px/150% Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.footer-menu a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  color: #939BA3;
  font: 400 14px/150% Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

@media (max-width: 991.98px) {
  .site-footer .container {
    padding-inline: 16px;
  }
  .footer-bottom::before {
    transform: translateY(-14px);
  }
}
.footer-form,
.wpcf7 form.footer-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 520px;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  --ff-bg: #ffffff;
  --ff-border: #D5DCE3;
  --ff-radius: 4px;
  --ff-ph: #939BA3;
  --ff-accent: #ffffff;
  --ff-focus: rgba(255, 255, 255, .6);
  --ff-sep: 16px;
}
.footer-form input[type=text],
.footer-form input[type=email],
.footer-form input[type=tel],
.footer-form input[type=url],
.footer-form input[type=number],
.footer-form select,
.wpcf7 form.footer-form input[type=text],
.wpcf7 form.footer-form input[type=email],
.wpcf7 form.footer-form input[type=tel],
.wpcf7 form.footer-form input[type=url],
.wpcf7 form.footer-form input[type=number],
.wpcf7 form.footer-form select {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 520px;
  height: 50px;
  padding: 0 16px;
  background: var(--ff-bg);
  border: 1px solid var(--ff-border);
  border-radius: var(--ff-radius);
  color: #222;
  outline: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.footer-form input[type=text]::placeholder,
.footer-form input[type=email]::placeholder,
.footer-form input[type=tel]::placeholder,
.footer-form input[type=url]::placeholder,
.footer-form input[type=number]::placeholder,
.footer-form select::placeholder,
.wpcf7 form.footer-form input[type=text]::placeholder,
.wpcf7 form.footer-form input[type=email]::placeholder,
.wpcf7 form.footer-form input[type=tel]::placeholder,
.wpcf7 form.footer-form input[type=url]::placeholder,
.wpcf7 form.footer-form input[type=number]::placeholder,
.wpcf7 form.footer-form select::placeholder {
  color: var(--ff-ph);
  opacity: 1;
}
.footer-form input[type=text]:focus,
.footer-form input[type=email]:focus,
.footer-form input[type=tel]:focus,
.footer-form input[type=url]:focus,
.footer-form input[type=number]:focus,
.footer-form select:focus,
.wpcf7 form.footer-form input[type=text]:focus,
.wpcf7 form.footer-form input[type=email]:focus,
.wpcf7 form.footer-form input[type=tel]:focus,
.wpcf7 form.footer-form input[type=url]:focus,
.wpcf7 form.footer-form input[type=number]:focus,
.wpcf7 form.footer-form select:focus {
  border-color: var(--ff-accent);
  box-shadow: 0 0 0 3px var(--ff-focus);
}
.footer-form textarea,
.wpcf7 form.footer-form textarea {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  width: 520px;
  height: 90px;
  padding: 13px 16px 6px;
  background: var(--ff-bg);
  border: 1px solid var(--ff-border);
  border-radius: var(--ff-radius);
  color: #222;
  resize: vertical;
  min-height: 90px;
  outline: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.footer-form textarea::placeholder,
.wpcf7 form.footer-form textarea::placeholder {
  color: var(--ff-ph);
  opacity: 1;
}
.footer-form textarea:focus,
.wpcf7 form.footer-form textarea:focus {
  border-color: var(--ff-accent);
  box-shadow: 0 0 0 3px var(--ff-focus);
  /* focus visible. :contentReference[oaicite:4]{index=4} */
}
.footer-form .wpcf7-not-valid-tip,
.wpcf7 form.footer-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
  color: #b00020;
}
.footer-form .wpcf7-response-output,
.wpcf7 form.footer-form .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 8px 12px;
  border: 1px dashed var(--ff-accent);
  color: #fff;
}
.footer-form .footer-btn,
.footer-form input[type=submit].wpcf7-submit,
.wpcf7 form.footer-form .footer-btn,
.wpcf7 form.footer-form input[type=submit].wpcf7-submit {
  box-sizing: border-box;
  width: 120px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  gap: 10px;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.05s ease;
}
.footer-form .footer-btn:hover,
.footer-form input[type=submit].wpcf7-submit:hover,
.wpcf7 form.footer-form .footer-btn:hover,
.wpcf7 form.footer-form input[type=submit].wpcf7-submit:hover {
  background: rgba(255, 255, 255, 0.12);
}
.footer-form .footer-btn:active,
.footer-form input[type=submit].wpcf7-submit:active,
.wpcf7 form.footer-form .footer-btn:active,
.wpcf7 form.footer-form input[type=submit].wpcf7-submit:active {
  transform: translateY(1px);
}
.footer-form .footer-btn:focus,
.footer-form input[type=submit].wpcf7-submit:focus,
.wpcf7 form.footer-form .footer-btn:focus,
.wpcf7 form.footer-form input[type=submit].wpcf7-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--ff-focus);
}
.footer-form .is-hidden,
.wpcf7 form.footer-form .is-hidden {
  display: none !important;
}
@media (max-width: 600px) {
  .footer-form,
  .wpcf7 form.footer-form {
    width: 100%;
  }
  .footer-form input[type=text],
  .footer-form input[type=email],
  .footer-form input[type=tel],
  .footer-form input[type=url],
  .footer-form input[type=number],
  .footer-form select,
  .footer-form textarea,
  .wpcf7 form.footer-form input[type=text],
  .wpcf7 form.footer-form input[type=email],
  .wpcf7 form.footer-form input[type=tel],
  .wpcf7 form.footer-form input[type=url],
  .wpcf7 form.footer-form input[type=number],
  .wpcf7 form.footer-form select,
  .wpcf7 form.footer-form textarea {
    width: 100%;
  }
}

.footer-form > * + * {
  margin-top: 16px;
}

.footer-links .footer-inline {
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
  width: auto;
  max-width: 100%;
}

.footer-links .footer-inline a,
.footer-links .footer-inline .sep {
  white-space: nowrap;
  color: #939BA3;
  font-size: 14px;
}

.footer-links .footer-inline .sep {
  display: inline-block;
  padding: 0;
}

@media (max-width: 480px) {
  .footer-bottom__grid {
    justify-content: center;
  }
}
.slide_banner1 {
  background-image: url("../pictures/slide1.jpg");
  min-height: 450px;
  position: relative;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom center;
  box-shadow: 0 -14px 10px 0 rgba(0, 0, 0, 0.2);
}

.full {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}

.slide_cont {
  float: left;
  width: 100%;
  margin-top: 85px;
}

.slide_cont h2 {
  color: #fff;
  font-size: 55px;
  font-weight: 600;
  line-height: 60px;
  margin: 0;
  letter-spacing: -1px;
  margin-bottom: 30px;
}

.layout_padding {
  padding-top: 80px;
  padding-bottom: 100px;
}

.heading_main {
  width: 100%;
  margin: 0 0 65px;
  letter-spacing: 0;
}

.heading_style_1 h2::after {
  width: 110px;
  height: 5px;
  background: #ddd;
  content: "";
  display: block;
  margin: 15px 0 30px;
}

.center_head_border h2:after,
.center_head_border:after {
  margin-left: auto !important;
  margin-right: auto !important;
}

.section-title {
  font-size: 34px;
}

ul.features-left .icon {
  padding-right: 20px;
}

ul.features-left img {
  height: 150px;
  width: auto;
}

.app-features h4 {
  text-transform: none;
  font-weight: 500;
  color: #4E342E;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #000;
  line-height: 21px;
  text-transform: uppercase;
}

.fl-inner p {
  display: table-row;
  font-weight: 400;
}

.app-features .features-left > li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e9e9e9;
}

.center {
  width: 100%;
  display: flex;
  justify-content: center;
}

.app-link img {
  width: 200px;
  height: 60px;
}

.table_price {
  float: left;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3);
  border: solid #fff 15px;
  margin-bottom: 30px;
  text-align: center;
}

.table_price_head {
  background: #c30000;
  min-height: 80px;
}

.table_price a {
  display: block;
}

.active_price .table_price_head {
  background: #FF753A;
}

.table_price_head h5 {
  font-weight: 600;
  font-size: 15px;
  line-height: 80px;
  color: #fff;
}

@media (max-width: 767px) {
  .slide_cont h2.slide-text {
    font-size: 40px;
  }
  .slide_cont {
    margin-top: 45px;
  }
  ul.features-left img {
    height: 50px;
  }
}
@media (max-width: 575px) {
  .slide_cont h2.slide-text {
    font-size: 30px;
  }
  .slide_cont {
    margin: 50px 0 100px;
  }
  #ourApplication .row.justify-content-center > [class*=col-] {
    text-align: center;
  }
  #ourApplication .row.justify-content-center .app-link img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/*# sourceMappingURL=main.css.map */
