/*-- general --*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Marcellus&display=swap');

:root {
    --primaryColor: #0f63ac;
    --secondaryColor: #f59433;
    --accentColor: #60e3d5;
    --textColor: #484848;
    --white: #ffffff;
    --black: #111111;
}

html {
    max-width: 100vw;
    overflow-x: hidden;
}

body, html {
    background: var(--white);
    color: var(--textColor);
    font-size: 19px;
    line-height: 1.5;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    scroll-behavior: smooth;
}

* {
    position: relative;
    z-index: 1;
}

img {
    height: auto;
}

.btnCustom {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    background-color: var(--primaryColor);
    background-image: linear-gradient( to left, var(--secondaryColor) 50%, var(--primaryColor) 50% );
    background-size: 220% 100%;
    background-repeat: no-repeat;
    background-position: right center;
    padding: 1em 2em;
    border-radius: 0;
    border: none;
    outline: none;
    width: 220px;
    border-radius: 50px;
    transition: all 0.4s ease-in-out;
}

.btnCustom.alt {
    background-image: linear-gradient( to left, var(--secondaryColor) 50%, var(--primaryColor) 50% );
}

.btnCustom:hover,
.btnCustom:focus,
.btnCustom:active {
    border: none;
    outline: none;
    box-shadow: none;
    background-color: var(--primaryColor);
    background-position: left center;
    color: var(--white);
}

.regularSection {
    padding: 5.5rem 0;
}

.headText {
    font-family: 'Marcellus', serif;
}

.sectionHeading {
    font-size: 3.5rem;
    color: var(--black);
}

.sectionSubHeading {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000;
}

.bgLight {
    background: #f8f8f8;
}

.addImgShadow {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

/*------------------------------------------- HEADER --*/
.siteHeader {
    padding: 1.5rem 0;
    background: var(--white);
}

.siteHeader.headerFixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 1.2rem 0;
    transform: translateY(-150%);
    transition: all 0.6s ease-in-out;
}

.siteHeader.headerFixed.show {
    transform: translateY(0);
}

.siteLogo {
    width: 15rem;
    height: auto;
}

.siteHeader.headerFixed .siteLogo {
    width: 12rem;
}

.siteNavigation {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-right: -1.5rem;
}

.siteNavigation li {
    display: inline-block;
    padding: 0 1.2rem;
}

.navLink {
    padding: 0.5rem 0.3rem;
    text-decoration: none;
    color: var(--textColor);
    font-weight: 500;
    transition: all 0.4s ease-in-out;
}

.siteHeader.headerFixed .navLink {
    font-size: 0.94rem;
}

.navLink:hover {
    color: var(--primaryColor) !important;
}

.navLink:active,
.navLink:focus,
.navLink.active {
    color: var(--secondaryColor) !important;
}

.hamburgerMenu {
    width: 1.8rem;
    height: 1.8rem;
    cursor: pointer;
}

.hamburgerMenu span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    border-radius: 20px;
    transform-origin: center center;
    background: var(--textColor);
    transform: translateY(-50%);
}

.hamburgerMenu span:first-child {
    transform: translateY( calc( -50% - 9px ) );
}

.hamburgerMenu span:last-child {
    transform: translateY( calc( -50% + 9px ) );
}

.btn-close {
    box-shadow: none !important;
}

.mobileMenu {
    list-style-type: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    gap: 30px;
}

.mobileMenu li a {
    font-size: 1.4rem;
}


/*------------------------------------------- BANNER --*/
.siteBanner {
    min-height: 80vh;
    background-color: var(--textColor);
}

.bannerCarousel .bannerSliderImage {
    min-height: 80vh;
    background-color: var(--textColor);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}

.bannerCarousel .bannerSliderImage::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background: var(--black);
    mix-blend-mode: multiply;
    opacity: 0.35;
}

.bannerCarousel .carousel-caption {
    z-index: 2;
    top: 1.25rem;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bannerCarousel .carousel-caption h1 {
    text-transform: capitalize;
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 0;
    padding-bottom: 0.5em;
    text-shadow: rgba(0, 0, 0, 0.2) 0px 10px 4px;
}

.scrollDown {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: calc( 100% - 80px );
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.scrollDown small {
    color: var(--white);
}

.arrow {
    width: 0;
    height: 10px;
    border: 1px solid var(--white);
    position: relative;
    animation: scroll 1.5s infinite;
    -webkit-animation: scroll 1.5s infinite;
}

.arrow::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: -5px;
    width: 1px;
    height: 10px;
    border-top: 10px solid var(--white);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

@keyframes scroll {
    0% {
      height: 10px;
    }
    30% {
      height: 25px;
    }
    60% {
      height: 10px;
    }
}

/*------------------------------------------- SERVICES --*/

.whatWeOffer {
    overflow: hidden;
    z-index: 2;
}

.whatWeOffer .container {
    z-index: 2;
}

.whatWeOffer::after {
    position: absolute;
    z-index: 1;
    content: "";
    top: 0;
    right: 50%;
    width: 20rem;
    height: 20rem;
    background: url(../assets/images/homOverlayImages-02.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateX(190%) rotate(25deg) scale(1.15);
    opacity: 0.3;
}

.serviceWrap {
    aspect-ratio: 1/1.5;
    min-height: 350px;
    perspective: 1000px;
}

.sw-content {
    height: 100%;
    transform: rotateY(0);
    transform-style: preserve-3d;
    transition: all 0.75s ease-in-out;
}

.serviceWrap:hover .sw-content {
    transform: rotateY( 180deg );
}

.serviceWrap .sw-content > div {
    width: 100%;
    height: 100%;
    background: var(--textColor);
    backface-visibility: hidden;
    position: absolute;
}

.serviceWrap .sw-back {
    transform: rotateY( 180deg );
    padding: 3rem 2rem;
}

.serviceWrap .sw-front::after {
    position: absolute;
    z-index: 2;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 60%;
    background: linear-gradient(#0000, #000f);
}

.serviceWrap .serviceImage {
    width: 100%;
    height: 100%;
    z-index: 1;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1);
}

.serviceWrap .serviceText {
    position: absolute;
    z-index: 3;
    bottom: 1rem;
    left: 1rem;
    margin: 0;
    color: var(--white);
    transform: translateY(0);
}

.serviceWrap .sw-back .serviceText {
    position: relative;
    left: auto;
    bottom: auto;
    margin-bottom: 30px;
}

.serviceWrap .sw-back .serviceText::after {
    position: absolute;
    bottom: -15px;
    left: 0;
    content: "";
    z-index: 1;
    width: 0px;
    height: 3px;
    background: var(--secondaryColor);
    transition: all 0.75s 0.6s ease-in-out;
}

.serviceWrap:hover .sw-back .serviceText::after {
    width: 50px;
}

.serviceWrap .sw-back * {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s 0.5s ease-in-out;
}

.serviceWrap:hover .sw-back * {
    transform: translateY(0);
    opacity: 1;
}


/*----------------------- HOME PRODUCTS ---*/

.productsSection .container {
    z-index: 2;
}

.productsSection::after {
    position: absolute;
    z-index: 1;
    content: "";
    bottom: 0;
    left: 50%;
    width: 20rem;
    height: 20rem;
    background: url(../assets/images/homOverlayImages-01.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateX(-230%) rotate(65deg) scale(0.9);
    opacity: 0.15;
}

.productsSection .categories a {
    text-decoration: none;
    display: block;
}

/*---------------------------- FOOTER ---*/

.siteFooter {
    background-color: var(--black);
}

.footerLogo {
    max-width: 300px;
    width: 100%;
    padding: 1rem;
}

.footerNavigation {
    width: auto;
}

.footerNavigation .navLink {
    color: var(--white);
}

.siteFooter p a {
    text-decoration: none;
    color: white;
}

.siteFooter p a:hover,
.siteFooter p a:focus,
.siteFooter p a:active {
    color: var(--secondaryColor);
}

/*-------------------- PAGE TITLE -----*/
.pageTitle {
    background-color: #f8f8f8;
}

.pageTitle::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background-image: url(../assets/images/pageTitleBg.jpg);
    background-position: center center;
    background-size: 200px 200px;
    opacity: 0.1;
}

.pageTitle .container {
    z-index: 2;
}

/*------------------- CONTACT PAGE ----*/
.contactDetails p {
    font-size: 1.1rem;
}

.contactDetails p a {
    color: var(--textColor);
    text-decoration: none;
}

.contactDetails p a:hover,
.contactDetails p a:focus,
.contactDetails p a:active {
    color: var(--secondaryColor);
}

.contactDetails p::before {
    position: absolute;
    content: "";
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    z-index: 2;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contactDetails p.contactLocation::before {
    background-image: url(../assets/icons/op-icon-pin.svg);
}

.contactDetails p.contactPhone::before {
    background-image: url(../assets/icons/op-icon-phone.svg);
}

.contactDetails p.contactMail::before {
    background-image: url(../assets/icons/op-icon-mail.svg);
}

.form-control {
    height: 50px;
    border-radius: 0;
    font-size: 15px;
    appearance: none;
    padding: 15px 15px 15px 35px;
    border-top: none;
    border-right: none;
    border-left: none;
    background-repeat: no-repeat;
    background-position: 0 13px;
    background-size: 24px 24px;
    background-color: transparent;
}

.form-control#cf_name {
    background-image: url(../assets/icons/op-icon-person.png);
}

.form-control#cf_mail {
    background-image: url(../assets/icons/op-icon-mail.png);
}

.form-control#cf_phone {
    background-image: url(../assets/icons/op-icon-phone.png);
}

.form-control#cf_subject {
    background-image: url(../assets/icons/op-icon-info.png);
}

.form-control#cf_quote {
    background-image: url(../assets/icons/op-icon-edit.png);
}

textarea.form-control {
    height: 100px;
    resize: none;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
    box-shadow: none;
    outline: none;
    border-color: var(--black);
}

.contactDivider {
    margin: 5rem 0;
}

.branches a {
    color: var(--textColor);
    text-decoration: none;
}

.branches a:hover,
.branches a:focus,
.branches a:active {
    color: var(--secondaryColor);
}

.branchDivider {
    width: 1px;
    height: 100px;
    background-color: var(--secondaryColor);
    margin-top: 80px;
    opacity: 0.5;
}

.branches img {
    border: 1px solid #d0d0d0;
    border-radius: 50%;
}

/*-------------- PRODUCT DATA ------------*/
.productData .productImage {
    background-color: #484848;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    width: 30%;
}

/*--------------- QUALITY CONTROL -------------*/

.qualitySection {
    background-image: url(../assets/images/bannerSliderImage-03.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #212529;
}

.qualitySection::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background-color: #111;
    content: "";
    opacity: 0.75;
}

.qualitySection .container {
    z-index: 2;
}

.highlightText {
    padding-left: 20px;
    margin-bottom: 1rem;
}

.highlightText::after {
    width: 6px;
    height: 25px;
    position: absolute;
    content: "";
    z-index: 1;
    background: var(--secondaryColor);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


/*--------------------------- Product Catelogue -------*/

.categoryFilterText {
    padding: 0.5em 0em 0.5em 34px;
    cursor: pointer;
    display: inline-block;
    margin: 0;
}

.categoryFilterText::before {
    position: absolute;
    content: "";
    z-index: 1;
    left: 0;
    top: 50%;
    width: 28px;
    height: 28px;
    background-image: url(../assets/icons/op-icon-category.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateY(-50%);
}

.categoryFilterBtn {
    width: 70px;
    border: 1px solid #e0e0e0;
    background: transparent;
    box-shadow: none !important;
    padding: 0.5em;
    cursor: pointer;
}

.categoryWrap {
    padding-top: 7rem;
}

.categoryTitle {
    text-transform: uppercase;
    color: var(--black);
    padding-left: 2rem;
    line-height: 1;
}

.categoryTitle::before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.5rem;
    background: var(--secondaryColor);
    content: "";
    z-index: 1;
}

.singleProduct img {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 5px 8px 0px;
    width: 100%;
    height: auto;
}

.singleProduct h5 {
    text-align: center;
    padding-top: 1.2em;
    padding-bottom: 0.8em;
    font-weight: 500;
    font-size: 1.05rem;
}

.category-filter h5 a {
    color: var(--textColor);
    text-decoration: none;
    font-weight: 400;
}

.category-list-fixed {
    position: fixed;
    z-index: 99;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px -2px 8px 0px;
    padding: 1rem 0 0.4rem;
    transform: translateY(150%);
    transition: all 0.4s ease-in-out;
}

.category-list-fixed.active {
    transform: translateY(0);
}

.category-list-fixed hr {
    display: none !important;
}

.category-list-fixed .category-filter h5 a {
    color: var(--textColor);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    display: inline-block;
    transform: translateY(0);
    transition: all 0.4s ease-in-out;
}

.category-list-fixed .category-filter h5 a.active {
    color: var(--secondaryColor);
    transform: translateY(-5px);
}

.category-list-fixed .category-filter h5 a::after {
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, 40px);
    border: 10px solid transparent;
    border-bottom-color: var(--textColor);
    transition: all 0.4s ease-in-out;
}

.category-list-fixed .category-filter h5 a.active::after {
    transform: translate(-50%, 20px);
}

.scrolToTop {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    width: 2rem;
    height: 2rem;
    border-radius: 3px;
    background: var(--black);
    cursor: pointer;
    transform: translateY(80px);
    transition: all 0.4s ease-in-out;
}

.scrolToTop.active {
    transform: translateY(0);
}

.scrolToTop:after {
    position: absolute;
    z-index: 1;
    inset: 0.7rem;
    content: "";
    border: 2px solid transparent;
    border-top-color: #fff;
    border-left-color: #fff;
    transform: translateY(25%) rotate(45deg);
}


label.error {
    color: #f00;
    font-size: 12px;
    position: absolute;
    z-index: 1;
    left: 1rem;
    bottom: 0;
    transform: translateY(100%);
}

.cf_response {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    background: #fff5;
    padding: 1rem;
    display: none;
}

#instafeed-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

#instafeed-container .instaFeed_item {
    display: inline-block;
    width: 100%;
    max-width: calc( 33.33% - 20px );
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#instafeed-container .instaFeed_item > img,
#instafeed-container .instaFeed_item > video {
    aspect-ratio: 1;
    background: #aaa;
    object-fit: cover;
}

#instafeed-container .instaFeed_item .instaFeed_itemLink {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.social-links-list img {
    height: 24px;
    width: auto;
}

.siteFooter .social-links-list img {
    filter: invert(1);
}