/**
* 
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat Alternates", sans-serif;
  background: #fff;
  color: #364d59;
}

a {
  color: #feb900;
  transition: 0.3s;
  text-decoration: none;
}

a:hover {
  color: #ffc732;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat Alternates", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #f5f6f7;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f5f6f7;
  border-top-color: #feb900;
  border-bottom-color: #feb900;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 60px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid #feb900;
}
.back-to-top i {
  font-size: 28px;
  color: #feb900;
  line-height: 0;
}
.back-to-top:hover {
  background: #feb900;
  color: #f5f6f7;
}
.back-to-top:hover i {
  color: #ffffff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: rgba(37, 35, 33, 0.6);
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}
#topbar.topbar-scrolled {
  top: -40px;
}
#topbar .contact-info i {
  font-style: normal;
  color: #feb900;
}
#topbar .contact-info i span {
  padding-left: 5px;
  color: #feb900;
}
#topbar .contact-info a {
  color: #feb900;
  text-decoration: none;
}
#topbar .clock i {
  color: #feb900;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
#topbar .clock i span {
  padding-left: 5px;
  color: #feb900;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(12, 11, 9, 0.6);
  border-bottom: 1px solid rgba(12, 11, 9, 0.6);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
}
#header.header-scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid #37332a;
}
#header .logo {
  font-size: 2.5rem;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 40px;
}
#header .logo span {
  color: #feb900;
}

/*--------------------------------------------------------------
# Order
--------------------------------------------------------------*/
.order-btn {
  margin: 0 0 0 15px;
  border: 2px solid #feb900;
  color: #feb900;
  border-radius: 50px;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}
.order-btn:hover {
  background: #feb900;
  color: #fff;
}
@media (max-width: 992px) {
  .order-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 1.0rem;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #feb900;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #444444;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #feb900;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #888;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #сс1616;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #сс1616;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
#advantage .icon-box {
  position: relative;
  display: inline-flex;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
#advantage .icon-box[class*="-sm"] {
  min-width: 3.5rem;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.25rem;
}
#advantage .icon-box[class*="-lg"] {
  min-width: 4.5rem;
  width: 4.5rem;
  height: 4.5rem;
  font-size: 1.5rem;
}
.text-blue {
    color: #0d6efd !important;
}
.text-indigo {
    color: #6610f2 !important;
}
.text-purple {
    color: #6f42c1 !important;
}
.text-pink {
    color: #d63384 !important;
}
.text-red {
    color: #cc1616 !important;
}
.text-orange {
    color: #fd7e14 !important;
}
.text-base {
	color: #feb900 !important;
}
.text-yellow {
    color: #ffc107 !important;
}
.text-green {
    color: #198754 !important;
}
.text-teal {
    color: #20c997 !important;
}
.text-cyan {
    color: #0dcaf0 !important;
}
.text-gray {
    color: #adb5bd !important;
}

.bg-blue {
    background-color: #0d6efd !important;
}
.bg-indigo {
    background-color: #6610f2 !important;
}
.bg-purple {
    background-color: #6f42c1 !important;
}
.bg-pink {
    background-color: #d63384 !important;
}
.bg-red {
    background-color: #cc1616 !important;
}
.bg-orange {
    background-color: #fd7e14 !important;
}
.bg-yellow {
    background-color: #ffc107 !important;
}
.bg-green {
    background-color: #198754 !important;
}
.bg-teal {
    background-color: #20c997 !important;
}
.bg-cyan {
    background-color: #0dcaf0 !important;
}
.bg-gray {
    background-color: #adb5bd !important;
}
.bg-opaque-blue {
  background-color: rgba(13,110,253,0.1) !important;
}
.bg-opaque-indigo {
  background-color: rgba(102,16,242,0.1) !important;
}
.bg-opaque-purple {
  background-color: rgba(111,66,193,0.1) !important;
}
.bg-opaque-pink {
  background-color: rgba(214,51,132,0.1) !important;
}
.bg-opaque-red {
  background-color: rgba(204,22,22,0.1) !important;
}
.bg-opaque-orange {
  background-color: rgba(253,126,20,0.1) !important;
}
.bg-opaque-yellow {
  background-color: rgba(247,193,7,0.1) !important;
}
.bg-opaque-green {
  background-color: rgba(25,135,84,0.1) !important;
}
.bg-opaque-teal {
  background-color: rgba(32,201,151,0.1) !important;
}
.bg-opaque-cyan {
    background-color: rgba(13,202,240,0.1) !important;
}
.bg-opaque-gray {
    background-color: rgba(173,181,189,0.1) !important;
}
#how-order .icon-box {
  position: relative;
  display: inline-flex;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
#how-order .icon-box[class*="-sm"] {
  min-width: 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.125rem;
}
#how-order .icon-box[class*="-lg"] {
  min-width: 4.5rem;
  width: 4.5rem;
  height: 4.5rem;
  font-size: 1.5rem;
}
#how-order a {
	color: #fff;
}
#how-order a:hover {
	text-decoration: underline;
}
/*--------------------------------------------------------------
# Base Section
--------------------------------------------------------------*/
#base {
  width: 100%;
  height: 100vh;
  background: url("../img/plisse-bg.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}
#base:before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#base .container {
  padding-top: 110px;
}
@media (max-width: 992px) {
  #base .container {
    padding-top: 98px;
  }
}
#base h1 {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
#base .action {
  color: #feb900;
}
#base h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
}
#base p {
	color: #fff;
	text-decoration: none;
}
#base a {
	color: #fff;
	text-decoration: none;
}
#base a:hover {
	text-decoration: underline;
}
#base .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#cda45e 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}
#base .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#base .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
#base .play-btn:hover::after {
  border-left: 15px solid #cda45e;
  transform: scale(20);
}
#base .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@media (min-width: 1024px) {
  #base {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  #base .play-btn {
    margin-top: 30px;
  }
}
@media (max-height: 500px) {
  #base {
    height: auto;
  }
  #base .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  #base h1 {
    font-size: 1.8rem;
    line-height: 36px;
  }
  #base h2 {
    font-size: 1.5rem;
    line-height: 24px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.modal-content {
	background-color: #f5f6f7;
	border: 1px solid #37332a;
}
.modal-content form input[type="text"], .modal-content form input[type="tel"] {
	border: 1px solid #454035;
	background: #fff;
	color:#364d59;
}
.modal-content button[type="submit"] {
	border: 2px solid #feb900;
	color: #feb900;
	transition: 0.3s;
}
.modal-content button[type="submit"]:hover {
	background: #feb900;
	color: #fff;
}
.modal-header{
	border-bottom: none;
}
.modal-close {
	transition: all 0.2s ease-in-out;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 8;
	width: 3.5rem;
	height: 3.5rem;
	line-height: 3.5rem;
	text-align: center;
	background: 0;
	padding: 0;
	font-size: 1.75rem;
	border: 0;
	color: inherit;
}
.modal-close:hover {
    background: rgba(255,255,255,0.1);
  }
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-title {
  padding-bottom: 40px;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Montserrat", sans-serif;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Montserrat Alternates", sans-serif;
  color: #fff;
}
.contact p {
  color: #364d59;
}
.how-order {
    background: url(../img/rol-dn-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}
.how-order::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.how-order p {
  color: #fff;
}
.how-order i {
  color: #feb900;
}
@media (min-width: 1024px) {
  .how-order {
    background-attachment: fixed;
  }
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f5f6f7;
  margin-top: 110px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 98px;
  }
}
.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #37332a;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: url("../img/bg-1.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}
.about:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.about .about-img {
  position: relative;
  transition: 0.5s;
}
.about .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid #feb900;
  border-top: 5px solid #feb900;
  transition: 0.5s;
}
.about .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid #feb900;
  border-bottom: 5px solid #feb900;
  transition: 0.5s;
}
.about .about-img:hover {
  transform: scale(1.03);
}
.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}
.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
}
.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}
.about .content p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .about {
    background-attachment: fixed;
  }
}

.inner-img {
  position: relative;
  transition: 0.5s;
}
.inner-img img {
  max-width: 100%;
  border: 4px solid rgba(0, 0, 0, 0.2);
  position: relative;
}
.inner-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid #feb900;
  border-top: 5px solid #feb900;
  transition: 0.5s;
}
.inner-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid #feb900;
  border-bottom: 5px solid #feb900;
  transition: 0.5s;
}
.inner-img:hover {
  transform: scale(1.03);
}
.inner-img:hover::before {
  left: 10px;
  top: 10px;
}
.inner-img:hover::after {
  right: 10px;
  bottom: 10px;
}
.gallery p {
  color: #364d59;
}
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid rgba(0, 0, 0, 0.2);
}
.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
  transform: scale(1.05);
}
.gallery .nav-link {
	color: #feb900;
}
.glightbox-clean .gslide-title {
	font-family: "Montserrat Alternates", sans-serif;
}

/*--------------------------------------------------------------
# Production
--------------------------------------------------------------*/
.prod {
  background: url("../img/bg-1.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}
.prod:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.prod .syst {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #f5f6f7;
  box-shadow: 0px 2px 15px rgba(255, 255, 255, 0.1);
}
.prod .syst .syst-img {
  position: relative;
  overflow: hidden;
}
.prod .syst .syst-info {
  padding: 25px 15px;
}
.prod .syst .syst-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.prod .syst .syst-info span {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: #aaaaaa;
}
.prod .syst .syst-info p {
  font-style: italic;
  font-size: 0.9rem;
  line-height: 26px;
  color: #777777;
}
@media (min-width: 1024px) {
  .prod {
    background-attachment: fixed;
  }
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  background: url("../img/tk_20.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}
.why-us:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #f5f6f7;
}
.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #feb900;
}
.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: rgba(90, 90, 90, 0.8);
}
.why-us .box p {
  color: #aaaaaa;
  font-size: 1.1rem;
  margin: 0;
  padding: 0;
}
.why-us .box:hover {
  background: #feb900;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}
.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}
@media (min-width: 1024px) {
  .why-us {
    background-attachment: fixed;
  }
}
/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/
.product #product-filters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.product #product-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #364d59;
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  font-family: "Montserrat Alternates", sans-serif;
}
.product #product-filters li:hover, .product #product-filters li.filter-active {
  color: #feb900;
}
.product #product-filters li:last-child {
  margin-right: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}
.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: #feb900;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 1.0rem;
  color: #bab3a6;
}
.contact .info a {
  color: #bab3a6;
  transition: 0.3s;
}
.contact .info a:hover {
  color: #feb900;
}
.contact .info .email, .contact .info .phone, .contact .info .viber, .contact .info .instagram {
  margin-top: 40px;
}
.border-red {
  border-color: #feb900 !important;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.status {
	z-index: 1000;
	padding-right: 0.5rem;
	position: absolute;
	overflow: hidden;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("../img/bg-2.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 1.1rem;
}
#footer .footer-top {
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid #37332a;
  border-bottom: 1px solid #28251f;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info span {
  color: #feb900;
}
#footer .footer-top .footer-info h3 {
  font-size: 1.8rem;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
#footer .footer-top .footer-info p {
  font-size: 1.1rem;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat Alternates", sans-serif;
  color: #fff;
}
#footer .footer-top .footer-info a {
  color: #fff;
  transition: 0.3s;
}
#footer .footer-top .footer-info a:hover {
  color: #feb900;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #28251f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #feb900;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #feb900;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #feb900;
}
#footer .footer-top .footer-call form {
  position: relative;
}
#footer form {
  color: #364d59;
}
#footer .footer-top .footer-call form input[type=text], #footer .footer-top .footer-call form input[type=tel] {
  border: 1px solid #454035;
  background: #fff;
  color: #364d59;
}
.form-check-input {
	background-color: #feb900;
	border-color: #454035;
}
.form-check-input:checked {
	background-color: #feb900;
	border-color: #454035;
}
.privacy {
  font-size: 0.9rem;
  color: #d19800;
}
.privacy a {
  color: #d19800;
  text-decoration: underline;
  transition: 0.3s;
  line-height: normal;
}
.privacy a:hover {
  color: #feb900;
}
#footer .footer-top .footer-call form button[type=submit] {
  background: none;
  font-size: 16px;
  padding: 10px 20px 10px 20px;
  border: 2px solid #feb900;
  color: #feb900;
  transition: 0.3s;
  border-radius: 30px;
}
#footer .footer-top .footer-call form button[type=submit]:hover {
  background: #feb900;
  color: #fff;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
  font-size: 1.0rem;
}
#footer .copyright a {
  color: #fff;
  transition: 0.3s;
}
#footer .copyright a:hover {
  color: #feb900;
}
.call-toolbar {
  position:fixed;
  right:0;
  bottom:0;
  left:0;
  z-index:350;
  display:flex;
  align-items:center;
  justify-content:space-between;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  padding:5px;
  height:55px;
  background-color: #fff;
  box-shadow:0 0 9px rgba(0,0,0,0.12);
}
.call-toolbar>a {
  display:flex;
  align-items:center;
  justify-content:center;
}
.call-toolbar>a,
.call-toolbar>div {
  flex:1 0 20%;
}
.call-toolbar>a,
.call-toolbar>div a {
  height:45px;
}
.call-toolbar {
  margin-right:0;
}
.call-toolbar.call-toolbar-label-show>a,
.call-toolbar.call-toolbar-label-show>div a {
  position:relative;
  padding-bottom:15px;
}
.call-toolbar.call-toolbar-label-show .call-toolbar-label {
  display:block;
}
.call-toolbar-label {
  position:absolute;
  right:10px;
  bottom:3px;
  left:10px;
  display:none;
  overflow:hidden;
  text-align:center;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-weight:600;
  font-size:11px;
  line-height:1;
  padding:1px 0;
}
.call-toolbar-item .call-tools-icon:before {
  font-size:19px;
}
.call-toolbar-link .call-custom-icon {
  min-width:auto;
}
.call-toolbar-link .call-custom-icon img {
  width:auto;
  height:20px;
}
@media (min-width: 990px) {
 .call-toolbar {
  display:none;
 }
}

.call-tools-element {
  position:relative;
  --call-count-size: 15px;
  --call-header-el-color: #333;
  --call-header-el-color-hover: rgba(51,51,51,.6);
}
.call-tools-element>a {
  display:flex;
  align-items:center;
  justify-content:center;
  height:40px;
  color:var(--call-header-el-color);
  line-height:1;
  padding-right:10px;
  padding-left:10px;
}
.call-tools-element .call-tools-icon {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0;
}
.call-tools-element:hover>a {
  color:var(--call-header-el-color-hover);
}
.call-tools-element.call-style-icon .call-tools-text {
  display:none;
}
.call-tools-custom-icon .call-tools-icon:before,
.call-tools-custom-icon .call-tools-icon:after {
  display:none;
}
.call-tools-custom-icon .call-custom-icon {
  transition:all .25s ease;
}
.call-tools-custom-icon:hover .call-custom-icon {
  opacity:.6;
}
.form-range::-moz-range-thumb {
	background-color: #feb900;
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff,0 0 0 .25rem rgba(254,185,0,.25);
}
.form-range::-webkit-slider-thumb {
	background-color: #feb900;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff,0 0 0 .25rem rgba(254,185,0,.25);
}
.custom-tooltip {
  --bs-tooltip-bg: var(--bs-teal);
}
