/*=====================================
 Template Name: Catalog Volpex CSS 
 Author:  Acemind (acemind.ua@gmail.com)
 Version: 1.3.2022      
=======================================*/

@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');
@import "fonts/font-awesome/css/font-awesome.min.css";
@import "fonts/feather/feather.css";
@import "../assets/lightbox/css/lightbox.css";
@import "animate.css";
@import "normalize.css";

:root {
  --border-color: 	rgb(222, 226, 230);
  --white: 			    rgb(255, 255, 255);
  --white-08: 		  rgba(255, 255, 255, 0.8);
  --green: 			    rgb(84, 176, 50);
  --dark:           rgb(23, 32, 42);
  --color-grey:     rgb(86, 101, 115);
  --color-green:    rgb(84, 176, 50);
  --color-orange:   rgb(243, 156, 18);
  --background:     rgb(240, 242, 245);
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background: var(--background);
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.4px;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: rgb(0, 0, 0);
}


a, a:hover, .nav-link, .nav-link:hover {
  color: rgb(0, 0, 0);
}
a {
  text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
ol li,
ul li {
  margin: 0;
  padding: 0;
}

h5 {
  font-size: 1.1rem;
  font-weight: 600;
}
ul, li , ol {
  list-style: none;
  list-style-type: none;
} 

table {
  width: 100%;
}

tr,
td {
  border: 0;
}

table td,
table th {
  padding: 7px 10px;
  text-align: center;
  border: 0;
  border-right: 2px solid rgb(247, 249, 249);
  border-top: 2px solid rgb(247, 249, 249);
  font-size: .8rem;
}

table thead tr th {
  text-align: center;
  font-size: 0.8rem;
  color: #FFF;
  font-weight: 400;
  background-color: rgb(247, 249, 249);
  padding: 10px;
}

table tr {
  border: 0;
}

table td p {
  padding: 0;
  margin: 0;
  text-align: left;
}


img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
hr {
  border: 0;
  height: 1px;
  background-color: rgb(0, 0, 0);
  padding: 0;
  margin: 0 0 10px 0;
}


.animate {
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

.btn {
  font-weight: 200;
  font-size: 0.98em;
  -webkit-border-radius: 0 7px 0 7px;
  -moz-border-radius: 0 7px 0 7px;
  border-radius: 0 7px 0 7px;
}
.btn:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.btn:active {
  position: relative;
  top: 1px;
  box-shadow: none;
}
.btn-success {
  background-color: var(--green);
  border-color: var(--green);
}
.btn-success:hover {
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-dark {
  border: 1px solid var(--border-color);
}


.br-6 {
  -webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}

.form {
    position: relative
}

.form .fa-search {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #9ca3af
}

.form span {
    position: absolute;
    right: 17px;
    top: 13px;
    padding: 2px;
    border-left: 1px solid #d1d5db
}

.left-pan {
    padding-left: 7px
}

.left-pan i {
    padding-left: 10px
}

.form-input {
    height: 55px;
    text-indent: 33px;
    border-radius: 10px
}

.form-input:focus {
    box-shadow: none;
    border: 1px solid var(--green);
}


/* Preloader 
* ------------------------------------------------------ */

.preloader {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
  margin: 0 auto;
}

.preloader .preloader-circle {
  width: 80px;
  height: 80px;
  position: relative;
  border-style: solid;
  border-width: 1px;
  border-top-color: var(--green);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  z-index: 10;
  -webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
  -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  background-color: var(--white);
  -webkit-animation: zoom 2000ms infinite ease;
  animation: zoom 2000ms infinite ease;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

.preloader .preloader-circle2 {
  border-top-color: #0078ff;
}

.preloader .preloader-img {
  position: absolute;
  top: 50%;
  z-index: 200;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-top: 6px;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

.preloader .preloader-img img {
  max-width: 55px;
}

.preloader .pere-text strong {
  font-weight: 800;
  font-size: .7rem;
  text-transform: uppercase;
}


@-webkit-keyframes zoom {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }
}


/* go to top 
* ------------------------------------------------------ */

.go-top {
  display: inline-block;
  text-align: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1003;
}

.go-top a::after {
  content: "\f077";
  font-family: FontAwesome;
  color: var(--white);
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 3rem;
}

.go-top a,
.go-top a:visited {
  text-decoration: none;
  border: none;
  display: block;
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s;
  background-color: var(--green);
  background-size: 7px 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.go-top.link-is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}



/* DivTable.com */

.divTable {
  display: table;
  width: 100%;
}

.divTableRow {
  display: table-row;
}

.divTableHeading {
  background-color: #EEE;
  display: table-header-group;
}

.divTableCell,
.divTableHead {
  display: table-cell;
  vertical-align: middle;
  padding: 7px 10px;
  -webkit-border-radius:0 6px 0 6px;
  -moz-border-radius:0 6px 0 6px;
  border-radius:0 6px 0 6px;
  border: 2px solid #f0f2f5;
}

.divTableHeading {
  display: table-header-group;
  font-weight: bold;
}

.divTableFoot {
  background-color: #f0f2f5;
  display: table-footer-group;
  font-weight: bold;
}

.divTableBody {
  display: table-row-group;
}


/* Breadcrumb 
*-------------------------------------*/

.breadcrumb-content {
  padding: 20px 0 0 10px;
}

.breadcrumb {
  position: relative;
  font-size: .7rem;
  text-transform: uppercase;
  color: rgb(84, 176, 50);
}

.breadcrumb li {
  padding: 0 4px;
}

.breadcrumb>li+li:before {
  content: "›";
  padding: 0 6px 0 0;
}

.breadcrumb li a {
  color: #404040;
}

.breadcrumb li a:hover {
  color: #404040;
  text-decoration: underline;
}

.breadcrumb .fa {
  font-size: .86rem;
}

@media (max-width: 768px) {
  #header .navbar-nav .nav-item a {
    padding: 0 10px;
  }
  #header .navbar-nav a.logo .sub-domen {
    right: 18px;
  }
  .breadcrumb>li {
    display: none;
  }
  .breadcrumb>li:first-child,
  .breadcrumb>li:last-child,
  .breadcrumb>li:nth-last-child(2) {
    display: block;
  }
}

@media (max-width: 320px) {
  .hidden-xs {
    visibility: hidden;
    display: none;
  }
}


/* Header-section 
* ------------------------------------------------------ */

.header-section {
  background-color: rgb(255, 255, 255);
  position: fixed;
  width: 60px;
  height: 100vh;
  top: 0;
  left: 0;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  z-index: 5555;
}


/* Navigation
* ------------------------------------------------------ */

ul.nav li {
  display: block;
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}

.menu div {
  position: relative;
  display: block;
  width: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;
}

.menu span,
.menu span:after,
.menu span:before {
  display: block;
  height: 3px;
  background-color: rgb(84, 176, 50);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  width: 30px;
  position: absolute;
}

.menu span {
  top: 21px;
  width: 20px;
}

.menu span:after,
.menu span:before {
  content: '';
}

.menu span:before {
  top: 10px;
  width: 10px
}

.menu span:after {
  bottom: 10px;
  width: 30px
}

.menu:hover {
  cursor: pointer;
}

.menu:hover span,
.menu:hover span:before {
  width: 30px;
}

.menu.open span,
.menu.open span:after,
.menu.open span:before {
  width: 30px;
}

.menu.open span:after {
  opacity: 0;
  transition: 0.1s;
}

.menu.open span {
  transform: rotate(-45deg);
  bottom: 0px;
  transition: 0.4s;
}

.menu.open span:before {
  transform: rotate(90deg);
  top: 0px;
  transition: 0.4s;
}

li.search {
  cursor: pointer;
}

li.search:after {
  content: "\f002";
  font-family: FontAwesome;
  color: rgba(0, 0, 0, 0.8);
  font-weight: normal;
  font-style: normal;
  font-size: 1.3em;
  line-height: 60px;
}

.name-site {
  transform: rotate(270deg);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  width: 220px;
  line-height: 80px;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 600;
  position: absolute;
  bottom: 80px;
  left: -80px;
  text-align: center;
}

.name-site span {
  color: rgb(84, 176, 50);
}

.menu-content {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 3333;
  background: rgb(255, 255, 255) url('/public/images/bg.jpg') right bottom no-repeat;
  background-size: 40%;
  padding-left: 60px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  margin-left: -100%;
  padding-left: 80px;
}

.menu-content ul {
  padding-top: 20px;
  padding-bottom: 40px;
}

.menu-content li {
  display: block;
  padding: 5px;
}

.category li {
  font-weight: 500;
}

.logo {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  text-transform: uppercase;
  padding: 20px 0 7px 0;
}

.logo img {
  padding-bottom: 20px;
  width: 80px;
  height: auto;
}

.menu-content li a {
  position: relative;
}

.menu-content li a:after {
  position: relative;
  content: "";
  position: absolute;
  height: 1px;
  right: 0;
  bottom: 0px;
  left: 0px;
  -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  background-color: rgb(84, 176, 50);
  visibility: hidden;
}

.menu-content li a:hover:after {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

.menu-content h5 {
  position: relative;
  font-size: 1.1em;
}

.menu-content h5:after {
  content: "";
  position: absolute;
  height: 2px;
  top: 26px;
  left: 0px;
  width: 60px;
  background-color: rgb(84, 176, 50);
  -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

.menu-content.open {
  margin-left: 0;
}

@media (max-width: 768px) {
  .header-section {
    height: 70px;
    width: 100%;
  }
  .menu div {
    margin-top: 16px;
  }
  ul.nav li {
    display: block;
    width: 70px;
    height: 70px;
    position: absolute;
    right: 0;
    box-shadow: none;
  }
  ul.nav li.search {
    right: 70px;
    line-height: 76px;
  }
  .name-site {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .menu-content {
    padding: 80px 10px;
    background-size: 40%;
    overflow-y: scroll;
  }
}

@media (max-width: 280px) {
  .name-site {
    width: 200px;
    font-size: 1em;
  }
}


/* MAIN
*------------------------------------------------- */

.bg_winter {
  background: rgb(244, 246, 247) url(/public/images/bg_snow.png) no-repeat;
  background-position: left top;
  background-size: 100%;
}

.bg {
  background: url(/public/images/bg.png) no-repeat;
  background-position: center;
  background-size: 80%;
}

.main-section {
  width: 100%;
  min-height: 100%;
}

/* Content
* -------------------------- */
.content-wrapper {
  position: relative;
  overflow-x: hidden !important;
  padding-left: 60px;
}
.content-wrapper.toggle {
  margin-left: 0;
}

.content {
  position: relative;
  min-height: 100vh;
  padding-top: 20px;
}



.title-page h2 {
  font-size: 1.6em;
  padding: 10px 0;
  text-transform: uppercase;
  border-bottom: 2px solid var(--green);
}



.ico {
  padding: 7px;
  top: 7px;
  position: relative;
  -webkit-border-radius: 0 6px 0 6px;
  -moz-border-radius:0 6px 0 6px;
  border-radius:0 6px 0 6px ;
  color: rgb(255, 255, 255);
  margin-right: 10px;
}


/* SEARCH
* --------------------------------------- */

.search-box {
  margin: 0 auto;
  border: 1px solid #eee;
  width: 300px;
  height: 60px;
  border-radius: 30px;
  padding: 0 20px;
}
/* HOME
*---------------------------*/

.work-wrap .text,
.work-wrap .img {
  width: 50%;
}

.img {
  min-height: 400px;
}

@media (max-width: 767.98px) {
  .work-wrap .text,
  .work-wrap .img {
    width: 100%;
  }
}
/* Products
* ------------------------------------------------ */


.owl-carousel {
  position: relative
}

.owl-carousel .owl-item {
  opacity: 1
}

.owl-carousel .owl-item.active {
  opacity: 1
}

.owl-carousel .owl-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-block
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 60px;
  color: rgba(0, 0, 0, 0.2)!important;
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
  opacity: 1
}

@media(prefers-reduced-motion:reduce) {
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next {
    -webkit-transition: none;
    -o-transition: none;
    transition: none
  }
}

.owl-carousel .owl-nav .owl-prev p span,
.owl-carousel .owl-nav .owl-prev p small,
.owl-carousel .owl-nav .owl-next p span,
.owl-carousel .owl-nav .owl-next p small {
  display: block;
  color: #000;
  line-height: .8;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s
}

@media(prefers-reduced-motion:reduce) {
  .owl-carousel .owl-nav .owl-prev p span,
  .owl-carousel .owl-nav .owl-prev p small,
  .owl-carousel .owl-nav .owl-next p span,
  .owl-carousel .owl-nav .owl-next p small {
    -webkit-transition: none;
    -o-transition: none;
    transition: none
  }
}

.owl-carousel .owl-nav .owl-prev small,
.owl-carousel .owl-nav .owl-next small {
  text-transform: uppercase
}

.owl-carousel .owl-nav .owl-prev span,
.owl-carousel .owl-nav .owl-next span {
  line-height: 0
}

.owl-carousel .owl-nav .owl-prev span:before,
.owl-carousel .owl-nav .owl-next span:before {
  font-size: 40px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s
}

@media(prefers-reduced-motion:reduce) {
  .owl-carousel .owl-nav .owl-prev span:before,
  .owl-carousel .owl-nav .owl-next span:before {
    -webkit-transition: none;
    -o-transition: none;
    transition: none
  }
}

.owl-carousel .owl-nav .owl-prev:hover small,
.owl-carousel .owl-nav .owl-next:hover small {
  color: #54b032
}

.owl-carousel .owl-nav .owl-prev:hover span:before,
.owl-carousel .owl-nav .owl-next:hover span:before {
  color: #54b032
}

.owl-carousel .owl-nav .owl-prev {
  left: 50%;
  margin-left: -35px
}

.owl-carousel .owl-nav .owl-next {
  right: 50%;
  margin-right: -35px
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px
}

.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  background: transparent;
  position: relative;
  border: 1px solid #000
}

.owl-carousel .owl-dots .owl-dot:hover,
.owl-carousel .owl-dots .owl-dot:focus {
  outline: none!important
}

.owl-carousel .owl-dots .owl-dot.active {
  background: #54b032;
  border: 1px solid #54b032
}

@media(min-width:992px) {
  .owl-carousel .owl-dots {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0;
    margin-right: -40px
  }
  .owl-carousel .owl-dots .owl-dot {
    display: block
  }
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y
}


ul.list-options {
  list-style-type: none !important;
  padding: 0;
  margin: 0;
}

ul.list-options li {
  padding: 1px 0;
  margin-bottom: 3px;
}

ul.list-options li::before {
  font-family: 'Feather';
  content: "\e92b";
  color: var(--green);
  padding: 0 7px;
}

ul.list-options li:after {
  margin-right: 0;
  padding-left: 0;
  content: ';';
}

ul.list-options i {
  float: left;
  padding: 0 10px;
}

.single-logo {
  padding: 10%;
  -webkit-filter: grayscale(99%); /* Safari 6.0 - 9.0 */
  filter: grayscale(99%);
}
.single-logo:hover {
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}
.title-page {
  padding: 10px 0;
}
.title-page h1 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--green);
  margin: 10px 0;
}
.box {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f6f6f6+47,ffffff+100&0+0,1+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 0.47) 47%, rgba(255, 255, 255, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 0.47) 47%, rgba(255, 255, 255, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 0.47) 47%, rgba(255, 255, 255, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  height: 100%;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  width: 100%;
  position: relative;
}

.box:hover {
  background-color: rgb(255, 255, 255);
}

.box img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
}

.box:hover img {
  position: relative;
  transform: scale(1.06);
}

.pac-box {
  position: absolute;
  top: 10%;
  left: 10%;
}
.pac-box .pac {
  display: block;
  -webkit-border-radius: 0 7px 0 7px;
  -moz-border-radius: 0 7px 0 7px;
  border-radius: 0 7px 0 7px;
  border:  1px solid var(--green);
  padding: 5px 10px;
  background: rgba(255, 255, 255, .3);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);

}
.filter {
  background: rgba(255, 255, 255, .8);
}
.filter .filter-icon {
  color: var(--green);
  padding-right: 4px;
}
.filter ul li {
  display: block;
  padding: 4px 0;
}


.sub-category li {
  display: inline-block;
  margin-right: 7px;
  margin-bottom: 7px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid rgb(84, 176, 50);
}

.sub-category li a {
  display: block;
  padding: 8px 16px;
}
/* Products
* --------------------------------------------------- */
.product-images {
  position: relative;
}
.product-images img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.product-images .round-img {
  position: absolute;
  top: 3%;
  left: 3%;
}

.product-images .round-img img {
  width: 30%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  margin-top: 10px;
}

.description img {
  float: left;
  width: auto;
  height: auto;
  margin: 0 10px;
}


/* PRODUCTS CATEGORY
*------------------------------------------------*/

.products-category li {
  display: block;
  padding: 7px;
  font-weight: 500;
}

.green {
  color: var(--green);
}

/* CONTACTS
*---------------------------------------------------- */

.contacts h4 {
  font-size: 1.2em;
  padding: 10px 0 5px 0;
  position: relative;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 10px;
}

.contacts h4:after {
  width: 50px;
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: var(--green);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contacts h4 strong {
  font-weight: 500;
}

.contacts a {
  color: rgba(0, 0, 0, .9);
}

.contacts .form-control {
  background-color: rgba(255, 255, 255, .8);
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 10px;
  margin-bottom: 7px;
  -webkit-border-radius: 0 9px 0 9px;
  -moz-border-radius: 0 9px 0 9px;
  border-radius: 0 9px 0 9px;
}

.contacts .form-control::placeholder {
  font-size: .8em;
}

.contacts .card table td {
  vertical-align: middle;
}

.contacts .card table td i {
  font-size: 1.2em;
}

.map {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 6px;
  background-color: rgba(255, 255, 255, .8);
}

.contacts i {
  color: rgba(84, 176, 50, 1);
  display: inline-block;
  padding: 6px;
}

/* Services 
* ------------------------------------------------ */
section .service-description ul {
    border: 0;
    background: transparent;
}
section .service-description ul li:before {
   font-family: 'Feather';
  content: "\e92b";
  color: var(--green);
  padding: 0 7px;


}

/* Footer Sections
*------------------------------------------------- */
footer {
  background: rgba(255, 255, 255, .6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 0.9em;
}

footer p.about  {
  margin: 0;
  text-indent: 2rem;
  text-align: justify;
}


/* media
*------------------------------------------------- */
@media (max-width: 768px) {
  .header-section {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    position: fixed;
    width: 100%;
    z-index: 9999;
  }
  .content-wrapper {
     margin-left: 0px;
  }
  .content {
    padding-top: 80px;
  }
  .navbar-right {
    margin-left: -200px;
  }
  .navbar-right.toggle {
    margin-left: 0px;
  }
  [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
  .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 575px) {
  .main-section {
    background-image: none;
  }
}


/* Search */

.search-screen {
  position: fixed;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  transition: .3s linear .3s;
  z-index: 4444;
}

.close-icon {
  position: absolute;
  top: 40px;
  right: 40px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
}

.search-box {
  width: 100%;
  max-width: 600px;
  height: 60px;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 2rem;
}

::placeholder {
  font-size: 2rem !important;
  color: rgb(127, 140, 141) !important;
}

.search-screen.active {
  transition-delay: 0s;
  height: 100vh;
}

.search-screen.active .search-box,
.search-screen.active .close-icon {
  transition: .2s linear 0.4s;
  opacity: 1;
}

@media (max-width: 768px) {
  .close-icon {
    top: 120px;
  }
}



/* PAGINATION 
*------------------------------------------------------------------*/
/* pagination */
ul.pagination, li.page-item, li.page-item .page-link{
  background: transparent;
  padding: 0;
  margin: 0;
  border: 0;
  color: var(--color-grey);
}
ul.pagination li.page-item:first-child .page-link,  ul.pagination li.page-item:last-child .page-link {
-webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 
}
ul.pagination li.page-item .page-link {
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 34px;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
ul.pagination li.page-item.active .page-link {
  background: transparent;
  border: 1px solid var(--color-green);
  color: rgb(0, 0, 0);
}

.widget-callback {
	font-family: sans-serif;
	font-size: 14px
}

.widget-callback>div {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.widget-callback input {
	outline: none !important
}

.widget-callback .callback-button {
	position: fixed;
	right: 24px;
	bottom: 100px;
	z-index: 999999;
}

.widget-callback .callback-button-title {
	position: absolute;
	left: -150px;
	top: 15px;
	background: rgba(41, 41, 41, 0.75);
	color: #fff;
	padding: 6px 10px;
	border-radius: 3px
}

.widget-callback.widget-callback-form-open .callback-button-title {
	display: none;
}

.widget-callback .callback-button-title:before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border: solid transparent;
	border-width: 6px;
	top: 50%;
	right: -12px;
	transform: translateY(-50%);
	border-left-color: rgba(41, 41, 41, 0.75)
}

.widget-callback .callback-button-phone {
	width: 60px;
	height: 60px;
	display: block;
	background: #199c68;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
	animation-name: ckw;
    animation-duration: 15.5s;
    /* Things added */
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    display: inline-block;
}

@keyframes ckw {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.widget-callback.widget-callback-form-open .callback-button-phone {
	animation: unset;
	-webkit-animation: unset;
	background: var(--thm-primary);
}

.widget-callback .callback-button-phone:before {
	content: '';
	background: url('../images/phone-call-icon.svg');
	background-size: contain;
	position: absolute;
	display: block;
	width: 44px;
	height: 44px;
	left: 50%;
	top: 50%;
	margin: -22px 0 0 -22px;
	transform: scale(1);
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}

.widget-callback .callback-button-phone:after {
	content: '';
	background: url('../images/cancel.svg');
	background-size: contain;
	position: absolute;
	display: block;
	width: 44px;
	height: 44px;
	left: 50%;
	top: 50%;
	margin: -22px 0 0 -22px;
	transform: scale(0);
	-webkit-transition: all .2s linear;
	transition: all .2s linear
}

.widget-callback.widget-callback-form-open .callback-button-phone:before {
	content: '';
	transform: scale(0)
}

.widget-callback.widget-callback-form-open .callback-button-phone:after {
	content: '';
	transform: scale(1)
}

.widget-callback .callback-form {
	display: none;
	background: #fff;
	border: 1px solid #f9f9f9;
	width: 260px;
	border-radius: 5px;
	padding: 30px 15px;
	right: 90px;
	bottom: 130px;
	position: fixed;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	z-index: 999999;
}

.widget-callback.widget-callback-form-open .callback-form {
	display: block;
	animation: formcbwg-in .1s ease
}

.widget-callback .callback-form-title {
	text-align: center;
	display: block;
	margin: 0 0 30px
}

.widget-callback input {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 15px;
	margin: 0 0 10px;
	border: 1px solid var(--thm-black);
	border-radius: 0px;
	font-size: 14px
}

.widget-callback input[type="submit"] {
	background: #199c68;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	border: 0;
	cursor: pointer
}

.widget-callback input[type="submit"]:placeholder {
	color: #DDD;
}

.widget-callback .success-send {
	text-align: center
}

.widget-callback .success-send img {
	width: 60px;
	margin: 0 0 20px
}

@media(max-width:600px) {
	.widget-callback .callback-button {
		right: 26px;
		bottom: 80px
	}

	.widget-callback .callback-form {
		width: 80%;
		right: 10%;
		box-sizing: border-box
	}
	
	.widget-callback .callback-form-title:before {
		display: none;
	}
}