body {
    font: 16px/1.5 'Montserrat', sans-serif;
    font-weight: 400;
    background: #fff;
    color: var(--body-color);
}

::-webkit-scrollbar-track {
	position: fixed;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .1);
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-thumb {
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background: rgba(143, 143, 143, .3);
}

h1,
h2,
h3, 
h4, 
h5 {
    font-weight: 700;
    margin: 0;
    color: var(--heading-color)
}

h1 {
    font-size: 36px;
    line-height: 1.25;
    margin: 0 0 30px; 
}

h2 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 40px
}

h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px
}

h4 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px
}

h5 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px
}

p {
    margin: 0;
}

ul, ol {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

a {
    color: var(--link--color);
    position: relative;
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.component + .component {
    margin-top: 30px;
}


*[data-expand-el] {
    max-height: 0;
    overflow: hidden;
    transition: .3s;
}

*[data-expand-el].active {
    max-height: 2000px;
    transition: .3s;
}

.btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    text-decoration: none;
    border-radius: 5px;
    padding: 14px 10px;
    min-width: 200px;
    display: inline-block;
    transition: all 0.3s ease;
    background-color: var(--btn-background-color);
    border: 1px solid  var(--btn-background-color);
    color: var(--btn-color);
    position: relative;
    text-align: center;
}


.btn:hover {
    color: #fff;
    background: var(--btn-background-color-hover);
    border-color:  var(--btn-background-color);
    transition: all 0.3s ease;
}

.btn.secondary {
    background: var(--btn-secondary-background-color);
    border: 1px solid  var(--btn-secondary-color);
    color: var(--btn-secondary-color);
}

.btn.secondary:hover {
    background: var(--btn-secondary-background-color-hover);
    border-color: var(--btn-secondary-background-color-hover);
    color: #fff;
}

.view-all {
    text-align: center;
    font-size: 15px;
}

.view-all:hover {
    cursor: pointer;
}

.view-all span:before {
    content: '';
    width: 8px;
    height: 8px;
    border-bottom: 1px solid var(--body-color);
    border-left: 1px solid var(--body-color);
    position: absolute;
    right: 0;
    top: 5px;
    transform: rotate(-45deg);
    transition: .3s;
}

.view-all span.active:before {
    transform: rotate(135deg);
    transition: .3s;
    top: 10px;
}

.view-all span {
    display: inline-block;
    padding-right: 20px;
    position: relative;
}

.view-all span.active {
    margin-top: 30px;
}

.text-component p,
.text-component ul,
.text-component ol {
    margin-bottom: 20px;
}

.text-component > *:last-child {
    margin-bottom: 0;
}

.hero-text-inner ul li,
.text-component ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.hero-text-inner ul li:last-child {
    margin: 0
}

.hero-text-inner ul li:before,
.text-component ul li:before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--body-color);
    border-radius: 50%;
    left: 0;
    top: 10px;
    font-size: 18px;;
    position: absolute;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    padding: 20px 0;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs span.separator {
    display: block;
}

.breadcrumbs div:last-of-type,
.breadcrumbs div:last-of-type a {
    color: #5D5D5D;
}

.footer-holder {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--footer-bkg-color);
    color: #FFFFFF;
    overflow: hidden;
}

.footer-holder a {
    color: #FFFFFF;
}

.footer-phone {
    vertical-align: middle;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-menu li {
    margin-bottom: 15px; 
    font-size: 15px;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-menu + .footer-title {
    margin-top: 30px;
}

.footer-col-wrap {
    display: flex;
    gap: 50px;
    position: relative;
}

.footer-col-wrap .footer-col {
    flex: 0 1 auto;
    width: 100%;
}

.footer-col-wrap .footer-col .footer-logo {
    max-width: 200px;
}

.copyright {
    text-align: center;
    margin: 30px 0 0;
}

.productreviewwidget {
    height: 230px;
}


@media only screen and (min-width: 992px) {
    .contact-form {
        max-width: 70%;
        margin: 0 auto;
        border: 1px solid #ddd;
        padding: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .productreviewwidget {
        min-height: 380px;
        height: auto;
    }
    
    .footer-col-wrap {
        flex-wrap: wrap;
    }
  
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
        line-height: 1.4;
        margin-bottom: 40px
    }

    .scrollable {
		max-width: 100%;
		margin: auto;
		overflow-x: auto;
	}

    .scrollable img {
		max-width: initial;
	}
}

@media only screen and (max-width: 776px) {
    h1 {
        font-size: 25px;
        margin: 35px 0 20px; 
    }
    
    h2 {
        font-size: 22px;
        margin-bottom: 20px
    }
    
    h3 {
        margin-bottom: 15px
    }
    
    h4, h5 {

        font-size: 16px;
        margin-bottom: 15px
    }

    .breadcrumbs {
        flex-wrap: wrap;
    }
      
}