body,
html {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #7f7f7f;
    font-weight: 300;
}

hr {
    border-width: 2px;
    border-color: #2b4c21;
  }

hr.light {
    border-color: #fff;
}

a {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    color: #7f7f7f;
}


h1.title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
}

h1,
h2 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

h3.small {
    font-size: 14px;
    font-weight: 400;
}

h4 {
    font-size: 24px;
    font-weight: 300;
}

h4.small {
    font-size: 19px;
    font-weight: 400;
}

p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
}

p.large {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

p.small,
ul.small {
    font-size: 15px;
}

p.smaller,
ul.smaller {
    font-size: 13px;
    line-height: 16px;
}

ul.dots {
    margin-top: 20px;
    list-style: none;
    padding: 0px;
}

ul.dots li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 18px;
}

ul.dots li::before {
    content: "";
    display: block;
    background: #3e5992;
    width: 7px;
    height: 7px;
    position: absolute;
    top: 4px;
    left: 0;
    /* transition: ; */
    transform: rotate(45deg);
}

.text-black {
    color: #3a3a3a;
}

.text-blue {
    color: #3e5992;
}

.text-green1 {
    color: #6b9d40;
}

.text-green2 {
    color: #2b4c21;
}

.bg-green {
    background: #6b9d40;
}

.bg-green2 {
    background: #2b4c21;
}

.bg-grey {
    background: #ddd;
}

.form-control {
    font-size: 0.85rem;
}

.paddingZero {
    padding: 0px;
}

section {
    overflow-x: hidden;
  }

.underline {
    text-decoration: underline;
}

.bg-blue-img {
    background-image: url("../images/bg-blue.jpg");
    /*	background-attachment: fixed;
	-moz-background-attachment: fixed;
*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.vertical-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.btn-primary {
    background: #6b9d40;
    border: 0px;
    border-radius: 0px;
    padding: 12px 19px;
}

.arrow-more {
    float: right;
}

.preLoader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 10;
    display: table;
}

.preLoaderContent {
    vertical-align: middle;
    text-align: center;
    display: table-cell;
}

.lds-ellipsis {
    display: block;
    position: relative;
    width: 64px;
    height: 64px;
    margin: auto;
}

.lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #666;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(19px, 0);
    }
}

#scroll {
    position: fixed;
    right: 20px;
    bottom: 15px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    display: none;
    z-index: 2;
    background: #2b4c21;
    border-radius: 50%;
    padding: 2px;
}


/*----------------- Header -------------------*/

header {
    position: fixed;
    z-index: 2;
    width: 100%;
    background: rgba(0, 0, 0, 0.73);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.14) 81%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(81%, rgba(0, 0, 0, 0.14)), color-stop(100%, rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.14) 81%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.14) 81%, rgba(0, 0, 0, 0) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.14) 81%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.14) 81%, rgba(0, 0, 0, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);


}

header .navbar-nav {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

header .navbar {
    z-index: 1;
    width: 100%;
    padding: 0px;
}

header .navbar .navbar-collapse {
    float: right;
}

header .navbar .nav-item {
    position: relative;
    margin-left: 15px;
}

header .navbar-nav .nav-link,
header .navbar-nav .nav-link:hover,
header .navbar-nav .nav-link:focus,
header .navbar-nav .active>.nav-link {
    color: rgba(255, 255, 255, 1);
}

header .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 1);
    padding-right: 0px;
    font-weight: 400;
}

header .navbar .nav-item span {
    position: absolute;
    bottom: -6px;
    width: 100%;
    background: #fff;
    height: 2px;
    display: none;
}

header .navbar .nav-item:hover span,
header .navbar .nav-item.active span {
    display: block;
}

.header-menu {
    display: flex;
    align-items: center;
}

.search-panel {
    margin-top: 15px;
}

.search-panel .btn {
    background: none;
    padding: 0px 1px 0 0px;
}

.search-panel .btn:focus,
.search-panel .btn.focus {
    box-shadow: none;
}

.search-panel .dropdown-menu {
    background: transparent;
    padding: 0;
    border: 1px solid transparent;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    right: 0px;
    width: 220px;
}

.search-panel .form-control,
.search-panel .form-control:focus,
.search-panel .form-control::placeholder {
    background: transparent;
    border: 0;
    color: #fff;
    box-shadow: none;
}

.search-panel a {
    color: #fff;
    display: block;
    padding: 6px 10px 2px 12px;
    margin-right: 1px;
    font-size: 20px;
}

header {
    animation: smoothScroll2 0.5s forwards;
    padding: 20px 0;
}

header .logo img {
    height: 70px;
}

header.fixed-top {
    animation: smoothScroll 0.5s forwards;
    background: rgba(43, 76, 33, 0.8);
    padding: 15px 0;

}

header.fixed-top .logo img {
    height: 70px;
}

header.fixed-top .navbar-collapse {
    margin-top: 10px;
}

/* header.fixed-top .navbar-nav {
    margin-top: 14px;
} */

header.fixed-top .search-panel {
    display: none;
}



.companies-slider .slick-slide img,
.partners-slider .slick-slide img {
    margin: 0 auto;
}

/*header.fixed-top .navbar-dark .navbar-nav .nav-link {
	color: #2b4c21;
}

header.fixed-top .navbar .nav-item span{
	background: #2b4c21;
}
*/

@keyframes smoothScroll {
    0% {
        transform: translateX(1200px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes smoothScroll2 {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

.divcenter {
    width: 1200px;
    margin: 0 auto;
}

.sliderMargin {
    margin-top: 130px;
}

.bannerSlider .slider {
    width: 100%;
    margin: 0px auto;
}

.bannerSlider {
    position: relative;
    background: #000;
}

.bannerSlider aside {
    width: 100%;
    z-index: 2;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-bottom: 40px;
}

.bannerSlider aside h2 {
    color: #fff;
    font-size: 2.7rem;
    font-weight: 300;
    display: inline-block;
    padding-left: 100px;
}

.bannerSlider aside h3 {
    font-size: 40px;
    font-weight: 600;
    margin: 0px;
}

.banner-text {
    max-height: 250px;
    overflow: scroll;
}

.bannerSlider aside h3 small {
    display: block;
    font-weight: 100;
}

.bannerSlider aside p {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.bannerSlider aside .btn {
    background: transparent;
    border-radius: 0px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.8rem;
    padding: 10px 20px;
}

.bannerSlider aside .btn:hover {
    background: #fff;
    color: #333;
}

.bannerSlider figure {
    z-index: 1;
    margin: 0px;
    position: relative;
}

.bannerSlider figure img {
    width: 100%;
}

.bannerSlider .slick-slide {
    margin: 0px 0px -7px 0px;
    padding: 0;
    position: relative;
}

.bannerSlider .slick-next {
    position: absolute;
    right: 4.1%;
    z-index: 1;
    width: 46px;
    height: 30px;
    display: block;
    top: auto;
    bottom: 20px;
}

.bannerSlider .slick-prev {
    position: absolute;
    right: 8.5%;
    left: auto;
    width: 30px;
    height: 30px;
    display: block;
    top: auto;
    z-index: 1;
    bottom: 20px;
}

.bannerSlider .slick-prev::before,
.bannerSlider .slick-next::before {
    content: '';
    width: 30px;
    height: 30px;
    display: block;
    background-size: contain;
    opacity: 1;
}

.bannerSlider .slick-prev::before {
    background-image: url('../images/left-arrow-white.png');
}

.bannerSlider .slick-next::before {
    background-image: url('../images/right-arrow-white.png');
}

.subpage {
    background: #000;
    position: relative;
}

.subpage aside {
    width: 100%;
    z-index: 2;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    padding-top: 30px;
}

.subpage h3 {
    font-size: 48px;
    letter-spacing: 3px;
    position: relative;
    text-indent: 20px;
    display: inline-block;
    padding: 9px 0;
    margin: 0px;
}



.subpage p {
    font-size: 17px;
    text-align: justify;
    line-height: 22px;
}

.subpage figure {
    height: auto;
    margin: 0px;
}

.subpage figure img {
    opacity: 0.7;
    width: 100%;
    height: 500px;
    object-fit: cover;
}


  .contact-btns {
    display: flex;
    justify-content: space-between;
  }


/*-------------------------------*/

.aboutSection {
    background: url("../images/bg_about.jpg") center top no-repeat;
    background-size: cover;
    position: relative;
}

.v-line {
    height: 100%;
    width: 1px;
    display: block;
    background: #3e5992;
    position: absolute;
    left: -3rem;
    top: 0;
}



.partners-slider .slick-slide {
    padding: 4px 15px;
    border-left: 1px solid #cecece;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.companies-slider .slick-slide.slick-current,
.partners-slider .slick-slide.slick-current {
    border-left: 1px solid #fff;
}

.companies-slider .slick-prev,
.companies-slider .slick-next,
.partners-slider .slick-prev,
.partners-slider .slick-next {
    width: 30px;
    height: 30px;
    z-index: 2;
}

.companies-slider .slick-prev::before,
.companies-slider .slick-next::before,
.partners-slider .slick-prev::before,
.partners-slider .slick-next::before {
    content: '';
    width: 30px;
    height: 30px;
    display: block;
    background-size: contain;
    opacity: 1;
}

.companies-slider .slick-prev::before,
.partners-slider .slick-prev::before {
    background-image: url('../images/left-arrow-grey.png');
}

.companies-slider .slick-next::before,
.partners-slider .slick-next::before {
    background-image: url('../images/right-arrow-grey.png');
}

a.tree-links {
    position: relative;
    display: block;
    color: #3e5992;
    margin-top: 40px;
    font-weight: 300;
}

a.tree-links::before {
    content: "";
    display: block;
    background: #3e5992;
    width: 7px;
    height: 7px;
    position: absolute;
    top: -20px;
    left: 48%;
    transform: rotate(45deg);
}

.clients img {
    width: 150px;
    border: 1px solid #ccc;
    margin-right: 15px;
}

h3.date {
    font-size: 37px;
    margin-top: 10px;
}

h3.date small {
    display: inline-block;
    color: black;
    font-size: 11px;
    margin-left: 8px;
}

.c-care p {
    font-size: 16px;
    margin-bottom: 0px;
}

.c-care h3 {
    font-size: 18px;
    margin-top: 15px;
}

.team-section {
    background: url("../images/bg_team.jpg") center center no-repeat;
    background-size: cover;
    position: relative;
    padding: 170px 0;
}

.team {
    color: #2b4c21;
    font-size: 54px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.15) !important;
    display: block;
    height: 150px;
}

.team i {
    color: #2b4c21;
    font-size: 54px;
}

.offers a.icon {
    color: #2b4c21;
    font-size: 54px;
    background: white;
    padding: 10px;
    margin: 0 15px;
    border-radius: 8px;
    box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.15) !important;
    display: block;
    height: 150px;
}

.offers a:hover {
    text-decoration: none;
}

.offers a i {
    transition: transform 0.6s;
    transform-style: preserve-3d;
    display: inline-block;
}

.offers a:hover i {
    -webkit-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    transform: rotateY(360deg);
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s
}

.offers h3 {
    font-size: 16px;
}

.offers p {
    font-size: 14px;
    line-height: 19px;
    margin: 0;
}

.offers .dropdown:hover .dropdown-menu {
    display: block;
}

.offers .dropdown-menu {
    border: 0px;
    box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.15) !important;
    top: 110% !important;
}

.offers .dropdown-menu::before {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    display: block;
    position: absolute;
    top: -15px;
    left: 50%;
    margin-left: -8px;
}

.offers .navbar {
    padding: 0.5rem 0;
}

footer {
    letter-spacing: 1px;
}

footer hr {
    width: 100%;
    max-width: unset;
    border-width: 1px;
    border-color: #fff;
    margin: 5px auto 15px;
}

footer p.small,
footer a {
    color: #fff;
    font-size: 12px;
}

footer a:hover {
    color: #fff;
}

footer .menu a {
    font-size: 14px;
    margin-top: 8px;
    display: inline-block;
    text-transform: uppercase;
}

footer .media {
    margin-bottom: 70px;
    align-items: self-end;
    gap: 5px;
}

footer .media a {
    margin-right: 12px;
    color: #fff;
}

footer .media a:hover {
    opacity: 0.8;
}

footer .media a i {
    font-size: 22px;
}

footer .media a i.fa-instagram {
    font-size: 25px;
}

footer .media a i.fa-linkedin {
    font-size: 23px;
}


.shadow {
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.4);
    background: #fff;
    padding: 0px;
}

.text-shadow {
    text-shadow: 0px 0px 10px #000;
}

footer .media a,
.projectSlider .slick-slide aside,
.pic-link aside {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.center-pills {
    justify-content: center;
    font-weight: 500;
}

.center-pills.nav-pills .nav-link.active,
.center-pills.nav-pills .show>.nav-link {
    background: #fff;
    color: #787878;
    -webkit-box-shadow: 0px 0px 10px 2px rgba(147, 147, 147, 0.4);
    -moz-box-shadow: 0px 0px 10px 2px rgba(147, 147, 147, 0.4);
    box-shadow: 0px 0px 10px 2px rgba(147, 147, 147, 0.4);
}

.center-pills.nav-pills .nav-link {
    margin: auto 1rem;
}

.brandLogos a {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
}

.brandLogos a:hover {
    -webkit-box-shadow: 0px 0px 10px 2px rgba(147, 147, 147, 0.4);
    -moz-box-shadow: 0px 0px 10px 2px rgba(147, 147, 147, 0.4);
    box-shadow: 0px 0px 10px 2px rgba(147, 147, 147, 0.4);
}

.brandLogos a img {
    max-width: 180px;
    margin: auto;
    max-height: 120px;
}

.mediumBox ul {
    margin: 0;
    padding: 0;
}

.mediumBox ul li {
    width: 100%;
    position: relative;
    list-style: none;
    border: solid 2px #fff;
}

.mediumBox ul li a {
    color: #484848;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 0 9px 15px;
    text-transform: uppercase;
    width: 100%;
}

.mediumBox ul li:hover,
.mediumBox ul li.active {
    /* -webkit-box-shadow: 0px 0px 10px 2px rgba(147, 147, 147, 0.4);
    -moz-box-shadow: 0px 0px 10px 2px rgba(147, 147, 147, 0.4);
    box-shadow: 0px 0px 10px 2px rgba(147, 147, 147, 0.4); */
    background: #fff;
    border: solid 2px #2b4c21;
    border-radius: .25rem;
}

.mediumBox ul li a:hover {
    text-decoration: none;
}

.brands-detail-logo {
    margin-bottom: 1rem;
}

.brands-detail-logo img {
    max-height: 70px;
    margin-right: 1.2rem;
}

.brandHeading {
    /* background: #2c4a21; */
    padding: 10px;
    color: #2c4a21;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
}

.btn-green {
    background: #2c4a21;
    border-color: #2c4a21;
    border-radius: 0;
}

.btn-border {
    background: #fff;
    border: solid 2px #2c4a21;
    border-radius: .25rem;
    color: #2b4c21;
    font-weight: 600;
}

.btn-lgreen {
    background: #6b9d40;
    border-color: #6b9d40;
    border-radius: 0;
}

.half-section {
    margin: 0;
    padding: 0;
}

.half-section li {
    display: inline-block;
    width: 45%;
    margin-right: 2%;
    margin-bottom: .5rem;
}

.half-section li::before {
    content: '\f111';
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    color: #2c4a21;
    margin-right: 10px;
    font-size: 10px;
}

.slick-dots li button::before {
    font-size: 12px;
}

.slick-dots li.slick-active button::before {
    color: #6b9d40;
}

.prod-slider .slick-prev:before {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-size: 22px;
    color: #484848;
    font-weight: 800;
}

.prod-slider .slick-next:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-size: 22px;
    color: #484848;
    font-weight: 800;
}

.prod-slider .slick-slide img {
    margin: auto;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.prod-slider .slick-slide {
    position: relative;
    overflow: hidden;
    margin: 0 4px;
    /* Ensures images are contained within the slide */
}


.prod-slider .slick-slide img.product-image {
    height: 300px;
    /* Set the desired height */
    width: auto;
    /* Auto width to maintain aspect ratio */
    display: block;
    /* Ensures proper display */
    margin: auto;
    /* Center the image horizontally */
}



.companies-slider div:first-child,
.certificate-slider div:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

.companies-slider img,
.certificate-slider img {
    max-width: 90px;
}

.storeBx {
    max-width: 150px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin: auto;
    margin-bottom: .5rem;
}

a.storeBx:hover {
    -webkit-box-shadow: 0px 0px 10px 2px rgba(147, 147, 147, 0.4);
    -moz-box-shadow: 0px 0px 10px 2px rgba(147, 147, 147, 0.4);
    box-shadow: 0px 0px 10px 2px rgba(147, 147, 147, 0.4);
}

.storeBx img {
    max-height: 90px;
}

#storesModal .close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    z-index: 99999;
}

#storesModal .modal-body {
    padding: 1.5rem;
}

.bootstrap-filestyle {
    display: inline-block;
    width: auto;
    margin-right: 1rem;
    border-radius: 0;
}

.bootstrap-filestyle .btn-secondary {
    background: #2b4c21;
    border-radius: 0;
}


/*---------------- Bigger Screens ----------------*/

@media screen and (min-width: 1500px) {
    .offers .navbar {
        padding: 0.5rem 1rem;
    }
}

@media only screen and (max-width:1200px) {

    .bannerSlider aside {
        width: 95%;
    }

    header .navbar-dark .navbar-nav .nav-link {
        letter-spacing: 0;
      }

      .bannerSlider .slick-next {
        right: 20px;
      }

      .bannerSlider .slick-prev {
        right: 80px;
      }
}

@media only screen and (max-width:991px) {
    header {
        position: relative;
        background: #333;
        overflow: hidden;
    }

    header .navbar .navbar-collapse {
        float: none;
    }

    .header-menu {
        align-items: self-start;
    }

    .navbar-toggler {
        margin-top: 15px;
      }

    .projectSlider .btnPrev {
        left: 0px;
    }

    .projectSlider .btnNext {
        right: 0px;
    }
}

@media only screen and (max-width:767px) {
    .navbar-dark .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }

    h2 {
        margin: 1.2rem auto;
        font-size: 1.4rem;
    }

    header .navbar .navbar-collapse {
        float: none;
        margin: 10px 0 0 0;
    }


    header.fixed-top .nav-link {
        padding: 0.5rem 1rem;
    }

    header.fixed-top .navbar-nav {
        margin-top: 0px;
    }

    .subpage figure img {
        height: 300px;
        object-fit: cover;
    }

    .subpage aside {
        padding-top: 0px;
    }

    .subpage aside h3 {
        font-size: 35px;
    }

    .mediumBox {
        display: flex;
        overflow-x: scroll;
        padding: 5px 10px 20px 10px;
        margin-bottom: 10px;
    }

    .mediumBox ul {
        flex-shrink: 0;
        margin-right: 5px;
    }

    .mediumBox ul li a {
        padding: 7px 10px;
    }

    .storeBx {
        padding: 0.5rem;
    }

    .aboutSection {
        padding: 30px 0px;
    }

    .arrow-more {
        margin-bottom: 15px;
    }

    
      .contact-btns {
        gap: 15px;
        flex-direction: column;
      }

      .contact-btns button {
        width: 150px;
      }

    footer .media {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width:640px) {}

@media only screen and (max-width:576px) {
    p {
        font-size: 15px;
        font-weight: 300;
    }

    .ratings h4 {
        font-size: 2rem;
    }

    header .navbar-nav {
        font-size: 14px;
    }

    .bannerSlider aside h3,
    .bannerSlider aside p {
        font-size: 1rem;
    }

    aside.subpage h3 {
        font-size: 1.5rem;
    }

    .bannerSlider aside.subpage p {
        font-size: 1rem;
        font-weight: 300;
        line-height: 23px;
        height: 45px;
        overflow: hidden;
    }

    .bannerSlider aside h2 {
        font-size: 1.5rem;
    }

    .bannerSlider aside .btn {
        padding: 5px 10px;
    }

    .half-section li {
        display: block;
        width: 100%;
    }
}

@media only screen and (max-width:420px) {

    .bannerSlider figure img {
        height: 200px;
        object-fit: cover;
        object-position: center;
    }

    .brandLogos a {
        border: 1px solid #ccc;
        margin-bottom: 20px;
    }
}
#gdpr{
position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
}
#gdpr p {
  font-weight: 400;
  font-size: 14px;
  margin: 0;
}
#gdpr .btn-green {
  border: 1px solid #eee;
}
#gdpr a {
  color: #fff;
  margin: 0 6px;
}