:root {
  --primary-color: #efb007;
  --font-family: 'Barlow', sans-serif;
  --base-font-size: 16px;
  --text-color: #333;
}

body {
    margin: 0;
}
.stack-vertical {
    display: flex;
    flex-direction: column;
    
}
.container  {
    display: flow-root;
    box-sizing: content-box;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 40px;
}
.page-header {
    width: 100%;
    background-color: #333;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.top-bar {
    display: flow-root;
    box-sizing: content-box;
    max-width: 1200px;
    color: #fff;
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1200px;
    display: none; /* Initially hide the top bar on all screens */
}

.left-section,
.center-section,
.right-section {
    display: flex;
    align-items: center;
}
.left-section {
    margin-right: 200px;

}
.right-section{
    margin-right: 20px;
}

.left-section p,
.center-section p,
.right-section i {
    margin-right: 10px;
}

.center-section .highlight {
    color: #fff; /* Highlight color */
}

.center-section {
    background-color: var(--primary-color);
    display: flex;
    position: relative;
    margin-bottom: -10px;
    padding: 12px 30px;
    border: none;
    flex-direction: row;
}
.center-section::before {
    left: -8px;
    width: 0;
    height: 0;
    border-width: 0 8px 10px 0;
    border-style: solid;
    border-color: transparent #966f0c transparent transparent;
    display: block;
    position: absolute;
    bottom: 0;
    content: '';
}
.center-section::after {
    right: -8px;
  width: 0;
  height: 0;
  border-width: 10px 8px 0 0;
  border-style: solid;
  border-color: #966f0c transparent transparent transparent;
  display: block;
  position: absolute;
  bottom: 0;
  content: '';
}

.inline {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.svg-icon-big {
    height: 40px;
    width: 40px;
    margin-right:10px;
}
.svg-icon {
    height: 20px;
    width: 20px;
    margin-right:10px;
}
.s-brands {
  display: block;
  position: relative;
  margin-bottom: 50px;
  padding-top: 100px;
  background-color: #222;
  background-image: url(../img/bg_brands.webp);
  background-position: center;
  background-size: cover;
}
.section-title {
    position: relative;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}
.section-title>span {
    color: #fff;
}
.section-title>h3 {
    font-family: var(--font-family);
    font-size: calc(20px + 20 * (100vw / 1920));
}
.section-content-wrapper {
    margin-bottom: -50px;
  padding: 50px 100px;
  background-color: #efb007;
  overflow: hidden;
}
.swiper-button-next-custom {
    position: absolute;
    width: 50px;
  height: 50px;
  background-color: white;
  line-height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 15%;
  right: 12%;
  border: 1px solid  #eee;
  z-index: 1;
  box-shadow: 0 0 36px 9px rgba(0, 0, 0, 0.05);
}
.swiper-button-prev-custom {
    position: absolute;
  left: 12%;
  width: 50px;
  height: 50px;
  background-color: white;
  line-height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 15%;
  z-index: 5;
  border: 1px solid #eee;
  z-index: 1;
  box-shadow: 0 0 36px 9px rgba(0, 0, 0, 0.05);
}
.section-content-wrapper {
    padding: 50px 100px;
  }
/* Media query to show the top bar only on larger screens */
@media screen and (min-width: 768px) {
    .top-bar {
        display: flex;
    }
}
@media screen and (min-width: 320px) {
    .top-bar {
        display: none;
    }
    .section-content-wrapper {
        padding: 25px 0px;
      }
}
@media screen and (min-width: 480px) {
    .top-bar {
        display: none;
    }
    .section-content-wrapper {
        padding: 25px 0px;
      }
}
@media screen and (min-width: 720px) {
    .top-bar {
        display: none;
    }
    .section-content-wrapper {
        padding: 25px 50px;
      }
}
@media screen and (min-width: 1024px) {
    .top-bar {
        display: flex;
    }
    .section-content-wrapper {
        padding: 50px 100px;
      }
}

.section-desc>span {
    font-family: var(--font-family);
    font-size: calc(14px + 4 * (100vw / 1920));
}
.menu-bar {
    background-color: #fff;
    color: #333;
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line on small screens */
    align-items: center;
    justify-content: center;
}

.logo {
    font-size: 18px;
    font-weight: bold;
}

.hamburger-icon {
    font-size: 24px;
    cursor: pointer;
    margin-left: auto; /* Push the hamburger icon to the right */
}
.drawer {
    display: none; /* Initially hide the drawer on smaller screens */
    width: 100%;
    padding: 10px;
    background-color: #333;
}
.menu-list {
    display: flex;
    padding: 10px;
    margin-top: 10px; /* Add margin between the logo/hamburger and the menu on larger screens */
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    max-width: 1200px;
}
.menu-item {
    text-decoration: none;
    margin: 0px 20px;
    font-weight: bold;
    font-size: 1rem;
    color: var(--text-color) 
    
}
.active {
    border-radius: 5px;
    padding: 5px 10px;
    color: var(--primary-color); /* Text color for active item */
}

.mobile-header {
    display: none; /* Initially hide mobile header on larger screens */
    padding: 10px;
}
.logo-img {
    width: 250px;
}
.logo {
    margin-left:150px;
}

.swipe-wrapper {
    width: 100%;
    position: relative;
}
.swipe-wrapper>img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    min-height: 450px;
    height: auto;
}
.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top:0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-text-wrap {
    position: absolute;
    color: white;
    width: 80%;
}
.slider-text-head {
    color: white
}
.slider-text-desc {
    color: white;
    font-size:20px;
}
.btn-primary {
    background-color: var(--primary-color);
    height: 50px;
    max-width: 250px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    padding-right: 20px;
    padding-left: 20px;
    cursor: pointer;
}
.btn-primary>a {
    text-decoration: none;
}
.btn-primary>a>span {
    color: white;
    font-weight: bold;
}
.slider-text-wrap>h1 {
    font-size: calc(24px + 36 * (100vw / 1920));
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.slider-text-wrap>p {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: calc(18px + 12 * (100vw / 1920));
    

}
.btn-primary>a>span{
    font-size: calc(14px + 4 * (100vw / 1920));
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
}
.feature-head-cont {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 1.56;
}
.section-title {
    width: 100%;
}
.section-title>h3 {
    font-size: 35px;
}
.section-desc>span {
    font-size: 15px;
}
.feature-slide {
    overflow: hidden;
    margin-top:50px;
}
.feature-item__box {
    padding: 20px 20px;
    border-left: 2px solid black;
    background-color: white;
}

.feature-item__icon {
    padding: 50px 40px 10px 40px;
}
.feature-item__title {
    font-size: calc(18px + 6 * (100vw / 1920));
    font-family: var(--font-family);
    display: block;
    position: relative;
    padding: 0 40px 30px 40px;
    border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-bottom: 1px solid #eee;
    background: none;
    color: #222;
    font-size: 24px;
    font-weight: 700;
}
.feature-item__text {
    font-size: calc(14px + 4 * (100vw / 1920));
    padding: 15px 40px;
    font-family: var(--font-family);
    color: #555;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.67;
}
.grid-item-text-cont>p {
    font-family: var(--font-family);
}
.s-features {
    background: #fff; /* Fallback color */
    background: linear-gradient(to top, #f2f2f2, #fff);
}
.grid-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.grid-item-two {
    width: 47%;    
    margin-right: 20px;
    position: relative;
}
.grid-item-three {
    width: 30%;
    margin-right: 20px;
    position: relative;
}
.grid-item-link {
    position: relative;
}
.uk-width-1-1 {
    min-height: 250px;
  object-fit: cover;
  object-position: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.grid-item-text-cont {
    z-index: 2;
    color: white;
    font-weight: 600;
    position: absolute;
    top: 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;    
}
.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.uk-text-center {
    font-size: calc(18px + 12 * (100vw / 1920))
}
.equipment-content-slide {
    overflow: hidden;
}
.equipment-item__title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.equipment-item__title>a {
    text-decoration: none;
    color: inherit;
    font-family: var(--font-family);
    font-size: calc(16px + 8 * (100vw / 1920));
    
}
.equipment-item__list {
    margin: 30px 0px;
}
.equipment-item__list>ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    margin: 0;
  padding: 0px 20px 0px 20px;
  column-gap: 5px;
  column-count: 2;
  list-style-type: none; 
  margin-top:20px;
  margin-bottom:20px;
}
.equipment-item__list>ul>li{
    position: relative;
    padding-left: 20px;
    font-weight: 600;
    font-size: calc(10px + 3 * (100vw / 1920));
    font-family: var(--font-family);
}
.equipment-item__list ul li + li {
    margin-top: 5px;
}
.equipment-item__list>ul>li::before {
    display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #efb007;
  content: '';
}
.equipment-item__info {
	padding: 30px;
}
.equipment-item__price {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-box-align: end;
	-ms-flex-align: end;
	/* display: -webkit-box; */
	/* display: -ms-flexbox; */
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
.equipment-item__price-box {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 25px;
	padding-bottom: 25px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}
.equipment-item__prices ul {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-align: center;
	-ms-flex-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.equipment-item__price-title {
    font-weight: 600;
	font-size: calc(10px + 6.8 * ((100vw - 320px) / 1920));
    font-family: var(--font-family);
}
.equipment-item__price-title>small { 
    display: block;
    font-weight: 400;
}
.equipment-item__price-current {
	font-size: calc(20px + 23.8 * ((100vw - 320px) / 1920));
    font-weight: bold;
    font-family: var(--font-family);
}
.equipment-item__price-old {
	margin-left: 5px;
	color: #393939;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: line-through;
    font-size: calc(12px + 10.2 * ((100vw - 320px) / 1920));
    font-family: var(--font-family);
}
.equipment-item__prices {
	padding-top: 30px;
    font-family: var(--font-family);
}
.equipment-item__media {
    display: flex;
    justify-content: center;
}
.equipment-item__media {
    width:100%
}
.equipment-item__media>a {
    width:100%
}
.equipment-item__media>a>img {
    width:100%
}
.equipment-item__prices ul li {
	color: #222;
	font-weight: 500;
	line-height: 1.5;
    font-size: calc(12px + 3.4 * ((100vw - 320px) / 1920));
}
.button {
    width: 100%;
    background-color: white;
    outline: none;
    height: 45px;
    border: 1px solid black;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 700;
    border-radius: 2;
    font-family: var(--font-family);
}
.button>span {
    font-size:calc(14px + 4 * (100vw / 1920))
}
.button:hover {
	border-color: #efb007;
	background-color: #efb007;
	color: #fff;
}
.page-footer {
    display: block;
  z-index: 1;
  position: relative;
  background-color: #111;
}
.page-footer__top {
    padding-top: 50px;
    padding-bottom: 50px;
}
.uk-container-large {
    display: flow-root;
  box-sizing: content-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.page-footer__contacts {
    margin-top: -65px;
    margin-bottom: 40px;
    padding: 50px;
    order: 1;
    max-width: 390px;
    border-radius: 4px;
  background-color: #222;
  font-size: calc(14px + 4 * (100vw / 1920));
}
.page-footer__contacts p {
    color: rgba(231, 231, 231, 0.7);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
    margin: 20px 0 20px;
  }
.contacts-list {
    margin: 30px 0;
  padding: 0;
  list-style-type: none;
  font-family: var(--font-family);
  font-size: calc(14px + 4 * (100vw / 1920));
}
.contacts-list li {
	display: block;
	position: relative;
}
.contacts-list li + li {
	margin-top: 20px;
}
.contacts-list li a {
	-webkit-box-align: center;
	-ms-flex-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    align-items: center;
	color: white;
	font-weight: 400;
	line-height: 1.67;
    text-decoration: none;
}
.social {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.social li a {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	transition: all 0.3s linear;
}
.social li + li {
	margin-left: 5px;
}
.page-footer__copy {
	color: white;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.33;
	text-align: center;
    font-size: 12px;
}
.section-title h3 {
	margin: 0;
	color: #222;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
    font-size: calc(20px + 34 * ((100vw - 320px) / 1920));
}
.section-title>p {
    font-family: var(--font-family);
    font-size: calc(14px + 4 * (100vw / 1920));
}
.s-brands .section-title h3 {
	color: #fff;
}
.feature-item__icon>img {
    width:75px;
    height:75px;
}
.equipment-item{
    box-shadow: 0 0 20px 9px rgba(0, 0, 0, 0.05);
}
 @media screen and (max-width: 767px) {
    .swiper-button-next-custom {
        display: none;
    }
    .swiper-button-prev-custom {
        display: none;
    }
    .section-content-slide>.swiper-wrapper>.swiper-slide {
        display: flex;
        flex-direction: row;
        justify-content: center;
        overflow: hidden;
    }
    .grid-item-two {
        width: 100%;    
        margin-right: 0;
        margin-bottom: 20px;
    }
    .grid-item-three {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .menu-list {
        display: none; /* Hide menu on larger screens */
    }

    .menu-item {
        display: block; /* Show menu items on smaller screens */
    }

    .drawer {
        display: none; /* Initially hide the drawer on smaller screens */
        width: 100%;
        padding: 10px;
        background-color: #fff;
    }

    .mobile-header {
        display: flex; /* Show mobile header on smaller screens */
        align-items: center;
        align-items: flex-start;
        width: 100%;
    }
    .logo {
        height:50px;
    }
    .logo-img {
        width: 150px;
    }
    .slider-text-wrap {
        position: absolute;
        width:90%;
        left:10%;
        bottom:10%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
    }
    .slider-text-desc {
        margin-top:5px;
        margin-bottom:10px
    }
    .slider-text-head {
        margin-top:5px;
        margin-bottom:5px
    }
    .feature-head-cont {
        flex-direction: column;
        min-height: 160px;
    }
    .section-title>h3 {
        font-size: 25px;
    }
    .section-desc>span {
        font-size: 15px;
    }
}



