@font-face {
  src: url("../fonts/PublicSans-VariableFont_wght.ttf");
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 1 1000;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --main-font: "Public Sans";
    --black: #434A54;
    --dark-black: #000;
    --white: #FFFFFF;
    --red: #7D1C1C;
    --gray: #696E76;
    --dark-gray: #434A54;
    --light-red: #FFF3E0;
    --borderColor: #DFDFDF;
}
html {
    font-size: 16px;
}
body {
   font-family: var(--main-font);
    color: var(--black);
    background-color: var(--white);
    /*line-height: 25px;*/
    line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-gray);
    font-weight: 700;
}
h1 {
    font-size: 80px; 
}
h2 {
   font-size: 2.25rem; 
   line-height: 4.188rem;
}
h3 {
   font-size: 1.875rem; 
   /*line-height: 67px;*/
}
h4 {
   font-size: 1.5rem; 
   line-height: 2.938rem;
}
h5 {
   font-size: 1.125rem; 
   line-height: 1.688rem;
}
h6 {
   font-size: 1.125rem; 
   line-height: 1.688rem;
}
a {
    color: var(--black);
    text-decoration: none;    
}
a:hover {
    color: var(--dark-black);   
}
img {
    max-width: 100%;
    vertical-align: middle;
}
.carousel-item img {
    aspect-ratio: 10 / 4;
}
.partner_img img {
    aspect-ratio: 2 / 1;
}
.product_img img {
    aspect-ratio: 3 / 2;
}
.product_imgs img {
    aspect-ratio: 5 / 5;
}
.services_img img {
    aspect-ratio: 10 / 10;
}
.services_imgs img {
    aspect-ratio: 3 / 2;
}
.splide__arrow {
    -ms-flex-align: center;
    align-items: center;
    background: #ccc;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 2em;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 40%!important;
    transform: translateY(-50%);
    width: 2em;
    z-index: 1;
}
/*------------------ common -----------------*/
main {
    min-height: 900px;
}
.cmt-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
}
.container {
    max-width: 1270px;
}
section {
    padding: 3.75rem 0;
}
.breadcrumb {
    margin-bottom: -2rem;
}
.our-goals {
    background-color: #FFF3E0;
;
}
.section-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    text-transform: capitalize;
}
.cmt-btn {
    padding: 8px 30px 9px 30px;
    color: var(--white);
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.813rem;
    display: inline-flex;
    align-items: center;
    background-color: var(--red);
    border-radius: 4px;
}
.cmn-btn {
    min-width: 150px;
    min-height: 48px;
    background-color: var(--red);
    padding: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: var(--white);
    border-radius: 4px;
    outline: none;
    border: 1px solid var(--red);
    transition: all 0.3s;
}
.cmn-btn:hover {
    /*box-shadow: 1px 2px 7px var(--red);*/
    background-color: var(--white);
    color: var(--red);
}
.cmn-btn:hover .btn-arrow-icon {
    background-color: var(--red);
    color: var(--white);
}
.btn-lg {
    min-width: 223px;
}
.btn-arrow-icon {
    width: 20px;
    height: 20px;
    background-color: #9b4546;
    border-radius: 50%;
    display: inline-flex;
    margin-left: 12px;
    font-size: 0.813rem;
    justify-content: center;
    align-items: center;
}
.cmn-btn-pink {
    color: var(--red);
    background-color: var(--light-red);
    border-color: var(--light-red);
}
.cmn-btn-pink .btn-arrow-icon {
    color: var(--red);
    background-color: #e6c7b8;
}
.btn-arrow-right-icon {
    width: 43px;
    height: 43px;
    background-color: var(--light-red);
    border-radius: 50%;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.section-bg {
    background-color: rgba(233, 237, 254, 0.2);
}
.bg-blue {
    background-color: #E9EDFE;
}
.cmn-banner {
    min-height: 118px;
    background-color: var(--light-red);
    display: flex;
    justify-content: center;
    align-items: center;
}
.cmn-banner h2 {
    margin-bottom: 0;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--red);
}
.font-black {
    color: var(--dark-black);
}
.font-red {
    color: var(--red);
}
.font-white {
    color: var(--white);
}
.font-18 {
    font-size: 1.125rem;
}
.font-20 {
    font-size: 1.25rem;
}
.font-32 {
    font-size: 2rem;
}
.font-36 {
    font-size: 3.5rem;
}
/*------------------ Header -----------------*/
header {
    min-height: 80px;
    display: flex;
    z-index: 999;
}
#menu-main-menu {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0 16px;
}
#menu-main-menu li {
        position: relative;
    padding: 4px 8px;
}
#menu-main-menu a {
    font-weight: 500;
    color: var(--red);
}
#menu-main-menu li:hover:after,
#menu-main-menu .current-menu-item:after {
       content: "";
    width: 100%;
    height: 4px;
    background: var(--red);
    position: absolute;
    left: 0;
    bottom: -24px;
    border-radius: 50px;
    transition: all 0.3s;
}
.navbar-nav .nav-link {
    color: #721c24;
    font-weight: 500;
}
.navbar-nav .nav-link:hover {
    color: #a94442;
}
.navbar-toggler {
    border: none;
}

/*------------------ Breadcrumb -----------------*/
.breadcrumb {
    margin-top: 16px;
}
.breadcrumb-item+.breadcrumb-item::before {
    font-family: "Font Awesome 7 Free";
    content: "\f105";
    font-weight: 900; /* required for solid icons */
}
/*------------------ Footer -----------------*/
footer {
    border-top: 1px solid #D9DBDD;
    padding: 32px 0;
}
#menu-main-menu-1 {
    list-style: none;
    /*display: grid;*/
    /*grid-template-columns: repeat(2, 1fr);*/
    display: flex;
    gap: 8px 0;
    flex-direction: row;
    flex-wrap: wrap;
}
#menu-main-menu-1 li{
    width: 70%;
}
#menu-main-menu-1 li:nth-child(odd){
    width: 30%;
}


/*------------------ Home -----------------*/
#thumbnail-slider .splide__pagination__page, 
#home-service-slider .splide__pagination__page,
.hero .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    opacity: 1;
    border: 0;
}
#thumbnail-slider .splide__pagination__page.is-active, 
#home-service-slider .splide__pagination__page.is-active,
.hero .carousel-indicators [data-bs-target].active {
    width: 38px;
    border-radius: 11px;
}

.home-product-box {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 5px 1px 12px #ddd;
}
.home-product-box img {
    transition: all 0.3s;
}
.home-product-box:hover img {
    transform: scale(1.2);
}
.home-product-box:after {
    content: "";
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(181.57deg, rgba(11, 11, 11, 0.03) 11.54%, #1A1A1A 98.67%);
}

.home-product-box:hover:after {
    height: 100%;
    background: linear-gradient(181.57deg, rgba(11, 11, 11, 0.43) 11.54%, #1A1A1A 98.67%);
}
.home-product-box p {
    position: absolute;
    left: 10px;
    bottom: 10px;
    color: var(--white);
    margin: 0;
    right: 10px;
    z-index: 2;
}

/*------------------ Partners -----------------*/
.partners-logo {
    padding: 30px;
}
/*------------------ Products -----------------*/
#thumbnail-slider {
     padding-bottom: 40px;
 }
.products img {
    position : relative;

}
.products h5 {
    position: absolute;
}
#thumbnail-slider .splide__list>.splide__slide.is-active {
    border-color: var(--red);
}
#productTab {
    margin-bottom: 24px;
    justify-content: space-between;
    align-items: end;
    border-bottom: 1px solid var(--borderColor);
}
#productTab li {
    justify-content: space-between;
}
#productTab li button {
    color: var(--dark-black);
    font-size: 1.125rem;
    border: 0;
    border-bottom: 3px solid transparent;
}
#productTab .nav-link:focus, 
#productTab .nav-link:hover,
#productTab .nav-item.show .nav-link, 
#productTab .nav-link.active {
    color: var(--red);
    border: 0;
    border-bottom: 3px solid var(--red);
}
#productTabContent .tab-pane {
    min-height: 300px;
}
.filter-option {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.filter-item label {
    background-color: var(--light-red);
    min-width: 98px;
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50px;
    cursor: pointer;
}
.filter-item input {
    display: none;
}
.filter-item input:checked~label {
    background-color: var(--red);
    color: var(--white);
}
.product-card-box img {
    margin-bottom: 16px;
    border: 1px solid var(--borderColor);
    border-radius: 12px;
}
.product-card-box a {
    /*font-size: 24px;*/
}

.custom-pagination {
    margin-top: 24px;
    text-align: center;
}
.custom-pagination a ,
.custom-pagination span {
    background-color: var(--borderColor);
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid var(--borderColor);
    color: var(--dark-black);
    font-weight: bold;
}
.custom-pagination span {
    background: transparent;
    border: 0;
    color: var(--dark-black);
}
.custom-pagination a:hover,
.custom-pagination .current {
    background-color: var(--red);
    color: var(--white);
} 
#home-service-slider {
     padding-bottom: 60px;
 }
#thumbnail-slider .splide__pagination__page, 
#home-service-slider .splide__pagination__page {
   background-color: var(--red);
   opacity: 0.7;
}
#thumbnail-slider .splide__pagination__page.is-active, 
#home-service-slider .splide__pagination__page.is-active {
   transform: scale(1);
   background-color: var(--red);
   opacity: 1;
}
#thumbnail-slider .splide__arrow, 
#home-service-slider .splide__arrow {
    background: var(--red);
}
#thumbnail-slider .splide__arrow svg, 
#home-service-slider .splide__arrow svg {
    fill: var(--white);
}
/*------------------ Services -----------------*/
.btn-wrapper {
      margin-top: auto;
      text-align: right;
    }

/*------------------ About -----------------*/
.about-us {
    /*padding:0px;*/
}
.about-us p {
    text-align:justify;
}
.about h3 {
    /*font-size: 30px;*/
    /*font-weight: 700;*/
    /*color: var(--red);*/
    /*text-align: center;*/
}
.about p {
    text-align: center;
}
.quote-box {
    margin: 0 auto;
}
.quote-text {
    position: relative;
    color: var(--red);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 31px;
    text-align: center;
    margin: 0 auto;
}
.quote-text::before {
  content: "“";
  font-size: 80px;
  position: absolute;
  top: -10px;
  left: -70px;
  color: var(--red);
}

.quote-text::after {
  content: "”";
  font-size: 80px;
  position: absolute;
  top: -10px;
  right: -70px;
  color: var(--red);
}

/*------------------ Contact -----------------*/

.contact-form label {
    margin-bottom: 8px;
    font-size: 1.125rem;
    font-weight: 600;
}
.contact-form label span {
    color: var(--red);
}
.contact-form .form-control {
    min-height: 62px;
    border-radius: 8px;
}


/*------------------ Email -----------------*/
.email-section {
  background-color: #eef1ff;
  padding: 50px 0;
}
.email-section .form-control {
  border-radius: 5px 0 0 5px;
}
button.btn-contact {
    width: 220px;
}
.btn-contact {
  border-radius: 0 5px 5px 0;
  background-color: #8b1e23;
  color: white;
  border: none;
  padding: 10px;
}
.btn-contact:hover {
  background-color: #a32129;
}
img {
  max-width: 100%;
}

/*------------------ Customer -----------------*/
.customers {
    /*padding:0px;*/
}
 .customer-links {
   display: flex;
    flex-wrap: wrap;
    gap: 24px 16px; 
}
.customer-links a {
    min-width: 125px;
    min-height: 66px;
     padding: 4px 16px;
    justify-content: space-between;
    column-gap: 24px;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 700;
}
.customer-list ul {
    margin-bottom: 10px;
}
.customer-list li {
    line-height: 35px;
}
/*------------------ Customer -----------------*/


@media screen and (max-width: 992px) {
    html {
        font-size: 14px;
    }
    footer {
        padding: 24px 0;
    }
    section {
        padding: 2rem 0;
    }
        
    .breadcrumb {
        margin-bottom: -0.5rem;
    }
    #navbarNavAltMarkup {
        height: calc(100vh - 80px);
        overflow-y: auto;
        background: var(--light-red);
        position: fixed;
        width: 100%;
        top: 76px;
        left: 0;
    }
    #menu-main-menu {
       flex-direction: column;
        gap: 24px;
        padding: 32px 0;
    }
    #menu-main-menu li:hover:after, 
    #menu-main-menu .current-menu-item:after {
        bottom: 0;
    }
    #menu-main-menu li {
        padding: 8px 8px;
    }
    #menu-main-menu a {
        font-size: 1.25rem;
    }
    
    .quote-text::before {
        left: 0;
    }
    .quote-text::after {
        right: 0;
    }
    .cmn-btn {
        min-width: 125px;
        min-height: 40px;
    }
    .btn-lg {
        min-width: 190px;
    }
    .home-product-box p {
        left: 50%;
        bottom: initial;
        right: initial;
        transform: translate(-50%, -50%);
        top: 50%;
        text-align: center;
    }
}