/* =========================================================
   VINTEK GALLERY SECTION
========================================================= */

.vintek-gallery-section {
    position: relative;
    background: #f7f9fc;
    overflow: hidden;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.vintek-gallery-main-title {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.vintek-gallery-main-title > span {
    display: inline-block;

    margin-bottom: 10px;

    color: #c49b3b;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2px;
}

.vintek-gallery-main-title h2 {
    margin-bottom: 15px;

    color: #172b4d;

    font-size: 38px;
    font-weight: 700;
}

.vintek-gallery-main-title p {
    margin: 0 auto;

    max-width: 700px;

    color: #6c7785;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CATEGORY
========================================================= */

.vintek-gallery-category {
    margin-bottom: 75px;
}

.vintek-gallery-category:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CATEGORY TITLE
========================================================= */

.vintek-category-heading {
    position: relative;

    margin-bottom: 30px;

    padding: 18px 25px;

    background: #ffffff;

    border-left: 5px solid #c49b3b;

    border-radius: 5px;

    box-shadow: 0 5px 20px rgba(20, 50, 90, 0.06);
}


/* Small category label */

.vintek-category-heading span {
    display: block;

    margin-bottom: 5px;

    color: #c49b3b;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;
}


/* Category title */

.vintek-category-heading h3 {
    margin: 0;

    color: #173b6c;

    font-size: 27px;
    font-weight: 700;
}


/* Decorative line */

.vintek-category-heading::after {
    content: "";

    position: absolute;

    right: 25px;
    top: 50%;

    width: 100px;
    height: 2px;

    background: linear-gradient(
        to right,
        #c49b3b,
        rgba(196, 155, 59, 0)
    );

    transform: translateY(-50%);
}


/* =========================================================
   CAROUSEL
========================================================= */

.vintek-gallery-carousel {
    position: relative;

    padding: 0 5px;
}


/* =========================================================
   IMAGE CARD
========================================================= */

.vintek-gallery-card {
    position: relative;

    height: 280px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e0e6ed;

    border-radius: 6px;

    box-shadow:
        0 7px 22px rgba(20, 50, 90, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.vintek-gallery-card a {
    display: block;

    width: 100%;
    height: 100%;
}


.vintek-gallery-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* Hover */

.vintek-gallery-card:hover {
    transform: translateY(-5px);

    border-color: #c49b3b;

    box-shadow:
        0 15px 35px rgba(20, 50, 90, 0.14);
}


.vintek-gallery-card:hover img {
    transform: scale(1.05);
}


/* =========================================================
   MACHINERY
========================================================= */

.vintek-machinery-carousel {
    max-width: 650px;

    margin: 0 auto;
}


.vintek-machinery-card {
    height: 360px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e0e6ed;

    border-radius: 6px;

    box-shadow:
        0 8px 25px rgba(20, 50, 90, 0.08);
}


.vintek-machinery-card a {
    display: block;

    width: 100%;
    height: 100%;
}


.vintek-machinery-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.vintek-machinery-card:hover img {
    transform: scale(1.04);
}


/* =========================================================
   OWL NAVIGATION
========================================================= */

.vintek-gallery-section .owl-nav {
    margin-top: 20px;

    text-align: center;
}


.vintek-gallery-section .owl-nav button.owl-prev,
.vintek-gallery-section .owl-nav button.owl-next {
    width: 42px;
    height: 42px;

    margin: 0 5px;

    background: #ffffff !important;

    color: #173b6c !important;

    border: 1px solid #d9e1e9 !important;

    border-radius: 50% !important;

    font-size: 20px !important;

    line-height: 42px !important;

    box-shadow: 0 5px 15px rgba(20, 50, 90, 0.08);

    transition: all 0.3s ease;
}


.vintek-gallery-section .owl-nav button.owl-prev:hover,
.vintek-gallery-section .owl-nav button.owl-next:hover {
    background: #173b6c !important;

    color: #ffffff !important;

    border-color: #173b6c !important;
}


/* =========================================================
   OWL DOTS
========================================================= */

.vintek-gallery-section .owl-dots {
    margin-top: 15px;

    text-align: center;
}


.vintek-gallery-section .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;

    margin: 5px;

    background: #cbd3dc;

    transition: all 0.3s ease;
}


.vintek-gallery-section .owl-dots .owl-dot.active span {
    width: 22px;

    background: #c49b3b;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .vintek-gallery-main-title h2 {
        font-size: 32px;
    }

    .vintek-gallery-card {
        height: 260px;
    }

    .vintek-category-heading h3 {
        font-size: 24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vintek-gallery-main-title {
        margin-bottom: 40px;
    }

    .vintek-gallery-main-title h2 {
        font-size: 28px;
    }

    .vintek-gallery-main-title p {
        font-size: 14px;
    }


    .vintek-gallery-category {
        margin-bottom: 50px;
    }


    .vintek-category-heading {
        padding: 15px 18px;

        margin-bottom: 20px;
    }


    .vintek-category-heading h3 {
        font-size: 21px;
    }


    .vintek-category-heading::after {
        display: none;
    }


    .vintek-gallery-card {
        height: 240px;
    }


    .vintek-machinery-carousel {
        max-width: 100%;
    }


    .vintek-machinery-card {
        height: 280px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .vintek-gallery-main-title h2 {
        font-size: 25px;
    }

    .vintek-gallery-card {
        height: 220px;
    }

    .vintek-machinery-card {
        height: 250px;
    }

}

/* =========================================================
   VINTEK GALLERY - MAIN SECTION TITLE
========================================================= */

.vintek-gallery-main-title {
    position: relative;
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

/* Small top label */

.vintek-gallery-main-title > span {
    position: relative;

    display: inline-block;

    margin-bottom: 12px;
    padding-left: 42px;

    color: #c49b3b;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Left decorative line */

.vintek-gallery-main-title > span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 30px;
    height: 2px;

    background: #c49b3b;

    transform: translateY(-50%);
}


/* Main heading */

.vintek-gallery-main-title h2 {
    position: relative;

    margin: 0 0 15px;

    color: #172b4d;

    font-size: 38px;
    font-weight: 700;

    line-height: 1.25;
}


/* Gold underline */

.vintek-gallery-main-title h2::after {
    content: "";

    display: block;

    width: 55px;
    height: 3px;

    margin: 16px auto 0;

    background: linear-gradient(
        90deg,
        #173b6c,
        #c49b3b
    );

    border-radius: 3px;
}


/* Description */

.vintek-gallery-main-title p {
    max-width: 700px;

    margin: 18px auto 0;

    color: #6c7785;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   VINTEK - CATEGORY TITLE
========================================================= */

.vintek-category-heading {
    position: relative;

    display: flex;
    align-items: center;

    margin-bottom: 28px;
    padding: 18px 25px;

    background: #ffffff;

    border-left: 5px solid #c49b3b;

    border-radius: 5px;

    box-shadow:
        0 6px 22px rgba(20, 50, 90, 0.07);

    overflow: hidden;
}


/* Sub title */

.vintek-category-heading span {
    position: relative;

    display: block;

    margin-right: 18px;

    padding-right: 18px;

    color: #c49b3b;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.8px;

    line-height: 1.5;
}


/* Vertical separator */

.vintek-category-heading span::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 1px;
    height: 25px;

    background: #dce2e9;

    transform: translateY(-50%);
}


/* Category name */

.vintek-category-heading h3 {
    margin: 0;

    color: #173b6c;

    font-size: 27px;
    font-weight: 700;

    line-height: 1.3;
}


/* Decorative background element */

.vintek-category-heading::after {
    content: "";

    position: absolute;

    right: -35px;
    top: 50%;

    width: 140px;
    height: 140px;

    border: 1px solid rgba(196, 155, 59, 0.12);

    border-radius: 50%;

    transform: translateY(-50%);
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.vintek-category-heading {
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.vintek-category-heading:hover {
    border-left-color: #173b6c;

    box-shadow:
        0 10px 28px rgba(20, 50, 90, 0.10);

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .vintek-gallery-main-title {
        max-width: 750px;
        margin-bottom: 45px;
    }

    .vintek-gallery-main-title h2 {
        font-size: 32px;
    }

    .vintek-category-heading h3 {
        font-size: 24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vintek-gallery-main-title {
        margin-bottom: 35px;
    }

    .vintek-gallery-main-title > span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .vintek-gallery-main-title h2 {
        font-size: 28px;
    }

    .vintek-gallery-main-title p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* Category */

    .vintek-category-heading {
        display: block;

        padding: 16px 18px;

        border-left-width: 4px;
    }

    .vintek-category-heading span {
        margin: 0 0 5px;
        padding: 0;
    }

    .vintek-category-heading span::after {
        display: none;
    }

    .vintek-category-heading h3 {
        font-size: 22px;
    }

    .vintek-category-heading::after {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .vintek-gallery-main-title h2 {
        font-size: 25px;
    }

    .vintek-category-heading h3 {
        font-size: 20px;
    }

}