@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --red: #FE0B0F;
    --textRed: #fa0000;
    --footerBody: #232323;
    --olive-green: #AC9557;
    --mud: #998140;
    --darkMud: #684D09;
    --orangeMud: #E0AC1F;
    --dark-green: #221901;
    --tenor-sans: "Tenor Sans", sans-serif;
    --time: 'Times New Roman';
    --montserrat: "Montserrat", sans-serif;
}

@font-face {
    font-family: 'Times New Roman';
    src: url('../fonts/Times-new-roman-font/TimesNewRomanPSMT.woff2') format('woff2'),
        url('../fonts/Times-new-roman-font/TimesNewRomanPSMT.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--montserrat);
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    font-family: var(--montserrat);
}

h1,
.h1-title {
    font-weight: 700;
    font-size: 119px;
    line-height: 1.25em;
    text-transform: uppercase;
    color: var(--black);
}

h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1666em;
}

p {
    font-weight: 400;
    padding: 0;
    line-height: 1em;
    margin: 0;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    border: none;
}

a {
    display: inline-block;
    text-decoration: none;
    outline: none !important;
    color: inherit;
    transition: all .3s ease-in-out;
}

.p-70 {
    padding: 70px 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

textarea {
    resize: none;
}

.btn {
    transition: 0.5s;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 50px;
}

.btn-primary {
    background: var(--orange);
    border: none;
    padding: 14px 25px;
    font-size: 17px;
    line-height: 1em;
    font-weight: 600;
    border-radius: 14px;
    color: var(--white);
    border: 1px solid #E2E2E2;
    box-shadow: 0px 4px 44px 0px #0000001A;
    transition: all .3s ease-in-out;
}

.btn-primary:hover,
.btn-primary:focus {
    box-shadow: 0px 4px 44px 0px #0000001A;
    background-color: var(--white);
    color: var(--grey);
    border: 1px solid #E2E2E2;
    transition: all .3s ease-in-out;
}

.btn-primary span i {
    transform: rotate(330deg);
    margin-left: 5px;
}


.btn-white {
    background-color: var(--white);
    color: var(--grey);
}

.btn-white:hover,
.btn-white:focus {
    box-shadow: 0px 4px 44px 0px #0000001A;
    background-color: var(--orange);
    color: var(--white);
    border: 1px solid #E2E2E2;
    transition: all .3s ease-in-out;
}

.btn-view {
    border: 1px solid #D9AF7F;
    color: #ffffff;
    position: relative;
    padding: 15px 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.5s;
    z-index: 1;
}

.btn-view:hover {
    background-color: #D9AF7F;
}

.btn-view::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 100%;
    height: 100%;
    border: 1px solid #D9AF7F;
    z-index: -1;
    transition: 0.5s;
}

.btn-view:hover::after {
    opacity: 0;
}

.text-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.container {
    max-width: 100%;
    padding: 0 20px;
    position: relative;
}

/*menu CSS
--------------------------------------------------------------------------------------------------*/
.menu {
    margin-left: auto;
    padding: 37px 0;
    background-color: var(--footerBody);
}

.menu ul {
    margin: 0;
    padding: 0;
    font-size: 0;
}

.menu ul li {
    display: inline-block;
    padding: 0;
    list-style-type: none;
    position: relative;
    vertical-align: middle;
}

.menu ul li.active {
    position: relative;
}

.menu ul li.active::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    max-width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../images/menu-active-shape.svg);
}

.menu ul li span {
    position: absolute;
    top: 14px;
    right: 0;
    display: none;
}

.menu ul li span::after {
    content: '\f107';
    color: #000000;
    font-family: FontAwesome;
    font-size: 10px;
}

.menu ul li:hover span::after {
    color: #f7c624;
}

.headarea.innerheader .menu ul li a {
    color: #000;
}

.menu ul li a {
    color: var(--white);
    font-family: var(--montserrat);
    font-size: 15px;
    line-height: 1em;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    padding: 4px 0px;
    margin: 0 15px;
    position: relative;

    &:hover {
        color: #E8B631;
    }
}

.menu ul li a.menu-trigger i {
    font-weight: 400;
}

.menu ul li.active a::after,
.menu ul li:hover a::after {
    width: 100%;
}

.menu ul li.active a::after {
    width: 100%;
}

.menu ul li a span {
    display: inline-block;
    vertical-align: 0px;
    margin-left: 6px;
    font-size: 10px;
}

.menu ul li a .arrow-icon {
    display: inline-block;
    font-size: 10px;
    margin-left: 5px;
}

.menu ul li ul {
    width: max-content;
    min-width: 200px;
    position: absolute;
    top: calc(100% + 30px);
    left: -1em;
    z-index: 2;
    background-color: var(--white);
    padding: 8px 16px;
    border: 2px solid var(--black);
    text-align: left;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.menu ul ul li:first-child:before {
    display: none;
}

.menu ul ul li:after {
    display: none;
}

.menu ul li:last-child ul {
    width: 220px;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 2;
    background-color: #ffffff;
    box-shadow: 0px 5px 14px rgb(0 0 0 / 2%);
    text-align: left;
}

.menu ul li ul li a {
    font-size: 16px;
    text-transform: none;
    padding: 2px 0;
    color: var(--bodycolor);
    line-height: 1.3em;
    font-weight: 400;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -khtml-transition: all ease-in-out 0.5s;
    display: block;
    margin: 0;
    border-radius: 0;
}

.menu ul li ul li ul {
    top: 10px;
    left: 149px;
}

.menu ul li ul li span {
    right: 7px;
    top: 12px;
}

.menu ul li a:hover.menu ul li ul {
    display: block;
}

.menu ul li ul li {
    display: block;
    padding: 0;
    border-bottom: solid 1px rgb(255 255 255 / 7%);
    border-right: none;
}

.menu ul li ul li:last-child {
    border: none;
}

.sub-menu li a::after {
    height: 0 !important;
}

.menuButton {
    width: 37px;
    height: 30px;
    padding: 5px;
    float: right;
    display: none;
}

.menuButton span {
    width: 100%;
    height: 2px;
    background: #E8B631;
    margin-bottom: 6px;
    float: left;
    transition: all 0.3s ease-in-out 0s;
}

.menuButton span:last-child {
    margin-bottom: 0;
}

@media (min-width:1199.98px) {
    .menu ul {
        display: block !important;
    }

    .menu ul li:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
}

@media (max-width:1199.98px) {
    .menuButton {
        display: block;
        margin-left: 15px;
        cursor: pointer;
    }

    .menu ul li span {
        background: url(../images/menu_arrow.png) center center no-repeat;
        cursor: pointer;
        width: 15px;
        height: 15px;
        position: absolute;
        right: 15px;
        top: 20px;
        z-index: 99;
    }

    .menu ul li:hover span {
        background: url(../images/menu_arrow_hover.png) center center no-repeat;
    }

    .arrow_change span:nth-child(2) {
        display: none;
    }

    .arrow_change span:first-child {
        position: relative;
        top: 9px;
        transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    .arrow_change span:last-child {
        position: relative;
        top: 1px;
        transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }

    .menuBar {
        padding: 15px 0;
    }

    .menu {
        padding: 5px 0;
    }

    .menu ul {
        display: none;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 99;
    }

    .menu ul li a {
        color: #071731;
        display: block;
        width: 100%;
        font-size: 14px;
    }

    .menu ul li ul {
        display: none;
        background-color: #e1e1e1;
        position: relative;
        top: 5px;
        left: 0;
        width: 100%;
        z-index: 1;
        padding: 0;
        visibility: initial;
        opacity: 1;
    }

    .menu ul li:last-child ul {
        display: none;
        background-color: #e1e1e1;
        position: relative;
        top: 5px;
        left: 0;
        width: 100%;
        z-index: 1;
    }

    .menu ul li {
        display: block;
        padding: 10px 15px 10px 15px;
        border-top: 1px solid #cccccc54;
        text-align: left;
        position: relative;
    }

    .menu ul li span {
        position: absolute;
        right: 30px;
        z-index: 99;
        cursor: pointer;
        top: 12px;
        text-align: center;
    }

    .menu ul li ul li ul {
        top: 0;
        left: 0;
    }

    .menu ul li ul li a {
        font-size: 12px;
        text-transform: none;
        background-color: #e1e1e1;
        padding: 8px 12px;
        color: #000;
    }
}

/*-- menu stop --*/

/*-- header area start --*/
.page-header {
    background-color: var(--footerBody);
    position: relative;
    padding: 15px;
}

.header-area {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 91;
}

.header-body .logo {
    width: 100%;
    max-width: fit-content;
}

.header-body .logo a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-body .logo img {
    width: 100%;
    object-fit: cover;
}

.header-menu {
    width: 100%;
    justify-content: end;
    margin-left: auto;
}

.contact-btn-wrap a {
    font-family: var(--montserrat);
    display: flex;
    align-items: center;
    gap: 14px;
    color: #E8B631;
    padding-left: 16px;

    &:hover {
        color: var(--white);
    }
}

.header-contact-text-box p {
    font-size: 24px;
    font-weight: 700;
    line-height: 1em;
    transition: all .3s ease-in-out;
}

.header-contact-img-box i {
    font-size: 14px;
}

/*-- header area stop --*/

/* footer start */
.footer {
    background-color: var(--footerBody);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-img-box {
    margin-bottom: 22px;
}

.footer-text p {
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 17px;
    line-height: 1.5rem;
    color: #F2E2B7;
}

.footer-social ul {
    display: flex;
    gap: 13px;
    padding: 14px 0 29px;
}

.footer-social ul li a {
    font-size: calc(14px + 1vw);
    color: #dbb03d;
}

.footer-social ul li a img {
    width: calc(13px + 1vw);
}

.footer-social ul li a:hover {
    color: var(--white);
}

.footer-list li a:hover {
    color: #dbb03d;
}

.footer-heading {
    color: var(--white);
    font-family: var(--montserrat);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 22px;
    line-height: 39px;
}

.footer-box p {
    font-family: var(--montserrat);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.349rem;
}

.footer-list {
    margin-left: 25px;
}

.footer-list li {
    list-style: disc;
    color: var(--white);
}

.footer-list p,
.footer-list a {
    font-size: 16px;
    color: var(--white);
    font-weight: 700;
    margin: 0;
}

.footer-list a {
    padding: 0 0 20px 0px;
    font-size: 17px;
    font-family: var(--montserrat);
    font-weight: 600;
}

.footer-top-inner-row {
    --bs-gutter-y: 30px;
}

.get-in-touch li {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    padding-top: 25px;
    color: var(--white);
}

.get-in-touch li:first-child {
    padding: 0;
}

.footer-contact-cont {
    max-width: calc(100% - 14px);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding-left: 11px;
}

.get-in-touch li i {
    font-size: 14px;
    padding-top: 5px;
    color: var(--white);
}

.footer-contact-cont span {
    font-family: var(--time);
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}

.footer-contact-cont a {
    font-family: var(--time);
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;

    &:hover {
        color: #ff0000;
    }
}

.get-in-touch li:nth-child(2) a {
    text-decoration: underline;
}

.footer-row {
    --bs-gutter-x: 40px;
}

.footer-bottom {
    background-color: #AC9557;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
    align-items: center;
    padding: 17px 0;
    color: var(--white);
    font-family: var(--montserrat);
    font-weight: 400;
    font-size: 17px;
}

.footer-bottom p a {
    text-decoration: underline;
    color: #684D09;

    &:hover {
        color: var(--black);
    }
}

.form-inner {
    display: flex;
    border: 1px solid #6C757D;
    border-radius: 6px;
    overflow: hidden;
}

.mail-box {
    width: 75%;
    position: relative;
}

.mail-box input {
    width: 100%;
    height: 50px;
    background-color: var(--footerBody);
    outline: 0;
    border: 0;
    padding: 15px 20px;
    padding-left: 50px;
    color: var(--white);
}

.mail-box input::placeholder {
    font-family: var(--montserrat);
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
}

.mail-icon {
    position: absolute;
    top: 15px;
    left: 21px;
}

.sub-box {
    width: 25%;
}

.sub-btn {
    width: 100%;
    height: 100%;
    background-color: #6C757D;
    border: 0;
    font-family: var(--montserrat);
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s ease-in-out;

    &:hover {
        color: var(--black);
        background-color: #dbb03d;
    }
}

.footer-bottom p a {
    text-decoration: underline;
}

/* footer end */
/* Bottles & Packaging Solutions start */

.bottle-packing-bg {
    background-color: var(--olive-green);
}

.bottle-packing-sec {
    padding: 30px 0;
}

.bottle-packing-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* Bottles & Packaging Solutions end */
/* <!-- WINE BOTTLES, SPIRIT BOTTLES, CORKS & CAPSULES start --> */
.section-heading p {
    font-size: 18px;
    line-height: 1.5rem;
    padding-top: 30px;
}

.bottles-sec .section-heading {
    max-width: 822px;
    margin: 0 auto;
    color: var(--white);
    padding-bottom: 60px;
}

.product-container {
    padding: 18px;
    background-color: var(--white);
    border-radius: 22px;
}

.product-container h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5rem;
    text-align: center;
    padding: 35px 0 25px;
}

.bottles-row {
    --bs-gutter-y: 1.875rem;
    justify-content: center;
}

.primary-button.mud-color {
    background-color: var(--olive-green);
}

.primary-button {
    font-family: var(--time);
    font-weight: 700;
    font-size: 18px;
    line-height: 1rem;
    padding: 18px 45px;
    border-radius: 10px;
    text-transform: uppercase;
    background-color: var(--dark-green);
    color: var(--white);

    &:hover {
        background-color: var(--black);
    }
}

.bottles-button {
    text-align: center;
    padding-top: 60px;
}

.section-heading h2 {
    color: var(--black);
}

/* <!-- WINE BOTTLES, SPIRIT BOTTLES, CORKS & CAPSULES end --> */
/* PACKAGING SOLUTIONS start */
.packaging-solution-sec {
    padding: 90px 0 43px;
    background-image: url(../images/PACKAGING-SOLUTIONS-bg.webp);
    background-size: cover;
}

.packaging-solution-sec .section-heading {
    color: var(--white);
}

/* .packaging-solution-sec .section-heading a {
    margin: 30px 0 15px;
} */

.packaging-solution-sec .section-heading h2 {
    color: var(--white);
}

/* .packaging-half-img-box{
    filter: drop-shadow(0px 35px 44px 0px #00000040);

} */
/* PACKAGING SOLUTIONS end */

/* start conversation sec start */
.start-conversation-sec {
    padding: 130px 0;
    background-color: #AC9557;
}

.start-conversation-row {
    align-items: center;
}

.start-conversation-box {
    height: 100%;
}

.start-conversation-text-box {
    padding-bottom: 55px;
}

.heading-message-icon-box {
    color: var(--black);
    font-size: 45px;
}

.start-conversation-text-box h3 {
    font-weight: 400;
    font-size: 30px;
    line-height: 2.063rem;
    padding: 25px 0 30px;
    color: var(--white);
}

.start-conversation-text-box p {
    max-width: 400px;
    line-height: 1.563rem;
}

.banner-right {
    background-color: var(--white);
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.4);
    padding: calc(10px + 1vw);
    border-radius: 6px;
}

/* .get-form-sec {
    width: 100%;
    position: relative;
    z-index: 9;
} */

.get-form-box-wrapper label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
    font-family: var(--montserrat);
}

.get-input-box input {
    width: 100%;
    height: 48px;
    background: #FFFFFF;
    color: var(--black);
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 10px 15px;
}

.get-input-box i {
    max-width: 18px;
    position: absolute;
    right: 23px;
    top: 19px;
    color: #575656;
}

.get-input-box {
    position: relative;
}

.get-form-row {
    --bs-gutter-y: 14px;
}

.form-select:focus {
    border-color: #dee2e6;
    outline: 0;
    box-shadow: none;
}

.get-select-box select {
    width: 100%;
    height: 48px;
    color: #666;
    border-radius: 6px;
    padding: 7px 15px;
    padding-right: 46px;
    border: 1px solid #dee2e6;
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.send-btn,
.send-btn.primary-btn {
    border-radius: 0;
    border: 1px solid var(--white);
    background: #998140;
    text-align: center;
    padding: 13px 25px;
    font-family: var(--montserrat);
    transition: all .3s ease-in-out;
}

.checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 16px;
    font-family: var(--montserrat);
    font-weight: 500;
    color: var(--black);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox input:checked~.checkmark:after {
    display: block;
}

.checkbox .checkmark:after {
    left: 7px;
    top: 2px;
    width: 5px;
    height: 11px;
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.get-select-box {
    margin-bottom: 14px;
}

.get-mesage-box textarea {
    width: 100%;
    height: 75px;
    background: var(--white);
    color: var(--black);
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 10px 20px;
}

.captcha-sm>.row {
    --bs-gutter-x: 10px;
}

.captcha span {
    width: 120px;
    display: inline-block;
}

.captcha span img {
    border: 1px solid #dee2e6;
}

.btn-captcha {
    background: #998140;
    border: 1px solid #998140;
    color: var(--white);
    transition: all 0.3s ease-in-out;
    padding: 6px 12px;
    font-size: 16px;
}

.btn-captcha:hover {
    background: #413106;
}

/* start conversation end */


/* WE ARE GLASS start */
.we-are-glass {
    padding: 80px 0 0;
    background-color: #F2E2B7;
}

.glass-content p {
    font-family: var(--tenor-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    padding-bottom: 20px;
}

.primary-btn {
    font-family: var(--time);
    font-weight: 700;
    font-size: 18px;
    line-height: 15px;
    background-color: #684D09;
    border-radius: 10px;
    color: var(--white);
    padding: 20px 40px;
    margin-top: 15px;
}

.primary-btn:hover {
    background-color: var(--footerBody);
    color: var(--white);
}

.we-are-glass .row {
    align-items: center;
}

/* WE ARE GLASS end  */


.banner-box {
    position: relative;
}

.banner-box-inner {
    position: relative;
}

.banner-boc-cont-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.banner-info {
    max-width: 910px;
}

.banner-info h1 {
    max-width: 860px;
    line-height: 108px;
    margin-bottom: 28px;
}

.banner-info p {
    font-size: 50px;
}

.banner-box-cont-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-box-cont-inner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(89.74deg, rgba(217, 231, 255, 0.72) 18.22%, rgba(229, 238, 255, 0) 78.79%);
}

/* inner-page-banner start */
.inner-page-banner {
    background-color: #998140;
    padding: 90px;
}

.inner-page-title h2 {
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: calc(14px + 2.6vw);
    line-height: 15px;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
}

/* inner-page-banner end */
/* BORDEAUX/CLARET start */
.bordeaux-sec {
    margin: 75px 0;
}

.side-bar-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-size: calc(10px + 0.4vw);
    line-height: 1.2;
    color: #444;
    font-weight: 600;
}

.side-bar-list li a h4 {
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 17px;
    line-height: 15px;
    color: var(--black);
}

.side-bar-list li a span {
    font-family: var(--montserrat);
    background: #444;
    color: #FFF;
    padding: 6px;
    border-radius: 4px;
    line-height: 1;
    width: 28px;
    height: 28px;
    text-align: center;
}

.side-bar-list {
    padding: 0 20px;
    margin: 0;
    background-color: var(--white);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.1);
}

.side-bar-list li.active a {
    color: #998140;
}

.side-bar-list li {
    list-style-type: none;
    border-bottom: #998140 1px solid;
    padding-bottom: calc(8px + 0.6vw);
    margin-bottom: calc(8px + 0.6vw);
}

.side-bar-list li:first-child {
    border-top: 0;
    padding-top: calc(8px + 0.6vw);
    margin-top: 0;
}

.side-bar-list li:last-child {
    border-bottom: 0;
}

.bordeaux-sec-imgs-content {
    background-color: var(--white);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 28px 10px 35px;
}

.bordeaux-sec-imgs-content h5 {
    font-family: var(--montserrat);
    font-weight: 700;
    font-size: 20px;
    line-height: 15px;
    padding: 20px 0;
    text-align: center;
}

.view-btn a {
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 17px;
    line-height: 15px;
    padding: 12px 15px;
}

.view-btn {
    text-align: center;
}

.bordeaux-sec-imgs .row {
    --bs-gutter-y: 30px;
}

.pagination-sec {
    width: 100%;
    margin-top: 60px;
}

.pagination-sec ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-sec ul li {
    margin: 0 2px;
}

.pagination-sec ul li a {
    display: flex;
    width: 32px;
    height: 32px;
    font-size: 14px;
    font-weight: bold;
    color: #202020;
    align-items: center;
    justify-content: center;
    border: 1px solid #DFE3E8;
    border-radius: 4px;
}

.pagination-sec ul li a.active {
    border-color: #241B02 !important;
}

.left-arrow {
    background-color: #241B02;
    color: #fff !important;
    border-color: #241B02;
}

.right-arrow {
    background-color: #747677;
    color: #fff !important;
    border-color: #747677;
}

/* BORDEAUX/CLARET end */
/* about-us start */
.about-us {
    margin: 70px 0;
}

.about-us-text {
    max-width: 1275px;
    margin: 0 auto;
}

.about-us-text p {
    font-family: var(--montserrat);
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    padding-bottom: 20px;
}

.about-us-text p span {
    font-family: var(--montserrat);
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    color: #98700C;
}

/* about-us end */
/* bottle-decoration-img start */
.bottle-decoration-img {
    text-align: center;
    padding-bottom: 40px;
}

.bottle-decoration-text h3 {
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 44px;
    line-height: 55px;
    padding-bottom: 40px;
}

.bottle-decoration-text p {
    font-family: var(--montserrat);
    font-weight: 400;
    font-size: 19px;
    line-height: 32px;
    padding-bottom: 10px;
}

/* bottle-decoration-img end */
/* SILKSCREENING FROSTING ETCHING start */
.frosting-sec {
    background-color: #F2E2B7;
    padding: 70px 0;
}

.frosting-sec-box {
    height: 100%;
    background-color: var(--white);
    padding: 14px 14px 40px;
}

.frosting-sec-box h5 {
    font-family: var(--montserrat);
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    color: #98700C;
    padding: 25px 0 15px;
}

.frosting-sec-box p {
    font-family: var(--montserrat);
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 25px;
}

.frosting-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
}

.frosting-list li p {
    font-family: var(--montserrat);
    font-weight: 500;
    font-size: 17px;
    padding: 0;
}

.frosting-list li i {
    color: #98700C;
}

/* SILKSCREENING FROSTING ETCHING end */

/* HOW IT WORKS start */
.how-work {
    margin: 80px 0;
}

.how-work h3 {
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 44px;
    line-height: 55px;
    text-align: center;
    padding-bottom: 45px;
}

.how-work-box {
    height: 100%;
    background-color: #F2E2B7;
    padding: 50px 15px 40px;
    text-align: center;
}



.how-work-box h4 {
    font-family: var(--montserrat);
    font-weight: 700;
    font-size: 22px;
    line-height: 55px;
    text-align: center;
}

.how-work-box p {
    font-family: var(--montserrat);
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
}

/* HOW IT WORKS end */

/* 17-02-26 */
/* Wine & Spirits Corrugated Boxes start */
h3 {
    font-weight: 600;
    font-size: 44px;
    line-height: 1.5em;
}

.wine-spirit-inner {
    padding-top: 42px;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.wine-spirit-inner>.row:nth-child(even) {
    flex-direction: row-reverse;
}

.wine-spirit-sec {
    padding: 85px 0 70px;
}

.wine-spirit-row {
    align-items: center;
}

.wine-spirit-text-box p,
.dot-list-ul li {
    font-family: var(--montserrat);
    font-weight: 500;
    font-size: 17px;
    line-height: 2rem;
    margin-bottom: 16px;
}

.wine-spirit-text-box p:last-child,
.dot-list-ul li {
    margin-bottom: 0 !important;
}

.wine-spirit-text-box p.bold {
    font-weight: 700;
    font-size: 19px;
}

.dot-list-ul {
    padding-left: 15px;
    margin-bottom: 0;
}

.dot-list-ul li {
    line-height: 1.75rem;
    list-style: disc;
}

/* Wine & Spirits Corrugated Boxes end */

/* contact-us page start */
.contact-page-row {
    --bs-gutter-x: 0px;
}

.contact-page-left-box,
.contact-page-right-box {
    height: 100%;
}

.contact-page-left-img-box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-page-left-img-box>img {
    width: fit-content;
    height: 100%;
    object-fit: cover;
    max-width: max-content;
}

.address-back {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    background: #0000005C;
    backdrop-filter: blur(4px);
    padding: 30px 30px 35px;
    margin: 0 55px 0 40px;
    color: var(--white);
}

.address-back h6,
.address-back h5,
.address-back p {
    font-weight: 600;
    font-size: 17px;
    line-height: 1.5;
}

.address-back h6 {
    font-size: 27px;
    color: #F2E2B7;
}

.address-back p {
    font-family: var(--montserrat);
}

.address-back i {
    font-size: 20px;
    padding-top: 5px;
}

.contact-us-right {
    border-radius: 0;
    box-shadow: none;
    background-color: #F2E2B7;
}

.send-btn,
.send-btn.primary-btn {
    border: 0;
}

.get-select-box {
    margin-bottom: 0;
}

.contact-us-right .checkbox {
    margin-bottom: 7px !important;
}

.contact-us-right .get-form-row {
    --bs-gutter-y: 13px;
}

.contact-us-page-sec {
    padding: 0 0 65px;
}

/* contact-us page end */

/* product-details page start */

.product-details-left-box,
.product-details-right-box {
    height: 100%;
}

.product-details-img-box {
    box-shadow: 0px 4px 44px 0px #0000001A;
    text-align: center;
}

.product-details-sec.frosting-sec {
    background-color: var(--white);
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--montserrat);
}

.product-table th,
.product-table td {
    border: 1px solid #B0954B;
    text-align: left;
    font-family: var(--montserrat);
    font-weight: 500;
    line-height: 1.5em;
    padding: calc(2px + 0.4vw) calc(8px + 1vw);
    font-size: calc(8px + 0.4vw);
    vertical-align: middle;
}

.product-table tr:first-child th,
.product-table tr:first-child td {
    background: #C2AD72;
    color: var(--white);
}

.product-table h2 {
    font-weight: 600;
    font-size: 25px;
}

.product-table tr:nth-child(even) th,
.product-table tr:nth-child(even) td {
    background: #F2E2B7;
}

.product-table tr:nth-child(odd):not(:first-child) th,
.product-table tr:nth-child(odd):not(:first-child) td {
    background: #C2AD72;
}

.product-table th {
    font-weight: 600;
    width: 44%;
    font-size: 17px;
}

.bottle-color ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 28px;
    align-items: center;
}

.bottle-color li {
    text-align: center;
    font-family: var(--montserrat);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
}

.bottle-color .top {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 6px;
    border: 3px solid var(--white);
    background-color: var(--white);
    box-shadow: 0px 0px 1px 1px var(--black);
}

.bottle-color li:nth-child(1) .top {
    background: #B0954B;
    border-color: #C2AD72;
}

.download-btn {
    display: inline-block;
    padding: 7px 38px;
    background: #98700C;
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.download-btn:hover {
    background: #7d5c0c;
}

/* product-details page end */


/* 25-02-26 */
.footer-social ul li a img {
    padding-bottom: 7px;
}

.glass-content p {
    font-size: 19px;
}

.primary-btn,
.primary-button {
    border-radius: 0;
}

.heading-message-icon-box {
    color: #493604;
}

.footer-row>.col-xl-1 {
    width: 5.333333%;
}

.how-work-box i {
    font-size: 45px;
    padding-bottom: 23px;
    color: #8e6e18;
}

.dot-list-ul li {
    line-height: 1.75rem;
    list-style: disc;
    color: #333;
    font-size: 20px;
    padding-bottom: 10px;
}

.wine-spirit-text-box p,
.dot-list-ul li {
    color: #333;
    font-size: 20px;
}

.frosting-list li {
    padding-bottom: 20px;
}

.frosting-sec-box h5 {
    padding: 25px 0 15px 12px;
}

.frosting-sec-box p {
    padding: 0 0 25px 12px;
}

.frosting-sec-box ul {
    padding-left: 12px;
}

@media (max-width: 991px) {
    .frosting-sec-box p {
        padding: 0 0 15px;
    }

    .frosting-sec-box ul {
        padding-left: 0px;
    }

    .frosting-list li {
        padding-bottom: 15px;
    }
}


/* 26-02-26 */

/* 26-02-26 */
/* mega-menu-start */
.contact-btn-wrap a:hover {
    color: #E8B631;
}

.menu ul li ul {
    max-width: min-content;
    border: 0;
}

.menu ul li ul.sub-menu.mega-menu {
    max-width: max-content;
    padding-top: 15px;
}

.menu>ul>li.has-children.mega-menu-has-children {
    position: unset;
}

.sub-heading {
    font-size: calc(10px + 0.4vw);
    line-height: 1.4;
    background: transparent;
    color: #9f7502;
    font-weight: 600;
    padding: calc(8px + 0.8vw) calc(12px + 0.8vw) calc(4px + 0.4vw);
    padding-top: 0;
}

.menu ul li ul.mega-list,
.menu ul li:last-child ul.mega-list {
    width: min-content;
    min-width: 100%;
    padding-left: calc(12px + 0.8vw);
    margin-bottom: calc(4px + 0.4vw);
    position: unset;
    border: 0;
    box-shadow: none;
}

.menu>ul>li:hover>ul li ul.mega-list {
    visibility: visible;
    opacity: 1;
    display: block;
}

.mega-list li,
.menu ul li ul li {
    list-style-type: none;
    display: inline-block;
    background: none;
    line-height: 1.4;
    width: 100%;
    margin: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.mega-list li a,
.menu ul li ul li a {
    display: inline-block;
    width: 100%;
    background: none;
    font-size: calc(8px + 0.4vw);
    color: #333;
    font-weight: 500;
    padding: calc(3px + 0.3vw) calc(3px + 0.3vw);
    transition: all 0.3s ease-in-out 0s;
}

.mega-list li a::before,
.menu ul li ul li a::before {
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
}

.mega-list li a:hover,
.menu ul li ul li a:hover {
    background: #9f7502;
    color: #FFF;
    transition: all 0.3s ease-in-out 0s;
}

.mega-menu-row img {
    padding: 0 15px 15px;
}

@media (min-width: 1199.98px) {
    .menu {
        padding: 0 !important;
    }

    .menu ul li a {
        padding: 37px 0;
    }
}

@media(max-width: 1199px) {

    .menu ul li,
    .menu ul {
        background-color: var(--footerBody);
        border: 0;
    }

    .menu ul li a {
        color: var(--white);
    }

    .menu ul li ul,
    .menu ul li ul.mega-list {
        background-color: var(--white);
    }

    .menu ul li ul {
        max-width: 100%;
    }
}

@media(max-width: 991px) {
    .mega-menu-row {
        --bs-gutter-y: 20px;
    }

    .menu ul li ul.sub-menu.mega-menu {
        height: 75vh;
        overflow: scroll;
    }
}

@media(max-width: 767px) {
    .mega-menu-row {
        --bs-gutter-y: 15px;
    }
}

@media(max-width: 575px) {
    .mega-menu-row {
        --bs-gutter-y: 10px;
    }
}

/* mega-menu-end */

.bottle-packing-list li a {
    font-family: var(--montserrat);
    color: var(--white);
    background: #684D09;
    border: 1px solid var(--darkMud);
    border-radius: 50px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    font-size: calc(9px + 0.3vw);
    padding: calc(2px + 0.8vw) calc(6px + 1vw);
}

.bottle-packing-bg {
    background: #998140;
}

.glass-content h2 {
    font-family: var(--montserrat);
    line-height: 1;
    font-size: calc(14px + 2.4vw);
    font-weight: 600;
    color: #000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.glass-content h2 img {
    max-width: 38px;
    height: 100%;
    width: calc(10px + 2.4vw);
    vertical-align: middle;
    margin: 0 18px;
}

.glass-content h4 {
    line-height: 1.2;
    font-weight: 500;
    font-size: calc(12px + 1.2vw);
    padding: 10px 0 20px;
    color: #413106;
}

.glass-content p {
    color: #333;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    font-family: var(--montserrat);
}

.primary-btn {
    display: inline-block;
    font-family: var(--montserrat);
    font-weight: 600;
    background: #998140;
    line-height: 1;
    font-size: calc(10px + 0.4vw);
    border-radius: 0px;
    color: var(--white);
    padding: calc(8px + 0.2vw) calc(10px + 0.6vw);
    text-transform: uppercase;
}

.primary-btn:hover {
    border: none;
    background: #413106;
    color: #FFF;
    transition: all 300ms ease-in-out 0s;
}

.glass-content {
    padding: 40px 0;
}

.section-heading h2 {
    max-width: 791px;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    font-size: calc(12px + 1.8vw);
    font-weight: 600;
    text-align: center;
}

.section-heading p {
    max-width: 748px;
    font-family: var(--montserrat);
    padding-top: 15px;
    color: #FFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    font-size: calc(12px + 0.4vw);
    font-weight: 500;
}

.bottle-packing-bg {
    background: #AC9557;
}

.bottles-sec {
    padding: 40px 0 60px;
}

.bottles-sec .section-heading {
    padding-bottom: 30px;
}

.product-container {
    display: inline-block;
    width: 100%;
    background: #FFF;
    border-radius: 6px;
    padding: 10px;
    transform: scale(1);
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.4);
    transition: all 300ms ease-in-out 0s;
}

.product-image img {
    width: 100%;
}

.product-container h3 {
    text-align: center;
    color: #000;
    font-size: calc(11px + 0.4vw);
    font-weight: 600;
    text-align: center;
    line-height: 1;
    padding: calc(14px + 1vw) 0px calc(12px + 0.3vw);
}

.bottles-button {
    padding-top: 55px;
}

.secondery-btn {
    display: inline-block;
    background: #413106;
    color: #FFF;
    line-height: 1;
    font-size: calc(10px + 0.4vw);
    font-weight: 600;
    padding: calc(6px + 0.8vw) calc(8px + 1.6vw);
    transition: all 300ms ease-in-out 0s;
}

.secondery-btn:hover {
    background: #000;
    color: #FFF;
    transition: all 300ms ease-in-out 0s;
}

.small-text p {
    max-width: 635px;
    color: #FFF;
    display: inline-block;
    width: 100%;
    line-height: 1.2;
    font-size: calc(10px + 0.3vw);
    font-weight: 500;
}

.packaging-solution-sec {
    background-image: url(../images/packing-back.webp);
    background-position: right bottom;
}

.start-conversation-sec {
    padding: 40px 0 !important;
    background-color: #AC9557;
}

.heading-message-icon-box i {
    font-size: calc(22px + 2vw);
    color: #493604;
}

.start-conversation-text-box h2 {
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    font-size: calc(12px + 1.8vw);
    font-weight: 600;
}

.start-conversation-text-box h3 {
    max-width: 400px;
    color: #FFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    font-size: calc(12px + 0.4vw);
    font-weight: 500;
    padding: 25px 0 10px;
}

.start-conversation-text-box p {
    font-family: var(--montserrat);
    max-width: 517px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    font-size: calc(12px + 0.4vw);
    font-weight: 500;
}

.checkmark {
    height: 28px;
    width: 28px;
}

.checkbox {
    padding-left: 40px;
}

.get-input-box input,
.get-select-box select {
    padding: calc(2px + 0.4vw) calc(4px + 0.4vw);
    font-size: calc(10px + 0.4vw);
    font-weight: 500;
    color: #666;
    font-family: var(--montserrat);
}

.form-control:focus {
    border: 1px solid var(--darkMud);
    box-shadow: none;
}

/* 26-02-26( not updated) */
/* Custom-Molds start */
.Custom-Molds {
    padding: 40px 0;
}

.Custom-Molds-text {
    max-width: 1077px;
    margin: 0 auto;
}

.Custom-Molds-text p {
    font-family: var(--montserrat);
    color: #333;
    font-size: calc(12px + 0.4vw);
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 20px;
}

.Custom-Molds-text h3 {
    color: #413106;
    line-height: 1.2;
    font-weight: 500;
    font-size: calc(12px + 1.2vw);
    margin-bottom: calc(12px + 0.8vw);
    padding-top: 20px;
}

.Custom-Molds-text ol li {
    color: #333;
    font-size: calc(12px + 0.4vw);
    line-height: 1.8;
    list-style: decimal;
    font-weight: 500;
}

@media(max-width: 1199px) {
    .Custom-Molds-text {
        max-width: 773px;
    }
}

@media(max-width: 991px) {
    .Custom-Molds-text {
        max-width: 574px;
    }
}

@media(max-width: 767px) {
    .Custom-Molds-text {
        max-width: 421px;
    }
}

@media(max-width: 575px) {
    .Custom-Molds-text {
        max-width: 353px;
    }
}

@media(max-width: 420px) {
    .Custom-Molds-text {
        max-width: 268px;
    }
}

/* Custom-Molds end */

/* blog-page start */
.inner-page-title h2 {
    text-transform: capitalize;
}

.blog-page-sec {
    padding: 40px 0;
}

.blog-img-container,
.blog-img-container .image {
    display: inline-block;
    width: 100%;
}

.blog-img-container .image {
    border: #c3c3c3 1px solid;
    padding: 2px;
}

.blog-img-container .img {
    width: 100%;
    overflow: hidden;
}

.blog-img-container .img img {
    transform: scale(1);
    transition: all 0.3s ease-in-out 0s;
}

.blog-img-container .img:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out 0s;
}

.blog-img-container .blog-title {
    display: inline-block;
    width: 100%;
    font-size: calc(12px + 0.4vw);
    color: #bb8800;
    font-weight: 500;
    padding: calc(3px + 0.3vw) 0px;
    transition: all 0.3s ease-in-out 0s;
}

.blog-img-container .blog-title:hover,
.blog-img-container a .blog-date:hover {
    color: #735400;
    transition: all 0.3s ease-in-out 0s;
}

.blog-img-container .blg-list {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    width: 100%;
    color: #333;
    align-items: center;
    font-size: calc(10px + 0.3vw);
}

.blog-img-container .blg-list li:first-child {
    margin-right: calc(8px + 0.8vw);
}

.blog-page-row {
    --bs-gutter-y: 30px;
}

/* pagination-start */
.blog-pagination-sec {
    padding-top: 50px;
}

.pagination .page-item .page-link {
    border-radius: 0;
    box-shadow: none;
    color: #806212;
    line-height: 1.4;
    padding: calc(2px + 0.2vw) calc(10px + 0.2vw);
    font-size: calc(12px + 0.2vw);
}

.pagination .page-item.disabled .page-link {
    color: #777;
}

.pagination .page-item .page-link {
    border-radius: 0;
    box-shadow: none;
    color: #806212;
    line-height: 1.4;
    padding: calc(2px + 0.2vw) calc(10px + 0.2vw);
    font-size: calc(12px + 0.2vw);
}

.page-link.active,
.active>.page-link {
    background-color: #998140;
    border-color: #998140;
}

.pagination .page-item.active .page-link {
    color: #FFF;
}

.page-item:not(:first-child) .page-link {
    margin-left: -1px;
}

/* pagination-end */
@media(max-width: 575px) {
    .blog-pagination-sec {
        padding-top: 40px;
    }
}

@media(max-width: 480px) {
    .blog-pagination-sec {
        padding-top: 35px;
    }
}

/* blog-page-end */

/* can-templates start */
.can-templates h3 {
    color: #413106;
    line-height: 1.2;
    font-weight: 500;
    font-size: calc(12px + 1.2vw);
    margin-bottom: calc(12px + 0.8vw);
    text-align: center;
}

.can-img img {
    width: 100%;
}

.can-box {
    height: 100%;
    border: #dee2e6 1px solid;
    margin-bottom: 20px;
}

.can-box h4{
    display: inline-block;
    width: 100%;
    font-size: calc(10px + 0.6vw);
    color: #333;
    line-height: 1.6;
    font-weight: 600;
    padding: calc(4px + 0.4vw) calc(8px + 0.8vw);
}

.can-box ul li a{
        color: #b80;
        font-size: calc(10px + 0.4vw);
    line-height: 1.2;
    font-weight: 500;
    padding: 0px calc(8px + 0.8vw);
    margin-bottom: calc(4px + 0.8vw);
    transition: all 0.3s ease-in-out 0s;
}

.can-box ul li a i{
    margin-right: 8px;
}

.can-box ul li a:hover{
    transform: translate(6px);
}

@media(max-width: 575px){
    .can-templates-sco-row{
        --bs-gutter-y: 24px;
    }
}

/* can-templates end */

/* carrodated-cartons start */
.mb-30{
    margin-bottom: 30px !important;
}

.pt-40{
    padding-top: 40px !important;
}

.body-text h2,
.body-text h4 {
    color: #413106;
    line-height: 1.2;
    font-weight: 500;
    font-size: calc(12px + 1.2vw);
    margin-bottom: calc(12px + 0.8vw);
}

.body-text h4 {
    font-size: calc(12px + 0.6vw);
}

.body-text ul {
    padding-left: 15px;
    margin-bottom: 0;
}

.body-text ul li, .body-text ol li {
    color: #333;
    font-size: calc(12px + 0.4vw);
    line-height: 1.8;
}

.list-disc-ul li{
    list-style: disc;
}

.cartons-main-row img{
    width: 100%;
}
/* carrodated-cartons end */

/* corks-capsules-start */
.body-header-black h3 {
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    font-size: calc(12px + 1.8vw);
    font-weight: 600;
    text-align: center;
}

.body-text p {
    color: #333;
    font-size: calc(12px + 0.4vw);
    line-height: 1.4;
}

body{
    font-weight: 500;
}
/* corks-capsules-end */


.address-back h5
 {
    color: #F2E2B7;
    font-weight: 600;
    font-size: calc(14px + 0.6vw);
}

/********************************************************/
.blog-bread-cumb {
	display: inline-block;
	width: 100%;
	border: #dedede 1px solid;
	padding: calc(8px + 0.2vw) calc(16px + 0.2vw) calc(6px + 0.2vw);
	margin-bottom: calc(14px + 0.6vw);
	list-style-type: none;
}
.blog-bread-cumb li {
	display: inline-block;
	line-height: 1.4;
	
}
.blog-bread-cumb li:after {
	content: "\f054";
	font-family: "Font Awesome 6 Pro";
	line-height: 1.4;
	padding: 0px 10px;
}
.blog-bread-cumb li:last-child:after {
	content: "";
}
.blog-bread-cumb li a {
	color: #666;
	text-decoration: none;
	transition: all 0.3s ease-in-out 0s;
}
.blog-bread-cumb li a:hover {
	color: #bb8800;
	text-decoration: none;
	transition: all 0.3s ease-in-out 0s;
}
/********************************************************
********************************************************/
.blog-list-container .image img,
.blog-post-mater div img,
.blog-post-mater p img {
	/*width: 100%;*/
}
.blog-list-container figure {
	/*width: 100%;
	padding-top: 56.25%;*/
	position: relative
}
.blog-list-container figure div,
.blog-list-container figure iframe {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	position: absolute !important;
}
.blog-list-container .sub_cat {
	text-decoration: none;
	color: #bb8800;
	font-size: calc(12px + 0.3vw);
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: calc(2px + 0.8vw);
}
.blog-list-container .heading {
	text-decoration: none;
	color: #000000;
	font-size: calc(22px + 0.8vw);
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: calc(14px + 0.4vw);
}
.blog-list-container .post_authore {
	color: #bb8800;
	font-size: calc(10px + 0.2vw);
	line-height: 1.2;
	font-weight: 500;
	margin-bottom: calc(11px + 0.8vw);
}
.blog-list-container .post_authore span:nth-child(even) {
	color: #bb8800;
	font-weight: 600;
}
.blog-list-container .blog-view-social ul {	
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: calc(8px + 0.4vw);
}
.blog-list-container .blog-view-social ul li {
	font-size: calc(8px + 0.4vw);
	color: #000;
	font-weight: 600;
	margin-bottom: calc(2px + 0.4vw);
	margin-right: 0px;
	display: block;
}
@media (max-width: 991.98px) {
	.blog-list-container .blog-view-social ul li {
		display: inline-block;
		margin-bottom: 0px;
		margin-right:  calc(2px + 0.2vw);
	}
}
.blog-list-container .blog-view-social ul li a {
	width: calc(22px + 1.6vw);
	height: calc(22px + 1.6vw);
	background: #e2e2e2;
	border: 1px #d0d0d0 solid;
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: calc(12px + 0.8vw);
}
.blog-list-container .blog-view-social ul li a.fb {
	background: #1877f2FF;
	border: 1px #1877f2 solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-view-social ul li a.tw {
	background: #14171aFF;
	border: 1px #14171a solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-view-social ul li a.in {
	background: #c32aa3FF;
	border: 1px #c32aa3 solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-view-social ul li a.pn {
	background: #bd081cFF;
	border: 1px #bd081c solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-view-social ul li a.ld {
	background: #0a66c2FF;
	border: 1px #0a66c2 solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-view-social ul li a.tl {
	background: #35465dFF;
	border: 1px #35465d solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-view-social ul li a.yt {
	background: #ff0000FF;
	border: 1px #ff0000 solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-view-social ul li a.wa {
	background: #1fad4fFF;
	border: 1px #1fad4f solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-view-social ul li a.fb:hover {
	background: #1877f2DD;
	border: 1px #1877f2 solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-view-social ul li a.tw:hover {
	background: #14171aDD;
	border: 1px #14171a solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-view-social ul li a.in:hover {
	background: #c32aa3DD;
	border: 1px #c32aa3 solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-view-social ul li a.pn:hover {
	background: #bd081cDD;
	border: 1px #bd081c solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-view-social ul li a.ld:hover {
	background: #0a66c2DD;
	border: 1px #0a66c2 solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-view-social ul li a.tl:hover {
	background: #35465dDD;
	border: 1px #35465d solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-view-social ul li a.yt:hover {
	background: #ff0000DD;
	border: 1px #ff0000 solid;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-post-mater p,
.blog-list-container .blog-post-mater ul{	
	color: #333;
	font-size: calc(12px + 0.4vw);
	line-height: 1.4;
}
.blog-list-container .blog-post-mater ul{
	padding-left: calc(28px + 1vw);
	font-size: calc(11px + 0.3vw);
}
.blog-list-container .blog-post-mater ul li{
	margin-bottom: calc(11px + 0.3vw);
}
.blog-list-container .blog-post-mater h1,
.blog-list-container .blog-post-mater h2,
.blog-list-container .blog-post-mater h3,
.blog-list-container .blog-post-mater h4,
.blog-list-container .blog-post-mater h5,
.blog-list-container .blog-post-mater h6 {
	color: #333;
	line-height: 1.2;
	margin-bottom: calc(11px + 0.4vw);
}
.blog-list-container .blog-post-mater h1 {
	font-size: calc(28px + 0.8vw);
}
.blog-list-container .blog-post-mater h2 {
	font-size: calc(28px + 0.4vw);
}
.blog-list-container .blog-post-mater h3 {
	font-size: calc(22px + 0.4vw);
}
.blog-list-container .blog-post-mater h4 {
	font-size: calc(18px + 0.6vw);
}
.blog-list-container .blog-post-mater h5 {
	font-size: calc(14px + 0.6vw);
}
.blog-list-container .blog-post-mater h6 {
	font-size: calc(10px + 0.6vw);
	
}
.blog-list-container .blog-post-mater a {
	color: #bb8800;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .blog-post-mater a:hover {
	color: #dbb03d;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .tags,
.blog-list-container .tags a {
	font-weight: 600;
	color: #000;
	font-size: calc(12px + 0.3vw);
}
.blog-list-container .tags a {
	padding: calc(8px + 0.4vw) calc(2px + 0.2vw);
	color: #777;
	transition: all 0.3s ease-in-out 0s;
}
.blog-list-container .tags a:hover {
	color: #bb8800;
	transition: all 0.3s ease-in-out 0s;
}
.table_content {
	display: inline-block;
	width: 100%;
	border: #dedede 1px solid;
	padding: calc(12px + 0.2vw) calc(16px + 0.2vw);
	margin: calc(18px + 0.6vw) 0px;
}
.blog-list-container .blog-post-mater .table_content p {
	font-size: calc(16px + 0.2vw);
	color: #000;
	font-weight: 600;
	margin-bottom: calc(6px + 0.2vw);
}
.blog-list-container .blog-post-mater .table_content ol {
	padding: 0;
	margin: 0;
	font-size: calc(11px + 0.2vw);
	color: #bb8800;
}
.blog-list-container .blog-post-mater .table_content ol li {
	display: inline-block;
}
.blog-list-container .blog-post-mater .table_content ol li:after {
	content: "|";
	padding: 0px 10px;
	color: #666;
	font-weight: 800;
}
.blog-list-container .blog-post-mater p img {
	padding: 5px;
}
.blog-list-container .blog-post-mater h2 {
	display: inline-block;
	width: 100%;
}
.blog-list-container .blog-img-container {
	margin-bottom: calc(14px + 0.4vw);
}
/********************************************************/

.blog-list-container .image img, .blog-post-mater div img, .blog-post-mater p img {
    width: 100%;
    height: auto;
}

.mrg20B
 {
    margin-bottom: 20px !important;
}

.mrg15T {
    margin-top: 15px !important;
}

.mrg5B {
    margin-bottom: 5px !important;
}

.pad30T {
    padding-top: 30px !important;
}
.text-color {
    color: #b80 !important;
    font-weight: 600;
}

.mrg20T {
    margin-top: 20px !important;
}
.pad10B {
    padding-bottom: 10px !important;
}
.pad0L {
    padding-left: 0px !important;
}
.pad0R {
    padding-right: 0px !important;
}
.blog-img-container img{
    width:100%;
    height: auto;
}

.table-striped.product-table > tbody > tr > *,
.bottle-color ul {
    text-align: start;
}

