@font-face {
    font-family: 'Cochin';
    src: url('../fonts/Cochin.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'futurabook';
    src: url('../fonts/futura_bk_bt_book-webfont.woff2') format('woff2'),
         url('../fonts/futura_bk_bt_book-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'futura_md_btmedium';
    src: url('../fonts/futumd.woff2') format('woff2'),
         url('../fonts/futumd.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'futura_md_btbold';
    src: url('../fonts/futubd.woff2') format('woff2'),
         url('futubd.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
	font-family: 'Jost-Regular';
    src: url('../fonts/Jost-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
	font-family: 'Jost-Medium';
    src: url('../fonts/Jost-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
	font-family: 'Jost-SemiBold';
    src: url('../fonts/Jost-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
	font-family: 'Jost-Bold';
    src: url('../fonts/Jost-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Orpheus-Pro';
    src: url('../fonts/Orpheus-Pro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OrpheusPro-Bold';
    src: url('../fonts/OrpheusPro-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Civane-Regular';
    src: url('../fonts/Civane-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Civane-Bold';
    src: url('../fonts/Civane_Cond_Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
  scroll-behavior: smooth;
}
body {
	font-family: 'futurabook';
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    overflow-x:hidden;
}
:root {
    --timingDefault: .5s;
    --easeOut: .25, 0, .25, 1;
    --easeAlt: .25, 0, .25, 1;
}
body.no-scroll{overflow: hidden;}
.btn,.btn:focus {
    outline:none;
    box-shadow:none;
}
ul, figure{margin: 0;padding: 0}
li{list-style-type: none;}
a{text-decoration: none;}
strong{font-family: 'futura_md_btbold';}
/*Header Footer Start*/
.alcobrew-Splash{display: none;}
.header {
    position: absolute;
    z-index: 99;
    width: 100%;
    padding: 10px 50px;
    display: flex;
    align-items: center;
    background-color: #F3EEE7;
    justify-content: space-between;
    overflow: hidden;
    top: 0;left: 0;
}
.header .moblogo .navbar-brand {
ALCOBREW DISTILLERY
	opacity: 0;
	visibility: hidden;
}
.header .logo .navbar-brand {
	display: inline-block;
}
.header.sticky .logo .navbar-brand img, .header.sticky .moblogo .navbar-brand img {
	max-height: 65px;
}
/*.header.sticky {
    position: fixed;
    z-index: 9;
    width: 100%;
    top: 0;
    left: 0;
    animation: sticky 1.2s;
    box-shadow: 0 5px 10px rgb(0 0 0 / 15%);
}*/
@-webkit-keyframes sticky {
	0% {
		top: -200px;
	}

	100% {
		top: 0;
	}
}
@keyframes sticky {
	0% {
		top: -200px;
	}

	100% {
		top: 0;
	}
}
.menu-trigger {
	width: 50px;
	height: 50px;
	cursor: pointer;
	background: url(../images/menuToggle.svg) no-repeat center;
	border: 0;
	padding: 0;
}
.menu-bg {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	top: 0px;
	right: 0;
	transform: none;
	transition: all linear 0.4s;
	opacity: 0;
	visibility: hidden;
    z-index: 1;
}
.menu-container.open .menu-bg {
	visibility: visible;
	opacity: 1;
}
.mega-menu {
	position: fixed;
    top: 0;
    right: -380px;
    width: 100%;
    max-width: 380px;
    height: auto;
    transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -webkit-transition: all linear 0.4s;
    z-index: 1;
}
.mega-menu.open {
    right: 0;
}
.menu-overlay {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
}
.menu-right {
	display: flex;
	justify-content: flex-start;
	background: #F3EEE7;
	padding: 90px 30px 0;
	position: relative;
	overflow: hidden;
	overflow-y: auto;
	height: 100%;
	flex-direction: column;
}
.close-menu {
	position: absolute;
	top: 30px;
	right: 50px;
	background: url(../images/close.svg) no-repeat center;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
.mega-menu.menuLink {
	margin-bottom: 30px;
}
.mega-menu ul.menuLink {
	width: 100%;
}
.mega-menu ul.menuLink li {
	padding: 15px 0;
}
.mega-menu ul.menuLink li:not(:last-child) {
	border-bottom: 1px solid #05335d;
}
.mega-menu ul.menuLink li a {
	display: block;
	font-family: 'Cochin';
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	color: #05335d;
	position: relative;
}
.mega-menu ul.social {
    display: flex;
    margin: 20px 0 30px;
}
.mega-menu ul.social li {
	margin: 0 20px 0 0;
}
.mega-menu ul.social li.instaIcon img{width: 19px;}
footer {
	width: 100%;
	position: relative;
	background: linear-gradient(360deg, #062D51 0%, #053866 100%);
	color: #ffffff;
}
.footer-block {
	width: 100%;
	position: relative;
	padding: 80px 0 20px;
	border-bottom: 1px solid #0E518E;
}
.footer-block .rp {
	width: 100%;
	position: relative;
}
.footer-block .footer-menu {
	width: 100%;
	position: relative;
	padding: 50px 0 0;
}
.footer-menu-list {
	width: 100%;
	position: relative;
	text-align: center;
}
.footer-menu-list .footerTitle {
	width: 100%;
	position: relative;
    font-family: 'Cochin';
	font-size: 22px;
    font-weight: 700;
}
.footer-menu-list ul {
	width: 100%;
	position: relative;
}
.footer-menu-list ul li {
    width: 100%;
    padding: 5px 0;
}
.footer-menu-list ul li a {
font-family: 'futurabook';
    font-size: 16px;
	color: #ffffff;
}
.footerBtm {
    width: 100%;
    position: relative;
    padding: 20px 50px;
    overflow: hidden;
}
.footerBtm .footerLogo {
	display: inline-block;
}
.footerBtm .copyright {
	font-family: 'Jost-Regular';
	text-align: right;
	font-size: 12px;
	margin: 0;
}
.footerBtm .copyright img {
    max-width: 50px;
}
.footerBtm .social {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footerBtm .social p {
	margin: 0;
}
.footerBtm .social span {
	font-family: 'Jost-Regular';
	font-size: 16px;
	padding-right: 10px;
	line-height: 20px;
	margin-top: 5px;
}
.footerBtm .social ul {
    display: flex;
	align-items: center;
}
.footerBtm .social ul li a {
    display: inline-block;
    margin: 0 5px;
}
.footerBtm .social ul li.instaIcon img{width: 19px;position: relative;top: 1px}
/*Header Footer Close*/

/*Splash Screen css start*/

.alcobrew-Splash {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-image: url(../images/alcoGif.gif);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
	padding: 20px;
	z-index: 999;
	top: 0;
	left: 0;
}
.alcobrew-Splash:before {
    position: absolute;
	content: '';	
    width: 100%;
    height: 100%;
	top: 0;
	left: 0;
	background: rgb(243 238 231 / 93%);
}
.splash-modal {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 650px;
}
.splash-modal h1 {
	font-family: 'Cochin';
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	margin: 20px 0 10px;
	color: #044A8D;
}
.splash-modal h2 {
	font-family: 'Cochin';
	font-weight: 500;
	font-size: 25px;
	text-align: center;
	margin: 0px 0 20px;
	color: #000000;
}
.splash-modal .splash-action {
    width: 100%;
    position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.splash-modal .splash-action .btn {
    border: 1px solid #044A8D;
    margin: 5px 10px;
    border-radius: 0;
    color: #044A8D;
    padding: 6px 30px;
    line-height: normal;
    position: relative;
    font-size: 20px;
}
.splash-modal .splash-action .btn:hover {
    color: #ffffff;
    background-color: #044A8D;
}
/*Splash Screen css close*/

/*Home page css start*/
.people_group {
    width: 100%;
    position: relative;
}
.people_card {
    width: 100%;
    position: relative;
	overflow: hidden;
}
.people_card .people_img_block {
    width: 100%;
    position: relative;
    display: block;
}
.people_card .people_img_block img {
	transition: transform 0.6s; 
}
.people_card .people_img_block:hover img {
	transform: scale(1.1); 
}
.people_card .people_img_block .people_content {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
/*    background-color: rgb(13 12 12 / 10%);*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.people_card .people_img_block .people_content .content {
    width: 100%;
	max-width: 400px;
	margin: auto;
    position: relative;
	color: #ffffff;
	text-align: center;
}
.people_card .people_img_block .people_content .content .title {
    font-family: 'Civane-Regular';
    font-size: 65px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 55px;
    line-height: normal;
    position: relative;
}
/*.people_card .people_img_block .people_content .content .title:after {
	position: absolute;
    content: ' ';
    background: url(../images/homeLink.svg) no-repeat center;
    width: 25px;
    height: 25px;
    top: 14px;
    filter: invert(1);
    background-size: 25px;
    margin-left: 14px;
}*/
.people_card .people_img_block .people_content .content p {
	font-family: 'Jost-Regular';
	font-size: 18px;
	margin-bottom: 15px;
}
.people_card .people_img_block .people_content .content .link {
	position: relative;
	display: none;
	width: 46px;
	height: 28px;
}
.people_card .people_img_block .people_content .content .link:after {
    position: absolute;
    content: ' ';
    background: url(../images/readMoreArrow.svg) no-repeat center;
    width: 24px;
    height: 42px;
    top: 0;
    left: 0;
    filter: invert(1);
    transform: rotate(90deg);
    background-size: 14px;
}
/*Home page css close*/

/*Investor Relations page css start*/
.page-banner {
	width: 100%;
	position: relative;
}
.bgBlue {
	background-color: #053662;
}
.bgGray {
	background-color: #F3F3F3;
}
.bgWhite {
	background-color: #FFFFFF;
}
.bgOrange {
	background-color: #FFFBEF;
}
.space-tb {
	padding: 60px 0;
}
.space-t {
	padding-top: 60px;
}
.space-b {
	padding-bottom: 60px;
}
.investor-relations, .investor-header {
	width: 100%;
	position: relative;
}
.header-title {
	width: 100%;
	position: relative;
	max-width: 800px;
	margin: 0 auto 30px;
}
.header-title h1, .header-title h2 {
	font-family: 'Orpheus-Pro';
	
	font-size: 50px;
	text-transform: uppercase;
	color: #062F53;
}
.header-title h3 {
	font-family: 'Cochin';
	font-weight: 700;
	font-size: 40px;
	text-transform: uppercase;
	color: #062F53;
}
.header-title .subTitle {
    font-size: 30px;
    color: #262626;
    font-family: 'Jost-Medium';
    margin-bottom: 10px;
}
.header-title p {
	font-family: 'futurabook';
    font-size: 16px;
    color: #262626;
}
.investor-body {
    width: 100%;
    position: relative;
}
.investor-tabs {
    padding: 0 15px;
    display: flex;
    border: 0;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto 30px;
}
.investor-tabs .nav-item {
    padding: 0 20px;
}
.investor-tabs .nav-item .nav-link {
    border: 0;
    font-family: 'futurabook';
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    color: #062F53;
    padding: 0 0 10px;
    position: relative;
    background-color: transparent;
}
.investor-tabs .nav-item .nav-link.active {
    color: #0457A2;
    font-family: 'futura_md_btmedium';
}
.investor-tabs .nav-item .nav-link.active span {
    position: relative;
    padding: 0 0 10px;
}
.investor-tabs .nav-item .nav-link.active span:after {
	position: absolute;
	content: ' ';
	background-image: url(../images/arrowDown.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 15px;
    height: 15px;
    width: 15px;
    left: calc(50% - 7px);
	top: calc(100% - 0px);
}
.investor-content {
    width: 100%;
    position: relative;
    padding: 40px 0;
}
.investor-tabs .nav-item .nav-link.active:before, .investor-tabs .nav-item .nav-link.active:after {
	position: absolute;
	content: ' ';
    width: calc(50% - 7px);
    height: 3px;
	bottom: 0;
	left: 0;
	background-color: #D2AB67;
}
.investor-tabs .nav-item .nav-link.active:after {
	left: inherit;
	right: 0;
}
.investor-body .investor-tabs .nav-item .nav-link.active span:before {
    content: "";
    border: 10px solid transparent;
    position: absolute;
    top: calc(100% + 14px);
    left: calc(50% - 5px);
    border-bottom-color: #F3F3F3;
}
.investor-content h2 {
	font-family: 'Cochin';
	font-weight: 700;
	font-size: 45px;
	text-transform: uppercase;
	color: #062F53;
	margin-bottom: 20px;
}
.table-theme table th,.table-theme table td {
    padding: 10px 15px;
font-family: 'futurabook';
    font-weight: 400;
}
.table-theme table th {
    color: #ffffff;
	background-color: #062F53;
}
.table-theme table th.nowrap {
    white-space: nowrap;
}
.table-theme table td {
    color: #000000;
    background-color: #ffffff
}
.table-theme table tr:nth-child(odd) td {
    background-color: #FBF5EC
}
.table-theme table tr td.pdf-icon {
	text-align: right;
}
.table-theme table tr td.pdf-icon a {
    position: relative;
	width: 20px;
	height: 27px;
	display: inline-block;
	background: url(../images/pdfIcon.svg) no-repeat center;
	background-size: contain;
}
.resources-card {
	width: 100%;
	position: relative;
	padding: 20px;
	border-radius: 10px;
	height: calc(100% - 20px);
	margin: 10px 0;
	background-color: #0457A2;
	text-align: center;
	color: #ffffff;
}
.resources-card h3 {
	font-family: 'Cochin';
	font-weight: 700;
	font-size: 22px;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 15px;
}
.resources-card h3::before {
	position: absolute;
	content: ' ';
	bottom: 0px;
	width: 100px;
	height: 2px;
	background-color: #ffffff;
	left: 0;
	right: 0;
	margin: auto;
}
.resources-card .designation {
	font-family: 'futurabook';
	font-weight: 600;
	margin-bottom: 20px;
}
.resources-card p {
font-family: 'futurabook';
	font-weight: 400;
	margin: 0;
}
.resources-card a {
    color: #ffffff;
}
.sebi-scores {
	width: 100%;
	position: relative;
	padding: 20px;
	margin: 25px 0 0;
	text-align: center;
	font-family: 'Cochin';
	font-weight: 700;
	font-size: 30px;
	text-transform: uppercase;
	color: #062F53;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sebi-scores .blue-btn {
	margin-left: 20px;
}
.blue-btn {
    font-family: 'Jost-Medium';
    font-size: 14px;
/*    padding: 12px 45px 12px 20px;*/
	padding: 12px 32px 12px 32px;
    text-transform: capitalize;
    transition: 0.3s ease;
    position: relative;
    line-height: normal;
    border: 1px solid #044A8D;
    background-color: transparent;
    border-radius: 0px;
    color: #044A8D;
}
.blue-btn span {
    position: relative;
    display: inline-block;
}
.blue-btn:hover {
    background-color: #044A8D;
    color: #ffffff;
}
/*.blue-btn span:after {
    background-image: url(../images/blueArrow.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 18px;
    content: "";
    height: 6px;
    position: absolute;
    margin-left: 5px;
    margin-top: -1px;
    top: 50%;
    width: 18px;
}
.blue-btn:hover span:after {
    background-image: url(../images/whiteArrow.svg);
}*/
.whiteBorder-btn {
    border: 1px solid #ffffff;
    background-color: transparent;
    border-radius: 0px;
    color: #ffffff;
    font-family: 'Jost-Medium';
    font-size: 14px;
/*    padding: 12px 45px 12px 20px;*/
	padding: 12px 32px 12px 32px;
    text-transform: capitalize;
    transition: 0.3s ease;
    position: relative;
    line-height: normal;
}
.whiteBorder-btn span {
    position: relative;
    display: inline-block;
}
/*.whiteBorder-btn span:after {
    transition: 0.3s ease;
    background-image: url('../images/whiteArrow.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 18px;
    content: "";
    height: 6px;
    position: absolute;
    margin-left: 5px;
    margin-top: -1px;
    top: 50%;
    width: 18px;
}*/
.whiteBorder-btn:hover {
    background-color: #ffffff;
    color: #000000;
}
.whiteBorder-btn:hover span:after {
	filter: invert(1);
}

.whiteBorder-btn:before, .whiteBorder-btn:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid #ffffff;
    transition: .3s ease
}
.blue-btn:before, .blue-btn:after, .splash-action .btn:before, .splash-action .btn:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid #0457A2;
    transition: .3s ease
}
.whiteBorder-btn:before, .blue-btn:before, .splash-action .btn:before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none
}
.whiteBorder-btn:after, .blue-btn:after, .splash-action .btn:after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none
}
.whiteBorder-btn:hover:before, .whiteBorder-btn:hover:after, .blue-btn:hover:before, .blue-btn:hover:after, .splash-action .btn:hover:after, .splash-action .btn:hover:before {
    width: calc(100% + 10px);
    height: calc(100% + 10px)
}
.actionBottom {
	width: 100%;
	margin-top: 25px;
	position: relative;	
}
.downloads-block {
    padding: 40px;
    overflow: hidden;
}
.downloads-block ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    padding-top: 15px;
}
.downloads-block ul li {
    width: auto;
    margin-bottom: 0;
	position: relative;
}
.downloads-block ul li a {
	position: relative;
	font-family: 'Cochin';
	font-weight: 700;
	font-size: 18px;
	color: #062F53;
	background-color: #ffffff;
	transition: all 0.3s ease-out;
	padding: 30px 65px 30px 60px;
	display: flex;
	align-items: center;
	line-height: 24px;
	border-radius: 0 40px 0 0;
	border: 1px solid #E6E2E2;
	border-left: 3px solid #0457a2;
}
.downloads-block ul li a:hover {
	box-shadow: 0px 4.68px 2.81px 0px #AC979740;
}
.downloads-block ul li a:before, .downloads-block ul li a:after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
}
.downloads-block ul li a:before {
    left: 20px;
    top: 26px;
    background-image: url(../images/redPdf.png);
    width: 25px;
    height: 35px;
}
.downloads-block ul li a:after {
    right: 28px;
    top: 32px;
    background-image: url(../images/downloadIcon.svg);
    width: 22px;
    height: 22px;
}
.downloads-block ul li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 82px;
  height: 100%;
  background: #FADEA1;
  clip-path: polygon(
    50% -7%,
    100% 20%,
    100% 100%,
    50% 100%,
    146% 100%
  );
  z-index: 1;
} 
.downloads-block ul li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: #FADEA1;
  clip-path: polygon(
    78% 16%,
    100% 25%,
    100% 100%,
    50% 100%,
    93% 100%
  );
  z-index: 1;
} 
.financial-statements{
    background-color: #F3EEE7;
}
.annual-reports {
    background-color: #ffffff;
}
.investor-content .downloads-block {
	margin-bottom: 30px;
}
.investor-content .downloads-block:last-child {
	margin-bottom: 0;
}
.reports-filter {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}
.reports-filter select {
    width: auto;
    color: #5B6065;
    padding: 10px 40px 10px 20px;
    outline: none !important;
    box-shadow: none !important;
}
.governance-content {
    width: 100%;
    position: relative;
    display: flex;
}
.governance-content .nav-tabs {
    width: 280px;
    display: block;
    padding: 70px 0px 0 0;
    border: 0;
}
.governance-content .nav-tabs .nav-item {
	margin-right: 15px;
}
.governance-content .nav-tabs .nav-item .nav-link {
    border: 0;
    background-color: #ffffff;
    width: 100%;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    color: #000000;
font-family: 'futurabook';
    margin: 5px 0;
    padding: 10px;
    font-size: 18px;
	position: relative;
}
.governance-content .nav-tabs .nav-item .nav-link.active, .governance-content .nav-tabs .nav-item .nav-link:hover {
    background-color: #062F53;
    color: #ffffff;
}
.governance-content .nav-tabs .nav-item .nav-link:before {
    content: "";
    border: 10px solid transparent;
    position: absolute;
    top: calc(50% - 10px);
    left: 100%;
    border-left-color: #D9D9D9;
}
.governance-content .nav-tabs .nav-item .nav-link.active::before {
	border-left-color: #062F53;
}
.governance-content .tab-content {
    width: calc(100% - 280px);
    padding-left: 40px;
}
.governance-content .tab-content h3 {
    color: #000000;
font-family: 'futurabook';
    font-weight: 400;
    font-size: 30px;
    margin: 20px 0 10px;
}
/*Investor Relations page css close*/

/*Contact page css Start*/
.contact-detail {
	width: 100%;
	position: relative;
	background-color: #F3EEE7;
}
.contact-header {
	width: 100%;
	position: relative;	
}
.location-body {
	width: 100%;
	position: relative;	
	padding: 0 30px;
}
.location-body h2 {
	text-align: center;
	color: #262626;
    font-size: 35px;
	font-family: 'futura_md_btbold';
	margin-bottom: 20px;
}
.location-body .col-lg-3 {
	padding: 0 5px;
}
.location-body .resources-card {
    padding: 50px 15px 80px;	
}
.location-body .resources-card .whiteBorder-btn {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: fit-content;
}
.location-body .resources-card p {
    margin-bottom: 20px;
}
.more-waysContact {
	width: 100%;
	position: relative;	
	background-color: #F8F8F8;
}
.more-waysContact:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/waysContact.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.more-waysContact .header-title {
	max-width: 100%;	
}
.more-waysContact .contentBox {
	width: 100%;
	position: relative;	
	max-width: 800px;
	margin: 0 auto;
	padding: 50px;
	background-color: rgba(255, 255, 255, 0.83);
	text-align: center
}
.more-waysContact .contentBox p {
	line-height: 23px;
	margin-bottom: 25px;
}
.more-waysContact .contentBox p a {
	color: #0457A2;
}
/*Contact page css close*/

/*Career page css start*/
.growAlcobrew {
	width: 100%;
	position: relative;
	background-color: #F3EEE7;
}
.growAlcobrew-body {
	width: 100%;
	position: relative;
	background-color: #025097;
	padding: 20px 20px 50px;
	color: #ffffff;
	max-width: 1140px;
	margin: auto;
    border-radius: 6px;
}
.growAlcobrew-body h2 {
    font-family: 'Cochin';
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
	margin-bottom: 20px;
}
.growAlcobrew-body .apart {
    border-radius: 6px;
}
.growAlcobrew-body ul {
	width: 100%;
	position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 40px;
    padding-top: 25px;
}
.growAlcobrew-body ul li {
	width: auto;
    margin-bottom: 0;
    position: relative;
	font-size: 16px;
	line-height: 22px;
}
.growAlcobrew-body ul li .icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;	
	border: 1px solid #FFFFFF;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.explore-opportunities {
	width: 100%;
	position: relative;	
}
.explore-opportunities .header-title h2 {
	color: #ffffff;	
}
.job-card {
    width: 100%;
    position: relative;
}
.job-card .item {
    width: 100%;
    height: calc(100% - 24px);
    margin: 12px 0;
    position: relative;
    background-color: #FFFFFF;
    display: block;
	font-family: 'Jost-Medium';
    padding: 15px 15px 60px;
	color: #000000;
    transition: 0.3s;
}
.job-card .item:hover {
    transform: translateY(-1rem);
}
.job-card .item:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 10px;
    right: 10px;
    background-color: #1E61A0;
    z-index: -1;
}
.job-card .item:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0px;
    right: 0px;
    background-color: #ffffff;
    z-index: -1;
}
.job-card .item .itemDetail {
    width: 100%;
    position: relative;	
}
.job-card .item .itemDetail:after {
	position: absolute;
	content: '';
	bottom: -50px;
	right: 0;
	width: 40px;
	height: 40px;
	background-image: url(../images/careerArrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;	
}
.job-card .item .jobTitle {
    color: #062F53;
    font-size: 22px;
}
.job-card .item  .postTime {
    font-size: 16px;
    margin: 5px 0;
}
.job-card .item ul {
    width: 100%;
    position: relative;
}
.job-card .item ul li {
    font-size: 16px;
    margin: 10px 0;
}
.job-card .item ul li img {
    padding-right: 10px;
}
.jobDetail {
    width: 100%;
	position: relative;
	background-color: #F3EEE7;
}
.jobDetail .header-title {
    max-width: 100%;
    border-bottom: 1px solid #8B8B8B;
    padding-bottom: 20px;
}
.jobDetail .jobGroup {
    width: 100%;
	position: relative;
}
.jobDetail .jobGroup .group {
    width: 100%;
	position: relative;
    margin: 15px 0 30px;
}
.jobDetail .jobGroup .group:last-child {
    margin-bottom: 0px;
}
.jobDetail .jobGroup .group h2 {
	font-family: Cochin;
	font-size: 32px;
	line-height: 40px;
	color: #0457A2;
	font-weight: 700;
}
.jobDetail .jobGroup .group p {
	margin-bottom: 10px;
	text-align: justify;
}
.jobDetail .jobGroup .group .info {
    width: 100%;
	position: relative;
}
.jobDetail .jobGroup .group .info .type {
    width: 100%;
	position: relative;
	padding-left: 35px;
	margin: 10px 0;
}
.jobDetail .jobGroup .group .info .type img {
    position: absolute;
    left: 0px;
    top: 4px;
}
.jobDetail .jobGroup .group ul, .jobDetail .jobGroup .group ol {
    width: 100%;
	padding-left: 20px;
}
.jobDetail .jobGroup .group ul li, .jobDetail .jobGroup .group ol li {
    width: 100%;
    padding: 5px 0;
    text-align: justify;
}
.jobDetail .jobGroup .group ul li {
    list-style: disc;
}
.jobDetail .jobGroup .group ol li {
    list-style: decimal;
}
.career-list.explore-opportunities .job-card .item:after {
    background-color: #1E61A0;
}
.career-list.explore-opportunities .job-card .item:before {
    background-color: #f0f0f0;
}
.career-list.explore-opportunities .job-card .item .jobTitle, .career-list.explore-opportunities .job-card .item .postTime, .career-list.explore-opportunities .job-card .item ul li {
    color: #ffffff;
}
.career-list.explore-opportunities .job-card .item ul li img {
    filter: brightness(70);
}
.career-list.explore-opportunities .job-card .item .itemDetail:after {
    background-image: url(../images/careerWhiteLink.svg);
}
.modal-header .modal-title {
    font-family: Cochin;
    font-size: 32px;
    line-height: 40px;
    color: #0457A2;
    font-weight: 700;
}
.modal-header .btn-close {
    opacity: 1;
    border: 2px solid #150089;
    box-shadow: none;
    outline: none;
}
.form-theme {
	width: 100%;
	position: relative;
}
.form-theme .form-group {
	width: 100%;
	margin-bottom: 40px;
	position: relative;
}
.career-form .form-theme .form-group input::placeholder, .career-form .form-theme .form-group textarea::placeholder {
    color: #000000;
}
.form-theme .form-group .form-control {
	font-size: 14px; 
	color: #000000;	
	border-left: 0;
	border-right: 0;
	border-top: 0;
	border-radius: 0;
	border-bottom: 1px solid #000;
	padding: 5px 0 10px;
	outline: none;
	box-shadow: none;
}
.form-theme .form-group.file-upload {
    display: flex;
    align-items: center;
}
.form-theme .form-group.file-upload label {
	font-size: 14px; 
	color: #000000;
    margin-right: 5px;
}
.form-theme .btn-submit:hover {
    background-color: #ffffff;
    color: #150089;
}
.form-theme .btn-submit {
    border-radius: 0;
    background-color: #150089;
    color: #ffffff;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 16px;
    border: 1px solid #150089;
    transition: 0.5s all;
}
.modal-body.career-form {
    padding: 20px;
}
/*Career page css close*/

/*Error page css start*/
.error-page {
    width: 100%;
	position: relative;
}
.errorText {
    width: 100%;
	position: relative;
    border-radius: 20px;
    background-color: #025097;
    padding: 40px;
	color: #ffffff;
	text-align: center;
}
.errorText h1 {
    font-family: 'Cochin';
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
}
.errorText h2 {
    font-family: 'Cochin';
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 700;
}
/*Error page css close*/


/*Whisky page css start*/
.whiskyPage {
    width: 100%;
	position: relative;
	background-color: #FFFBEF;	
}
.whiskyPage .investor-tabs {
    max-width: 900px;
}
.whisky-list {
    width: 100%;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.whisky-list .item {
    width: 100%;
    height: calc(100% - 24px);
    position: relative;
    display: block;
	margin: 12px 0;
    text-decoration: none !important;
	overflow: hidden;
}
.whisky-list .item .imgBlock, .whisky-list .item .imgBlock img {
    width: 100%;
    position: relative;
}
.whisky-list .item .itemDetail {
	clip-path: inset(100% 0);
	position: absolute;
	top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: clip-path var(--timingDefault) cubic-bezier(var(--easeOut));
	will-change: clip-path;
    width: 90%;
    height: 90%;
    margin: auto;
	background-color: #FFFBEF;
	text-align: center;
    padding: 40px 20px 40px;
}
.whisky-list .item:hover .itemDetail {
    clip-path: inset(0% 0);
}
.whisky-list .item:hover .itemDetail {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.whisky-list .item .itemDetail:before {
    position: absolute;
	content: none;
    top: 40px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    width: 320px;
    height: 320px;
    background-image: url(../images/whiskyBg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.whisky-list .item .itemDetail img {
    position: relative;
    max-height: 320px;
    transform: scale(1.4);
    z-index: -1;
    margin-top: -20px;
}
.whisky-list .item .itemDetail h2 {
    font-family: 'Cochin';
    font-weight: 700;
    font-size: 25px;
    text-transform: uppercase;
    color: #014584;
    margin: 60px 0 0;
}
.whisky-list .item .itemDetail h3 {
	font-size: 18px;
	color: #000000;
	margin: 10px 0 15px;
	font-family: 'futura_md_btmedium';
}
.whisky-list .item .itemDetail:after {
    position: absolute;
    content: '';
    right: 0;
    left: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    background-image: url(../images/whiskyAction.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
/*Whisky page css close*/

/*Whisky detail page css start*/
.brandInfo {
    width: 100%;
    position: relative;
	background: linear-gradient(180deg, #F9D4A2 0%, #FFF1DD 100%);	
}
.brandInfo:after {
    position: absolute;
    content: '';
    bottom: 0px;
    right: 0;
    width: 300px;
    height: 285px;
    background-image: url(../images/wheatIcon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.brandInfo:before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0;
    width: 270px;
    height: 450px;
    background-image: url(../images/drumIcon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.brandInfo .brandLogo {
    width: 180px;
    height: 180px;
    position: relative;
    margin: auto;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    display: none;
}
.brandInfo .brandLogo:before {
    position: absolute;
    content: '';
    width: 165px;
    height: 165px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    margin: auto;
    border: 3px dotted #000000;
	animation: Rotate 20s linear infinite;
	-webkit-animation: Rotate 20s linear infinite;
}
@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.brandInfo .brandLogo .brandImg {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
}
.brandInfo .brandLogo.ourLogo .brandImg{
	    width: 100px;
    height: auto;
    border-radius: 0;
}
.brandInfo .brandName {
    width: 100%;
    position: relative;
	margin: 10px 0 20px;
}
.brandInfo .brandName.smLogo img{
	width: 250px;
	height: 250px;
	object-fit: contain;
}
.brandInfo .brandBottle {
    width: 100%;
    position: relative;
}
.brandInfo .brandBottle p {
    color: #262626;
	max-width: 550px;
	margin: 15px auto 0;
}
.whiskyFeatures {
    width: 100%;
    position: relative;
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
}
.whiskyFeatures:before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(270deg, rgba(0, 0, 0, 0.82) 0%, rgba(97, 97, 97, 0.0397613) 69.99%, rgba(102, 102, 102, 0) 73.56%);
}
.whiskyFeatures .content {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: end;
    padding: 10% 0;
}
.whiskyFeatures .content ul {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    max-width: 600px;
}
.whiskyFeatures .content ul li {
    width: 100%;
    border: 1px solid #716764;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}
.whiskyFeatures .content ul li h3 {
    font-family: 'Cochin';
    font-weight: 700;
    font-size: 25px;
    text-transform: uppercase;
	margin: 10px 0;
}
.whiskyFeatures .content ul li p {
    margin: 0;
}
.brandBottom {
    width: 100%;
    position: relative;
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff;
}
.brandBottom .brandName {
    width: 100%;
    position: relative;
	text-align: center;
}
.brandBottom .brandName img {
    max-width: 350px;
}
.brandBottom .brandLogo {
    width: 180px;
    height: 180px;
    position: absolute;
    margin: auto;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    left: -100px;
    top: calc(50% - 90px);
}
.brandBottom .brandLogo:before {
    position: absolute;
    content: '';
    width: 165px;
    height: 165px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    margin: auto;
    border: 3px dotted #000000;
	animation: Rotate 20s linear infinite;
	-webkit-animation: Rotate 20s linear infinite;
}
.brandBottom .brandContent {
    width: 100%;
    max-width: 770px;
    position: relative;
    margin: auto;
    padding: 70px 150px 0;
}
.brandBottom .brandContent:before {
    position: absolute;
    content: '';
    width: 8px;
    height: 70px;
    top: 0;
    border-left: 2px dashed #000000;
    left: 50%;
}
.brandBottom .brandContent .content {
    background: linear-gradient(180deg, rgba(224, 160, 49, 0.98) 0%, rgba(232, 164, 46, 0.98) 100%);
    width: 100%;
    position: relative;
    padding: 70px 120px;
}
.brandBottom .brandContent .content .description {
    text-align: center;
    color: #ffffff;
}
.brandBottom .brandContent .content .description strong{
	display: block;
	font-family: 'futura_md_btbold';
	font-weight: normal;
	margin-top: 10px;
}
.brandBottom .brandContent .content .bottle {
    position: absolute;
    right: -150px;
    bottom: -40px;
}
.relatedproduct {
    width: 100%;
    position: relative;
	background-color: #FFFBEF;
}
.relatedproduct .item a {
    width: 100%;
    height: calc(100% - 24px);
    position: relative;
    display: block;
    margin: 12px 0;
    text-decoration: none !important;
    text-align: center;
    padding: 0 0 50px;
    transition: 0.5s;
    display: block;
}
.relatedproduct .item a:before {
    position: absolute;
    content: '';
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 70%;
    border: 1px solid #a3a3a3;
}
.relatedproduct .item img {
    position: relative;
    max-height: 300px;
    transition: 0.5s;
    width: auto;
    margin: 0 auto;
}
.relatedproduct .item:hover img {
	transform: translateY(-1rem);
}
.relatedproduct .item h2 {
    font-family: 'Cochin';
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #014584;
    margin: 25px 0 0;
}
.relatedproduct .item h3 {
    font-size: 16px;
    color: #000000;
    margin: 10px 0;
    font-family: 'futura_md_btmedium';
}
.relatedproduct .item a:after {
    position: absolute;
    content: '';
    bottom: 16px;
    right: 0;
    left: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    background-image: url(../images/whiskyAction.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s;
}
/*Whisky detail page css close*/

/*Our Distilleries page css start*/
.ourDistilleries {
    width: 100%;
    position: relative;
    padding-bottom: 130px;
}
.ourDistilleries .header-title {
    max-width: 700px;
}
.ourDistilleries .header-title p {
    color: #004788;
    font-size: 20px;
}
.gamberValley-distillery {
    width: 100%;
    position: relative;
    background-color: #FFFBEF;
    padding-top: 130px;
}
.gamberValley-distillery .container {
    position: relative;
    z-index: 1;
}
.gamberValley-distillery .alcobrewLogo {
    width: 100%;
    position: absolute;
    text-align: center;
    top: -220px;
    left: 0;
}
.gamberValley-distillery .header-title {
	max-width: 100%;
}
.gamberValley-distillery .header-title h2 {
	padding-bottom: 10px;
	margin-bottom: 10px;
	position: relative;
}
.gamberValley-distillery .header-title h2:after {
	position: absolute;
	content: '';
	bottom: 0px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 40%;
	height: 1px;
	background-color: #CCACAC;
}
.gamberValley-distillery .header-title .subTitle {
	font-family: 'Cochin';
	font-weight: 700;
	text-transform: uppercase;
	color: #062F53;
}
.gamberValley-distillery .imgBlock {
    width: 100%;
    position: relative;	
	text-align: center;
}
.gamberValley-distillery .imgBlock img {
    border-radius: 10px;
}
.gamberValley-distillery .contentBlock {
    width: 100%;
    position: relative;	
	text-align: center;
    max-width: 850px;
	margin: 25px auto 0;
}
.gamberValley-distillery .contentBlock .description {
    width: 100%;
    position: relative;		
}
.gamberValley-distillery .contentBlock .description p {
	font-size: 18px;
	text-align: center;
	color: #262626;
	margin: 20px 0 0;
	font-family: 'futura_md_btmedium';
	display: none;
}
.gamberValley-distillery .contentBlock .description p:first-child, .gamberValley-distillery .contentBlock.active .description p {
	display: block;	
}
.gamberValley-distillery:after {
    position: absolute;
    content: '';
    bottom: 0px;
    left: 0;
    width: 167px;
    height: 271px;
    background-image: url(../images/distillery-pot.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.readMore-btn {
    border: 1px solid #044A8D;
    background-color: transparent;
    border-radius: 0px;
    color: #044A8D;
    font-family: 'Jost-Medium';
    font-size: 14px;
/*    padding: 12px 45px 12px 20px;*/
	padding: 12px 32px 12px 32px;
    text-transform: capitalize;
    transition: 0.3s ease;
    position: relative;
    line-height: normal;
    margin: 5px;
}
.readMore-btn:before,.readMore-btn:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid #044A8D;
    transition: .3s ease
}
.readMore-btn:before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none
}
.readMore-btn:after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none
}
.readMore-btn:hover:before,.readMore-btn:hover:after {
    width: calc(100% + 10px);
    height: calc(100% + 10px)
}
.readMore-btn span {
    position: relative;
    display: inline-block;
}
.readMore-btn:hover {
    background-color: #044A8D;
    color: #ffffff;
}
/*.readMore-btn span:after {
    background-image: url('../images/readMoreArrowBlue.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
	content: "";
    height: 17px;
    position: absolute;
    margin-left: 5px;
    margin-top: -1px;
    top: 5px;
    width: 10px;
}
.readMore-btn:hover span:after {
    background-image: url(../images/readMoreArrowWhite.svg);
}*/
.shaped-distillery {
    position: relative;
  	overflow: hidden;
	padding:100px 0 180px;
}
.bg-overlay {
  position: absolute;
  inset: 0;
  background: #0d3b66;
  transform: scaleY(0);          /* hidden initially */
  transform-origin: top;
  z-index: 1;
}
.shaped-distillery .container {
  position: relative;
  z-index: 2;
}
.shaped-distillery .header-title {
    max-width: 100%;
    margin: 0;
}
.shaped-distillery .header-title h2 {
	color: #ffffff;
}
.ourApproach {
    width: 100%;
    position: relative;
	background-color: #063865;	
}
.ourApproach .header-title {
	max-width: 100%;
	margin: 0;
}
.ourApproach .header-title h2 {
	color: #ffffff;
}
.ourApproach .header-title .subTitle {
	font-family: 'Cochin';
	font-weight: 700;
	color: #ffffff;
}
.ourApproach .header-title .measuredProcesses {
	color: #ffffff;
	font-size: 26px;
	margin-bottom: 25px;
	font-family: 'futura_md_btmedium';
}
.ourApproach .header-title p {
    font-size: 18px;
    color: #ffffff;
    max-width: 900px;
    margin: 25px auto 0;
    font-family: 'futura_md_btmedium';
}
.qualityCompliance {
    width: 100%;
    position: relative;
	background: linear-gradient(180deg, rgba(248, 248, 248, 0.7) 0%, rgba(223, 223, 223, 0.7) 100%);
}
.qualityCompliance:before {
    position: absolute;
    content: '';
    top: 0px;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/qualityCompliance-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
}
.qualityCompliance .owl-carousel {
    z-index: 0;	
}
.qualityCompliance .item {
    width: 100%;
    position: relative;
	padding: 0 10px;	
}
.qualityCompliance .item a {
    width: 100%;
    position: relative;
	display: block;
	text-align: center;
}
.qualityCompliance .item a img {
    width: 100%;
	box-shadow: 0px 4.8px 4.8px 0px #8B8B8B40;
}
.qualityCompliance .item a h3 {
    font-family: 'Cochin';
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: #000000;
    margin: 20px 0 0;
}
.center-nav.owl-carousel {
	padding: 0 50px;
}
.center-nav.owl-carousel .owl-nav {
	display: block;
}
.center-nav.owl-carousel .owl-nav button {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #063865;
	transition: .3s;
	background-color: #063865;
	margin: 0;
}
.center-nav.owl-carousel .owl-nav button.owl-prev {
	left: 0px;
}
.center-nav.owl-carousel .owl-nav button.owl-next {
	right: 0px;
}
.center-nav.owl-carousel .owl-nav button span {
	position: relative;
	font-size: 0;
}
.center-nav.owl-carousel .owl-nav button span:after {
	position: absolute;
	content: '';
	top: -11px;
	left: -6px;
	width: 16px;
	height: 16px;
	background-size: 16px;
	background-image: url(../images/white-arrow-right.svg);
	background-repeat: no-repeat;
}
.center-nav.owl-carousel .owl-nav button.owl-prev span:after {
	transform: rotate(180deg);
	top: -14px;
	left: -8px;
}
/*Our Distilleries page css close*/

/*Life at Alcobrew page css start*/
.lifeAlcobrew {
    width: 100%;
    position: relative;
	background-color: #ffffff;	
}
.lifeAlcobrew .item {
    width: 100%;
    position: relative;
	height: calc(100% - 24px);
	margin: 12px 0;
	overflow: hidden;
}
.lifeAlcobrew .item .content {
    align-items: center;
    bottom: 10px;
    background-color: #0457A2;
    display: flex;
    justify-content: space-between;
    right: 0px;
    left: 0px;
	margin: auto;
    position: absolute;
    width: calc(100% - 20px);
    padding: 15px 55px 15px 15px;
	color: #FFFFFF;
    font-family: 'Cochin';
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}
.lifeAlcobrew .item .content:after {
    position: absolute;
    content: '';
    bottom: 13px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-image: url(../images/lifeAlcobrewArrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.lifeAlcobrew .item .content:before {
	position: absolute;
	content: '';
	bottom: 10px;
	left: 15px;
	width: 60px;
	height: 2px;
	background-color: #ffffff;
}
.lifeAlcobrew .item:hover .content {
    opacity: 0;
    visibility: hidden;
}
.lifeAlcobrew .item .contentHover {
	align-items: center;
    background: rgba(4, 87, 162, 0.9);
    bottom: 0;
    display: flex;
    left: 0;
    opacity: 0;
    padding: 20px 15px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(100%);
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: .3s;
    visibility: hidden;
    width: 100%;
}
.lifeAlcobrew .item .contentHover .centerContent {
	color: #FFFFFF;
	text-align: center;
}
.lifeAlcobrew .item .contentHover .centerContent h2 {
    font-family: 'Cochin';
    font-weight: 700;
    font-size: 18px;
	padding-bottom: 10px;
	margin-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}
.lifeAlcobrew .item .contentHover .centerContent h2:before {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 60px;
	height: 2px;
	background-color: #ffffff;
}
.lifeAlcobrew .item .contentHover .centerContent h3 {
    font-size: 18px;
	margin-bottom: 10px;
}
.lifeAlcobrew .item .contentHover .centerContent p {
    font-size: 14px;
}
.lifeAlcobrew .item:hover .contentHover {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.builtPeople {
	width: 100%;
	position: relative;
}
.builtPeople .container-fluid {
    padding: 0 30px;
}
.builtPeople .header-title, .builtPeople .header-title h2 {
	margin: 0;
	max-width: 100%;
}
.builtPeople .story-banner {
	width: 100%;
	margin: 0 auto;
}
.builtPeople .story-banner img {
	width: 100%;
	object-fit: cover;
}
.builtPeople .story-banner .one{
	position: relative;
	width: 100%;
	overflow: hidden;
	clip-path: inset(20% 20% 20% 20% round 10rem);
}
.builtPeople .story-mob {
	display: none;
	position: relative;
	width: 100%;
}
.gsap-marker-end, .gsap-marker-start, .gsap-marker-scroller-end, .gsap-marker-scroller-start{
	display: none!important;
}
.lifeWork {
    background: #F5F5F4;
}
.lifeWork .aboutStory {
    border-bottom: none;
}
.storyElem .storyBox.lifeWorkHead {
    display: flex;
    justify-content: center;
    padding-bottom: 0;
}
.meetWork {
    width: 100%;
    position: relative;
}
.meetWork .ourTeam, .meetWork .meetWorkHead {
    width: 100%;
    position: relative;
}
.meetWork .ourTeam .container-fluid {
    padding: 0 30px;
}
.ourTeam .ourTeamcarousel {
    width: 100%;
    position: relative;	
}
.ourTeam .content {
    position: absolute;
    bottom: 30px;
    right: 50px;
    width: 100%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ourTeam .content h4 {
    background: #D2AB67;
    padding: 8px 5px 8px 20px;
    color: #fff;
    font-family: 'Jost-Bold';
    text-transform: uppercase;
    margin: 0;
    font-size: 40px;
    position: relative;
    z-index: 1;
}
.ourTeam .content .box {
    background: rgba(4, 87, 162, 0.93);
    padding: 60px 50px 50px 25px;
    margin-top: -40px;
}
.ourTeam .content .box h5 {
    font-family: 'Jost-Bold';
    color: #fff;
    font-size: 21px;
    margin: 0 0 10px;
}
.ourTeam .content .box p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}
.growth, .growth .growthHead {
    width: 100%;
    position: relative;
}
.owl-carousel {
	z-index: 0;
}
.growthElem .box {
	position: relative;
}
.growthElem .item h3, .growthContent h3 {
	font-family: 'Cochin';
	text-transform: uppercase;
	color: #062F53;
	font-size: 34px;
	margin: 20px 0 12px;
	font-weight: 700;
}
.growthElem .item p, .growthContent p {
	color: #262626;
	font-size: 18px;
	line-height: 23px;
	margin: 0;
}
.growthElem.owl-carousel .owl-nav {
	display: block;
}
.growthElem.owl-carousel .owl-nav button {
	position: absolute;
	top: auto;
	bottom: 30px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #063865;
	transition: .3s;
	background-color: #063865;
	margin: 0;
}
.growthElem.peopleOwl .owl-nav button {
    top: auto;bottom: 30px;
}
.growthElem.owl-carousel .owl-nav button.owl-prev {
	right: 50px;
}
.growthElem.owl-carousel .owl-nav button.owl-next {
	right: 10px;
}
.growthElem.owl-carousel .owl-nav button span {
	position: relative;
	font-size: 0;
}
.growthElem.owl-carousel .owl-nav button span:after {
	position: absolute;
	content: '';
	top: -11px;
	left: -6px;
	width: 16px;
	height: 16px;
	background-size: 16px;
	background-image: url(../images/white-arrow-right.svg);
	background-repeat: no-repeat;
}
.growthElem.owl-carousel .owl-nav button.owl-prev span:after {
	transform: rotate(180deg);
	top: -14px;
	left: -8px;
}
/*Life at Alcobrew page css close*/

/*Our Story page css start*/
.ourStory {
    width: 100%;
    position: relative;	
}
.ourStory, .ourStoryHeader {
    width: 100%;
    position: relative;	
}
.ourStoryHeader p {
    font-size: 18px;
    margin-bottom: 20px;
}
.ourStory .aboutStory {
    height: 0;
  overflow: hidden;
  opacity: 0;}
.ourStory .aboutStory.active {
    display: block;
}
.timeSec .timeHeader.space-tb {
    padding-top: 0;
}
.goldBg.shaped-distillery .header-title h2{color: #062F53}
.goldBg .bg-overlay{background: #F3EEE7}
.goldBg.shaped-distillery{padding: 100px 0}
.timeSec.active .timeHeader.space-tb {
    padding-top: 60px;
}
.ourStoryHeader .readMore-btn.active span:after, .gamberValley-distillery .contentBlock.active .readMore-btn span:after {
    transform: rotate(180deg);
}
.ourStoryHeader .readMore-btn span.less, .ourStoryHeader .readMore-btn.active span.more, .gamberValley-distillery .contentBlock .readMore-btn span.less, .gamberValley-distillery .contentBlock.active .readMore-btn span.more {
    display: none;
}
.ourStoryHeader .readMore-btn.active span.less, .gamberValley-distillery .contentBlock.active .readMore-btn span.less {
    display: block;
}
.aboutStory {
    width: 100%;
    position: relative;
    background: #F5F5F4;
    border-top: 1px solid #8B8B8B;
}
.storyElem {
    position: relative;
    padding: 0 0;
    border-bottom: 1px solid #8B8B8B;
    z-index: 1;
}
.storyElem .storyBox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    align-items: center;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    width: 1070px;
    max-width: 100%;
    padding-right: 70px;
    border-right: 1px solid #D9D3D3;
}
.storyElem .storyBox .boxImg {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    transition: 0.5s all;
}
.storyElem.active .storyBox .boxImg:hover{border-radius: 40%}
/*.storyElem .storyBox .boxImg img {
    transition: 0.5s all;
    clip-path: inset(0 round 0rem);
    transition: clip-path var(--timingDefault) cubic-bezier(var(--easeAlt));
    will-change: clip-path;
}
.storyElem .storyBox .boxImg img:hover {
    clip-path: inset(0 round 10rem);
    transition: 0.5s all;
}*/
.storyElem .storyBox .boxContent {
    padding-left: 70px;
}
.storyElem .storyBox .boxContent .header-title p {
    font-size: 18px;
    line-height: 23px;
    color: #262626;
}
.storyElem:nth-child(even) .storyBox {
    border-right: none;
    padding-left: 70px;
    border-left: 1px solid #D9D3D3;
}
.storyElem:nth-child(even) .storyBox .boxImg {
    order: 2;
}
.storyElem:nth-child(even) .storyBox .boxContent {
    padding-left: 0;
    padding-right: 70px;
}
.timeSec, .timeHeader {
    width: 100%;
    position: relative;	
}
.timeHeader .header-title {
	max-width: 1100px;
}
.leadership {
    position: relative;
    background: #053662;
	padding-bottom: 300px;
}
.leadership .header-title h2, .leadership .header-title p {
    color: #ffffff;
}
.aboutLeader {
    width: 100%;
    max-width: 1178px;
    display: flex;
    flex-wrap: wrap;
    padding: 80px 35px 60px;
    margin: 0 auto;
    background: #004888;
    margin-top: 30px;
}
.aboutLeader .leaderImg {
    width: 45%;
    position: relative;
}
.aboutLeader .leaderImg figure {
    position: absolute;
    top: 0;
    left: 0;
    background: #CED3E6;
    padding: 0 10px;
}
.aboutLeader .leaderImg figure:before {
    position: absolute;
    top: 19px;
    right: -20px;
    content: "";
    background: #BFA278;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.aboutLeader .leaderImg figure:after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    background: #CED3E6;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.aboutLeader .leaderImg figure img {
    position: relative;
    top: 20px;
    z-index: 9;
}
.aboutLeader .leaderContent {
    width: 55%;
    padding-left: 30px;
    color: #ffffff;
    padding-right: 50px;
}
.leaderContent h3 {
    font-family: 'futurabook';
    font-size: 45px;
    margin: 0 0 25px;
    position: relative;
    padding-top: 15px;
}
.leaderContent h3:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 124px;
    height: 3px;
    background: #D2AB67;
}
.leaderContent .content {
    position: relative;
}
.leaderContent .content:before {
    position: absolute;
    content: "";
    bottom: -10px;
    right: 0;
    background: url(../images/cont-icon.webp) no-repeat;
    width: 29px;
    height: 19px;
    transform: rotate(180deg);
}
.leaderContent .content:after {
    position: absolute;
    content: "";
    top: -10px;
    left: -50px;
    background: url(../images/cont-icon.webp) no-repeat;
    width: 29px;
    height: 19px;
}
.leaderContent .content p {
    margin-bottom: 15px;
}
.leaderContent h4 {
    font-family: 'Jost-Bold';
    color: #D2AB67;
    font-size: 26px;
}
.theBrand {
    width: 100%;
    position: relative;
    margin-top: -80px;
}
.theBrand .brandBox {
    background: #F3EEE7;
    padding: 45px 120px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.brandOwl {
    width: 100%;
    position: relative;
    z-index: 0;
}
.brandOwl .item  {
    width: 100%;
    position: relative;
    padding-top: 20px;
}
.brandOwl .item img {
	width: 100%;
    transition: 0.5s;
}
.brandOwl .item:hover img {
    transform: translateY(-1rem);
}
.brandOwl .item h5 {
	font-family: 'Jost-Medium';
	color: #062F53;
	font-size: 18px;
	margin: 15px 0 5px;
}
.brandOwl .item p {
	margin: 0;
	color: #262626;
	font-size: 14px;
}
.legcaySec, .legacyHead {
    width: 100%;
    position: relative;	
}
.legacyHead .header-title {
    max-width: 600px;
}
.legcaySec .aboutStory {
    width: 100%;
    border: none;
    padding-bottom: 130px;
    position: relative;
    overflow: hidden;	
}
.legcaySec .aboutStory:before {
    position: absolute;
    content: "";
    top: -100px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/vision_bg.webp) no-repeat top left;
}
.legcaySec .aboutStory:after {
    position: absolute;
    content: "";
    bottom: 70px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/draw-black.png) no-repeat bottom right;
}
.legcaySec .aboutStory .storyBox {
    border: none;
    max-width: 1000px;
    width: 100%;
}
.legcaySec .storyElem:last-child {
    border: none;
}
.journey {
    padding: 130px 0 80px;
    position: relative;
    background: #F3EEE7;
}
.journey:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 00px;
    right: 0px;
    background: url(../images/photoroom.png) no-repeat bottom right;
}
.journey .alcobrewLogo {
	width: 100%;
    position: absolute;
    text-align: center;
    top: -90px;
    left: 0;
}
.timeline-slider {
	width: 100%;
	max-width: 950px;
	margin: 40px auto 0;
	padding: 0 0;
	z-index: 0;
}
.timeline-slider .swiper-slide {
	position: relative;
	border-radius: 0;
	overflow: hidden;
}
.timeline-slider .swiper-slide:before{
	position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    content: "";
    background: #fff;
    z-index: 2;
}
.timeline-slider .swiper-slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	position: relative;
	z-index: 1;
}
.timeline-slider .swiper-slide .content {
	position: absolute;
	bottom: 0;
	padding: 20px;
	color: #ffffff;
	background: linear-gradient(0deg, rgb(4 87 162 / 70%), rgb(4 87 162 / 35%));
	width: 100%;
	display: none;
	height: 100%;
	z-index: 3;
	}
.timeline-slider .swiper-slide .content h3{
	font-family: 'Jost-Bold';
	font-size: 36px;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.timeline-slider .swiper-slide .content p{
	margin: 0;
	font-size: 20px;
	line-height: 25px;
}
.timeline-slider .swiper-slide img{ 
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%)
}
.timeline-slider .swiper-slide-active.swiper-slide img{ -
	webkit-filter: grayscale(0);
	filter: grayscale(0);
}
.timeline-slider .swiper-slide-active.swiper-slide .content{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.timeline-slider .swiper-button-prev svg, .timeline-slider .swiper-button-next svg{display: none;}
.timeline-slider .swiper-button-prev, .timeline-slider .swiper-button-next{    position: absolute;
    top: 44%;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #063865;
    transition: .3s;
    background-color: #063865;
    margin: 0;}
.timeline-slider .swiper-button-prev span:after, .timeline-slider .swiper-button-next span{position: relative;width: 100%;height: 100%}    
.timeline-slider .swiper-button-prev span:after, .timeline-slider .swiper-button-next span:after {
    position: absolute;
    content: '';
top: 9px;
    left: 9px;
    width: 16px;
    height: 16px;
    background-size: 16px;
    background-image: url(../images/white-arrow-right.svg);
    background-repeat: no-repeat;
}
.timeline-slider .swiper-button-prev span:after{transform: rotate(180deg);top: 7px;
}
/*Our Story page css close*/

/*Media Spotlight page css start*/
.media-spotlight {
    width: 100%;
    position: relative;
    background-color: #F3EEE7;
}
.media-spotlight .investor-tabs {
    max-width: 900px;
}
.press-list {
    width: 100%;
    position: relative;
}
.press-list .item {
    width: 100%;
    height: calc(100% - 24px);
    margin: 12px 0;
    position: relative;
    background-color: #063764;
    display: block;
    border-radius: 8px 8px;
	overflow: hidden;
    transition: 0.5s;
}
.press-list .item img{
	width: 100%;
	height: 292px;
	object-fit: cover;
}
.press-list .item:hover {
    transform: translateY(-1rem);
}
.press-list .item .detail {
    width: 100%;
    position: relative;
	font-family: 'Cochin';
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	padding: 15px 50px 15px 15px;
}
.press-list.events-list .item .detail {
	padding: 15px;	
}
.press-list.events-list .item .detail:after {
	display: none;
}
.press-list .item .detail:after {
    position: absolute;
    content: '';
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    background-image: url(../images/pressLink.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.event-block {
    width: 100%;
    position: relative;
    background-color: #F3F3F3;	
}
.event-block .eventsMain {
    width: 100%;
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.event-block .eventsMain img {
    min-height: 250px;
    object-fit: cover;
}
.event-block .eventsMain .detail {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 15px 15px;
    font-family: 'Cochin';
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}
.event-block .eventsMain:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(3.74deg, #053967 12.29%, rgba(14, 125, 226, 0) 35.05%);
}
.event-block .event-list {
    width: 100%;
    position: relative;	
}
.event-block .event-list li {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}
.event-block .event-list li .eventItem {
    width: 100%;
    display: flex;
    align-items: center;
    border: 0;
    box-shadow: none;
    outline: none;
    margin: 0;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
}
.event-block .event-list li .eventItem.active {
    background-color: #063764;	
}
.event-block .event-list li .eventItem.active .detail {
    color: #ffffff;	
}
.event-block .event-list li .eventItem .img {
    width: 25%;
}
.event-block .event-list li .eventItem .detail {
    width: 75%;
    position: relative;
    font-family: 'Cochin';
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    padding: 0 0px 0 15px;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
	text-align: left;
}
.event-block .tab-content>.tab-pane {
    display: block;
    opacity: 0;
    height: 0;
    overflow: hidden;
}
.event-block .tab-content>.tab-pane.active {
    opacity: 1;
    height: auto
}
.gallaery-box {
    width: 100%;
    position: relative;
}
.gallaery-box a {
    width: 100%;
    height: calc(100% - 24px);
    margin: 12px 0;
    display: block;
    position: relative;
	cursor: pointer;
}
/*Media Spotlight page css close*/
.titleLine {
  overflow: hidden;display: block;

}

.titleLine .text, .titleLine .textOne {
  display: inline-block;
  will-change: transform;
  transform: translateY(100%);
  clip-path: inset(100% 0 0 0);
}

.lifeBar .text{display: block;}
.boxImg {
  overflow: hidden;
}
.boxImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateY(100%);
  opacity: 1;
}
#main-content, .page-banner{margin-top: 114px;}
.awardSec{background: #fff;padding: 70px 0}
.awardSec .awardBox{text-align: center;margin-bottom: 30px}
.awardSec .awardBox p{font-size: 18px;line-height: normal;margin: 25px 0 15px;font-family: 'futura_md_btmedium';color: #000}
.awardSec .awardBox h6{font-size: 38px;color: #B37200;font-family: 'Cochin';
	font-weight: 700;}
.joinAlcobrew{position: relative;background: #F3EEE7;padding: 20px 0;text-align: center;}	
.growAlcobrew .joinAlcobrew{background: transparent;padding: 0;margin-top: 30px}
.growAlcobrew .blue-btn{    border-color: #fff;color: #fff;}
.growAlcobrew .blue-btn:before, .growAlcobrew .blue-btn:after{border-color: #fff}
.growAlcobrew .blue-btn span:after{background: url(../images/whiteArrow.svg)}
.halfBanner{height: 550px}
.halfBanner img{width: 100%;height: 100%;object-fit: cover;}
.videoBlock{width: 1200px;margin: 0 auto;border-radius: 10px;overflow: hidden;position: relative;background: #000}
.videoBlock .playVideo{position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: #00000063;display: flex;align-items: center;justify-content: center;}
.videoBlock .playVideo button{margin: 0;padding: ;background: transparent;border: none}

.videoBlock video{width: 100%;height: 550px;}
.brandInfo .brandBottle img{display: none;}
#backToTop {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #044A8D;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  transition: all 0.3s ease;
}
#backToTop:hover {
  transform: translateY(-3px);
}
#backToTop span{
    position: relative;
    top: -3px;
}

.moreVodkaBlock{
	position: relative;
	padding: 60px 0 0;
	background: linear-gradient(180deg, #E5E3E3 0%, #FFFFFF 100%);
}
.moreVodkaBlock .vodkaTag{
	text-align: center;
	margin-bottom: 20px;
}
.moreVodkaBlock .vodkaTag img{width: auto;max-width: 100%}
.moreVodkaBlock .content{
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    background: url(../images/one-more-content-bg.webp) no-repeat center center;
    height: 800px;
    background-size: contain;
    display: flex;
    align-items: center;
}
.moreVodkaBlock .content p{
	    width: 380px;
    margin: 190px auto 0;
    text-align: center;
    color: #fff;
}

.vodkaFlavours{position: relative;height: 850px;overflow: hidden;}
.vodkaFlavours .owl-item{height: 100%}
.flavoursOwl{position: relative;}
.vodkaFlavours .item{position: absolute;width: 100%;height: 850px;top: 0;left: 0;opacity: 0;    transition: all .8s ease;}
.vodkaFlavours .item.active{opacity: 1}
.bottleView{position: absolute;left: 0;top: 0;width: 100%;height: 100%;text-align: center;display: flex;justify-content: center;align-items: center;z-index: 99;}
.roundBox{display: flex;width: 300px;height: 300px;background: transparent	;border-radius: 50%;position: relative;top: 530px;transform: rotate(0deg);}    
.bottleView .roundItem{position: absolute;top: 0;left: 0;width: 100%;height: 100%}
.bottleView .roundItem.orangeBtl{top: -750px;}
.bottleView .roundItem.grainBtl{transform: rotate(120deg);top: 350px;left: 630px;}
.bottleView .roundItem.appleBtl{transform: rotate(240deg);top: 369px;left: -637px;}

.vodkaButton{position: absolute;z-index: 999;width: 90%;left: 50%;top: 50%;transform: translate(-50%, -50%);display: flex;justify-content: space-between;}
.vodkaButton button{width: 40px;    height: 40px;    background-color: #fff;    border-radius: 50%;display: flex;    align-items: center;    justify-content: center;    padding: 0;    margin: 0;    border: none;    cursor: pointer;box-shadow: 3px -2px 39px 0px #00000047}
.vodkaButton button#prevBtn{transform: rotate(180deg);}
.vodkaButton button img{-webkit-filter: grayscale(1) invert(1);filter: grayscale(1) invert(1);width:16px }

/*Orange flavours*/
.orangeFlv{background: radial-gradient(50% 50% at 50% 50%, #FF8F32 0%, #FF8D2F 100%);}
.orangeFlv .flavoursBgEffect{position: absolute;top: 0;left: 0;width: 100%;opacity: .7}
.orangeFlv .flavoursBgEffect img{width: 100%; will-change: transform;}
.orangeFlv .flavoursLeyer img{width: 100%;position: relative;}
.orangeFlv .flavoursLeyer .layerOne {top: -80px;left: 0;z-index: 1;}
.orangeFlv .flavoursLeyer .layerTwo {bottom: 0;left: 0;z-index: 3;}
/*Chocolate flavours*/
.chocolateFlv{background: radial-gradient(50% 50% at 50% 50%, #DA946D 0%, #674532 100%);}
.chocolateFlv .flavoursLeyer{text-align: center;display: flex;flex-direction: column;align-items: center;}
.chocolateFlv .flavoursLeyer img{width: auto;max-width: 100%;position: relative;}
.chocolateFlv .flavoursLeyer .layerOne{top:0 }
.chocolateFlv .flavoursLeyer .layerTwo{top:-120px;z-index:3 }
.chocolateFlv .flavoursLeyer .layerThree{top:-200px;z-index:3}
/*Grain flavours*/
.grainFlv{background: radial-gradient(50% 50% at 50% 50%, #3CD2F3 0%, #05A7CA 100%);}
.grainFlv .flavoursLeyer{text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: space-between;height: 100%}
.grainFlv .flavoursLeyer img{width: auto;max-width: 100%;position: relative;}
.grainFlv .flavoursLeyer .layerOne{top:0;transform: rotate(21deg); }
.grainFlv .flavoursLeyer .layerTwo{top:0;z-index:3 }
.grainFlv .flavoursLeyer .layerThree{top:-50px;z-index:3}
.vodkaFlavours .item.grainFlv .flavourContent h3{font-size: 223px}
/*Apple flavours*/
.appleFlv{background: radial-gradient(50% 50% at 50% 50%, #AEDF67 0%, #74AB35 100%);}
.vodkaFlavours .item.appleFlv .flavourContent h3{font-size: 185px}
.appleFlv .flavoursLeyer{text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: space-between;height: 100%}
.appleFlv .flavoursLeyer img{width: auto;max-width: 100%;position: relative;}
.grainFlv .flavoursLeyer .layerOne{top:0;}
.appleFlv .flavoursLeyer .layerTwo{top:-140px;z-index:3 }
.appleFlv .flavoursLeyer .layerThree{top:0;z-index:3;width: 100%}


.vodkaFlavours .item .flavourContent {position: absolute;z-index: 2;top: 0;left: 0;width: 100%;text-align: center;height: 100%;}
.vodkaFlavours .item .flavourContent h3{transform:translateY(-60px);opacity: 0;position: relative;transition:all .5s ease; font-family: 'futura_md_btbold';font-size: 254px;color: #fff;text-shadow: 0px 10.614px 11.6753px rgba(0, 0, 0, 0.25);margin-top: 170px;text-transform: uppercase;}
.vodkaFlavours .item .flavourContent p{	position: absolute;    right: 130px;    bottom:200px;    color: #fff;    font-size: 36px;    width: 510px;    max-width: 100%;    transform:translateY(60px);opacity: 0;transition:all .8s ease;}
.vodkaFlavours .item.active .flavourContent h3{opacity:1;transform:translateY(0);transition-delay:0.5s;}
.vodkaFlavours .item.active .flavourContent p{opacity:1;transform:translateY(0);transition-delay:0.8s;}
.vodkaFlavours .item .flavourContent img{	position: absolute;	top: 60px;	left: 50%;	transform: translate(-50%);	width: auto;}
.vodkaFlavours .navButton {    position: absolute;    bottom: 0;    left: 50%;    width: 1040px;    max-width: 100%;    transform: translate(-50%);    display: flex;    justify-content: space-between;}
.vodkaFlavours .nav-btn {    cursor: pointer;    width: 150px;    height: 300px;    display: none;}
.vodkaFlavours .nav-btn.active-nav{
    display:block;
}
.vodkaFlavours .nav-btn img {
    width: 100%;
    height: auto;
}
.vodkaFlavours .nav-btn img:hover{
	    transform:scale(1.1);
transition: transform 0.6s; 
}


.owl-carousel .owl-prev.disabled, .owl-carousel .owl-next.disabled, 
.timeline-slider .swiper-button-prev.swiper-button-disabled, .timeline-slider .swiper-button-next.swiper-button-disabled {display: none;}

.brandBottom .brandName{display: none;}
.brandBottom .brandContent:before, .brandInfo:before, .brandInfo:after{content: none}

.bef-exposed-form{display: flex;align-items: center;}
.bef-exposed-form .js-form-type-select select{width: auto;color: #5B6065;padding: 10px 40px 10px 20px;outline: none !important;box-shadow: none !important;}
.bef-exposed-form .form-actions input{background: #063764;
    color: #fff;
    border: none;
    padding: 11px 20px;
    border-radius: 4px;
    margin-left: 10px;}


@media only screen and (max-width: 1399px) {
	.halfBanner{height: 430px}
	.people_card .people_img_block .people_content .content .title {
		font-size: 44px;
	}
	.people_card .people_img_block .people_content .content .title:after {
		width: 20px;
		height: 20px;
		top: 8px;
		background-size: 20px;
	}
	.header {
		padding: 10px 30px;
	}
	.footerBtm {
		padding: 15px 30px;
	}
	.header-title h1, .header-title h2 {
		font-size: 45px;
	}
	.investor-content h2, .header-title h3, .growAlcobrew-body h2, .growthElem .item h3, .ourTeam .content h4, .leaderContent h3, .growthContent h3 {
		font-size: 34px;
	}
	.header-title .subTitle {
		font-size: 26px;
	}
	.ourApproach .header-title .measuredProcesses {
		font-size: 22px;
	}
	.governance-content .tab-content h3 {
		font-size: 28px;
	}
	.governance-content .nav-tabs .nav-item .nav-link {
		font-size: 16px;
	}
	.downloads-block {
		padding: 30px;
	}
	.investor-tabs .nav-item .nav-link {
		font-size: 20px;
	}
	.downloads-block ul li a {
		padding: 40px 60px 40px 70px;
		font-size: 22px;
		border-radius: 0 54px 0 0;
	}
	.downloads-block ul li a:before {
		left: 20px;
		top: 34px;
		width: 30px;
		height: 40px;
	}
	.downloads-block ul li a:after {
		right: 25px;
		top: 40px;
		width: 24px;
		height: 25px;
	}
	.downloads-block ul {
		gap: 25px;
	}
	.sebi-scores {
		font-size: 26px;
	}
	.governance-content .nav-tabs {
	    padding: 53px 0px 0 0;
	}
	.governance-content .nav-tabs .nav-item .nav-link:before {
		border: 8px solid transparent;
		top: calc(50% - 7px);
		border-left-color: #D9D9D9;
	}
	.event-block .event-list li {
		margin-bottom: 8px;
		padding: 8px 10px;
	}
	.gamberValley-distillery:after {
		width: 120px;
		height: 200px;
	}
	.moreVodkaBlock .vodkaTag img{width: 300px}
	.moreVodkaBlock .content{width: 680px;height: 700px}
	.moreVodkaBlock .content p{width: 320px;font-size: 14px}
	.vodkaFlavours, .vodkaFlavours .item{height: 600px}
	.vodkaFlavours .item .flavourContent h3{font-size: 150px!important;margin-top: 120px;}
	    .vodkaFlavours .item .flavourContent img {
        width: 160px;
        top: 60px;
        height: 500px;
        object-fit: contain;
    }
	.vodkaFlavours .nav-btn {    width: 120px;    height: 240px;}
	.vodkaFlavours .navButton{width: 900px}
	.chocolateFlv .flavoursLeyer .layerOne{width:160px }
	.chocolateFlv .flavoursLeyer .layerTwo{top:-80px;width:640px}
	.chocolateFlv .flavoursLeyer .layerThree{top:-150px;width: 1100px}
	.appleFlv .flavoursLeyer .layerOne{width: 100px}
	.appleFlv .flavoursLeyer .layerTwo {top: -60px;width: 960px;}
	.grainFlv .flavoursLeyer .layerTwo {width: 590px;top: -10px;}
	.grainFlv .flavoursLeyer .layerOne{width: 130px}
	.vodkaFlavours .item .flavourContent p{font-size: 22px;width: 350px;bottom: 150px;}
	.roundBox{    width: 200px;height: 200px;top: 330px}
	.bottleView .roundItem.orangeBtl {top: -480px;}
	.bottleView .roundItem.grainBtl {top: 250px;left: 420px;}
.bottleView .roundItem.appleBtl {top: 252px;left: -427px;}
	.bottleView .roundItem img{width: 160px;height: 500px;object-fit: contain;}

}
@media only screen and (max-width: 1199px) {
	.people_card .people_img_block .people_content .content .title {
		font-size: 40px;
	}
	.people_card .people_img_block .people_content .content p {
		font-size: 16px;	
	}
	.people_card .people_img_block .people_content .content .link:after {
		width: 28px;
		height: 28px;
		background-size: contain;
	}
	.people_card .people_img_block .people_content .content .link {
		width: 28px;
		height: 12px;
	}
	.header-title h1, .header-title h2 {
		font-size: 40px;
	}
	.investor-content h2, .header-title h3, .growAlcobrew-body h2, .growthElem .item h3, .ourTeam .content h4, .leaderContent h3, .growthContent h3 {
		font-size: 30px;
	}
	.governance-content .tab-content h3 {
		font-size: 25px;
	}
	.header-title .subTitle {
		font-size: 22px;
	}
	.ourApproach .header-title .measuredProcesses {
		font-size: 20px;
	}
	.downloads-block {
		padding: 30px;
	}
	.investor-tabs .nav-item .nav-link {
		font-size: 18px;
	}
	.investor-tabs {
		justify-content: center;
	}
	.space-tb {
		padding: 50px 0;
	}
	.space-t, .timeSec.active .timeHeader.space-tb {
		padding-top: 50px;
	}
	.space-b {
		padding-bottom: 50px;
	}
	.sebi-scores {
		font-size: 24px;
	}
	.governance-content .nav-tabs {
    	width: 250px;
	    padding: 50px 0px 0 0;
	}
	.governance-content .tab-content {
		width: calc(100% - 250px);
		padding-left: 30px;
	}
	.whisky-list .item .itemDetail img {
		max-height: 300px;
	}
	.whisky-list .item .itemDetail h2, .relatedproduct .item h2 {
		font-size: 20px;
	}
	.whisky-list .item .itemDetail h3 {
		font-size: 16px;
	}
	.whiskyFeatures .content ul li {
		padding: 10px;
	}
	.whiskyFeatures .content ul {
		max-width: 500px;
	}
	.growAlcobrew-body ul {
		grid-gap: 10px;	
	}
	.growAlcobrew-body ul li {
		font-size: 14px;
		line-height: 20px;
	}
	.growAlcobrew-body ul li .icon {
		margin: 0 auto 5px;
	}
	.ourDistilleries .header-title p {
		font-size: 18px;
	}
	.ourDistilleries, .shaped-distillery {
	    padding-bottom: 100px !important;	
	}
	.gamberValley-distillery, .gamberValley-distillery {
	    padding-top: 100px !important;	
	}
	.gamberValley-distillery .alcobrewLogo img {
		max-width: 150px;
	}
	.gamberValley-distillery .alcobrewLogo {
		top: -175px;
	}
	.growthElem .item p, .growthContent p {
		font-size: 16px;	
	}
	.growthElem .item h3 {
	    margin: 10px 0 10px;	
	}
	.aboutLeader {
		padding: 40px 25px;
	}
	.aboutLeader .leaderContent {
        padding-left: 50px;
        padding-right: 0;
	    width: 60%;
    }
	.leadership {
	    padding-bottom: 180px;	
	}
	.leaderContent h3 {
		margin-bottom: 15px;
	}
	.aboutLeader .leaderImg {
		width: 40%;
	}
	.leaderContent .content:after {
		top: -18px;
		left: -18px;
	}
	.leaderContent .content p {
		margin-bottom: 10px;
	}
	.timeline-slider .swiper-slide .content h3 {
	    font-size: 30px;	
	}
	.theBrand .brandBox {
		padding: 45px 50px 40px;
	}
	.event-block .event-list li {
		margin-bottom: 7px;
		padding: 7px 10px;
	}
	.event-block .eventsMain .detail {
		font-size: 22px;
	}
	.moreVodkaBlock .vodkaTag img{width: 200px}
	 .moreVodkaBlock .content p {width: 260px;font-size: 13px;}
	.moreVodkaBlock .content {width: 680px;height: 630px;    }
}
@media only screen and (max-width: 991px) {	
	.halfBanner {height: 330px;    }
	#main-content, .page-banner{margin-top: 95px}
	.footer-block {
		padding: 40px 0;
	}
	.footer-block .footer-menu {
		padding: 30px 0 0;
	}
	.footerBtm .copyright {
		padding-top: 20px;
		text-align: center;
	}
	.footerBtm .copyright br {
		display: none;
	}
	.footerBtm .social {
		justify-content: end;
	}
	.header .logo {
		display: none;
	}
	.header .moblogo .navbar-brand {
		opacity: 1;
		visibility: visible;
		display: inline-block;
	}
	.header .moblogo .navbar-brand img {
		max-width: 65px;	
	}
	.header.sticky .moblogo .navbar-brand img {
		max-height: 50px;
	}
	.menu-trigger {
		width: 32px;
		height: 32px;
	}
	.close-menu {
		right: 20px;
	}
	.menu-right {
	    padding: 90px 20px 0;	
	}
	.mega-menu ul.menuLink li a {
		font-size: 16px;
	}
	.people_card .people_img_block .people_content .content .title {
		font-size: 35px;
		margin-bottom: 10px;
	}
	.people_card .people_img_block .people_content .content .title:after {
		width: 16px;
		height: 16px;
		background-size: 16px;
	}
	.header-title h1, .header-title h2 {
		font-size: 34px;
	}
	.investor-content h2, .header-title h3, .growAlcobrew-body h2, .growthElem .item h3, .ourTeam .content h4, .leaderContent h3, .growthContent h3 {
		font-size: 26px;
		margin-bottom: 15px;
	}
	.governance-content .tab-content h3 {
		font-size: 22px;
		margin-top: 10px;
	}
	.downloads-block ul {
    	grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	.investor-tabs .nav-item {
		padding: 0 10px;
	}
	.investor-tabs .nav-item .nav-link {
        font-size: 16px;
    }
	.investor-content {
		padding: 30px 0;
	}
	.space-tb {
		padding: 40px 0;
	}
	.space-t, .timeSec.active .timeHeader.space-tb {
		padding-top: 40px;
	}
	.space-b {
		padding-bottom: 40px;
	}
	.investor-content .downloads-block {
		padding: 20px;
	}
	.resources-card h3 {
		font-size: 20px;
	}
	.resources-card .designation {
		margin-bottom: 15px;
	}
	.sebi-scores {
		font-size: 22px;
	}
	.governance-content {
		display: block;
	}
	.governance-content .nav-tabs {
		width: 100%;
		display: flex;
		justify-content: center;
		padding: 0 0 20px;
	}
	.governance-content .tab-content {
		width: 100%;
        padding: 0px;
    }
	.governance-content .nav-tabs .nav-item .nav-link:before {
		top: 100%;
		left: calc(50% - 10px);
		transform: rotate(90deg);
	}
	.governance-content .nav-tabs .nav-item {
		margin: 5px;
	}
	.governance-content .nav-tabs .nav-item .nav-link {
        font-size: 15px;
    }
	.location-body .resources-card {
		padding: 20px 15px 70px;
	} 
	.more-waysContact .contentBox {
		padding: 30px;
	}
	.whisky-list .item .itemDetail {
		padding: 30px 20px 30px;
	}
	.whisky-list .item .itemDetail img {
		max-height: 200px;
	}
	.whisky-list .item .itemDetail h2 {
		margin: 30px 0 0;
	}
	.brandBottom .brandContent {
		max-width: 100%;
		padding: 70px 150px 0 100px;
	}
	.brandBottom .brandContent .content {
		padding: 70px 120px 70px 90px;
	}
	.whiskyFeatures:before {
		background-color: #000000;
		opacity: 0.7;
	}
	.whiskyFeatures .content ul {
        margin: auto;
    }
	.brandBottom .brandContent {
		padding: 70px 0px 0 0px;
	}
	.brandBottom .brandContent .content {
		padding: 230px 20px 20px;
		text-align: center;
	}
	.brandBottom .brandLogo {
		left: calc(50% - 90px);
		top: 20px;
	}
	.brandBottom .brandContent .content .bottle {
		position: static;
	}
	.brandBottom .brandContent .content .description {
		margin-bottom: 20px;
	}
	.growAlcobrew-body ul {
		grid-template-columns: repeat(3, 1fr);
	}
	.jobDetail .header-title {
		max-width: 100%;
		padding-bottom: 10px;
		margin: 0 auto 20px;
	}
	.jobDetail .jobGroup .group h2 {
		font-size: 22px;
		line-height: 30px;
	}
	.jobDetail .jobGroup .group {
		margin: 10px 0 20px;
	}
	.ourDistilleries .header-title p {
		font-size: 16px;
	}
	.growthElem {
        margin-top: 25px;
    }
	.growth .growthHead {
		padding-bottom: 10px;
	}
	.header-title {
		margin-bottom: 20px;
	}
	.lifeAlcobrew .item .content {
		font-size: 16px;
	}
	.storyElem .storyBox .boxContent {
        padding-left: 30px;
    }
	.storyElem:nth-child(even) .storyBox .boxContent {
		padding-right: 30px;	
	}
	.storyElem .storyBox .boxContent .header-title p, .ourStoryHeader p {
		font-size: 16px;
	}
	.storyElem .storyBox {
		padding: 50px 30px 50px 0;
	}
	.storyElem:nth-child(even) .storyBox {
		padding-left: 30px;
		padding-right: 0px;
	}
	.lifeWork .storyElem .storyBox:nth-child(2) {
		padding-top: 20px;
	}
	.aboutLeader {
        padding: 25px 20px;
    } 
    .leaderContent p {
		margin-bottom: 8px;
		font-size: 14px;
	}
    .leaderContent h4{
		font-size: 18px;
	}
	.leadership {
        padding-bottom: 130px;
    }
	.theBrand .brandBox {
        padding: 20px 10px;
    }
	.legcaySec .aboutStory:before {
        top: -40px;
        left: 0;
        width: 300px;
        height: 300px;
        background-size: contain;
    }
	.timeline-slider .swiper-slide .content p {
		font-size: 18px;
	}
	.journey:before {
        width: 350px;
        height: 350px;
        background-size: contain;
        bottom: 0;
        right: 0;
    }
	.event-block .event-list {
		margin-top: 15px; 
	}
	.event-block .event-list li {
		margin-bottom: 5px;
		padding: 10px 10px;
	}
	.event-block .eventsMain .detail {
		font-size: 20px;
	}
	.builtPeople .story-mob {
		display: block;
	}
	.builtPeople .story-banner.story-desk {
		display: none;
	}
	.vodkaFlavours .navButton {
        width: 600px;
    }
    .vodkaFlavours, .vodkaFlavours .item {
        height: 470px;
    }
    .vodkaFlavours .nav-btn {
        width: 120px;
        height: 200px;
    }
	.vodkaFlavours .item .flavourContent h3 {
        font-size: 110px !important;
        margin-top: 100px;
    }
    .vodkaFlavours .item .flavourContent img {
        width: 110px;
        height: 400px;top: 40px;
    }
    .appleFlv .flavoursLeyer .layerTwo {
        top: -50px;
        width: 650px;
    }
    .chocolateFlv .flavoursLeyer .layerOne {
        width: 100px;
    }
    .chocolateFlv .flavoursLeyer .layerTwo {
        top: -30px;
        width: 500px;
    }
    .chocolateFlv .flavoursLeyer .layerThree {
        top: -60px;
        width: 1100px;
    }
    .grainFlv .flavoursLeyer .layerOne {
        width: 110px;
    }
    .grainFlv .flavoursLeyer .layerTwo {
        width: 440px;
        top: -30px;
    }
    .grainFlv .flavoursLeyer .layerThree {
    	top: -20px;
	}
	.orangeFlv .flavoursBgEffect{
		height: 100%;
	}
	.orangeFlv .flavoursBgEffect img{
		height: 100%;
    	object-fit: cover;
	}
	.orangeFlv .flavoursLeyer .layerOne{
		top: 0;
	}
	.orangeFlv .flavoursLeyer .layerTwo {
    	bottom: -100px;
	}

}
@media only screen and (max-width: 767px) {
	.halfBanner {height: 250px;    }
	.space-tb {
		padding: 30px 0;
	}
	.space-t, .timeSec.active .timeHeader.space-tb {
		padding-top: 30px;
	}
	.space-b {
		padding-bottom: 30px;
	}
	.header {
		padding: 10px 15px;
	}
	.footerBtm {
		padding: 15px 15px;
	}
	.header-title h1, .header-title h2 {
		font-size: 30px;
	}
	.header-title .subTitle {
		font-size: 20px;
	}
	.ourApproach .header-title .measuredProcesses {
		font-size: 18px;
	}
	.investor-content h2, .header-title h3, .growAlcobrew-body h2, .growthElem .item h3, .ourTeam .content h4, .leaderContent h3, .growthContent h3 {
		font-size: 22px;
		margin-bottom: 10px;
	}
	.governance-content .tab-content h3 {
		font-size: 20px;
	}
	.downloads-block ul {
    	grid-template-columns: repeat(1, 1fr);
		gap: 10px;
	}
	.investor-content .downloads-block {
		padding: 15px;
	}
	.investor-tabs .nav-item {
		padding: 5px 7px 5px;
	}
	.investor-tabs .nav-item .nav-link.active:before, .investor-tabs .nav-item .nav-link.active:after, .investor-body .investor-tabs .nav-item .nav-link.active span:before {
		display: none;
	}
	.investor-tabs .nav-item .nav-link {
        font-size: 15px;
		padding-bottom: 5px;
    }
	.investor-tabs .nav-item .nav-link.active {
		border-bottom: 2px solid #D2AB67;
	}
	.investor-tabs .nav-item .nav-link.active span {
		padding-bottom: 0;
	}
	.investor-tabs .nav-item .nav-link.active:after, .investor-tabs .nav-item .nav-link.active:before, .investor-tabs .nav-item .nav-link.active span:after {
		display: none;
	}
	.investor-tabs {
		flex-wrap: wrap;
		margin: 0 auto 0px;
	}
	.sebi-scores {
        font-size: 20px;
    }
	.governance-content .nav-tabs .nav-item .nav-link {
        font-size: 14px;
		padding: 6px 10px;
    }
	.location-body {
		padding: 0 15px;
	}
	.more-waysContact .contentBox {
		padding: 20px;
	}
	.whisky-list .item .itemDetail img {
        max-height: 400px;transform: scale(1.2);
    }
	.whiskyFeatures .content ul li h3 {
		font-size: 20px;
	}
	.whiskyFeatures .content ul {
		grid-gap: 10px;
	}
	.brandInfo .brandLogo .brandImg {
		width: 120px;
		height: 120px;
	}
	.brandInfo .brandLogo:before {
		width: 135px;
		height: 135px;
	}
	.brandInfo .brandLogo {
		width: 150px;
		height: 150px;
	}
	.ourTeam .content .box {
		padding: 40px 20px 20px 20px;
	}
	.ourTeam .content {
	    position: static;
        max-width: 100%;
        margin-top: 5px;
	}
	.builtPeople .container-fluid, .meetWork .ourTeam .container-fluid {
		position: relative;
		padding: 0 15px;
	}
	.growthElem.owl-carousel .owl-nav button {
        bottom: 10px;
    }
	.growthElem.peopleOwl .owl-nav button {
		bottom: 10px;
	}
	.lifeWork .storyElem:last-child {
        padding-bottom: 10px;
    }
	.storyElem .storyBox {
        padding: 20px 0px 20px !important;
        grid-template-columns: repeat(1, 1fr);
        border: none !important;
    }
	.storyElem:nth-child(even) .storyBox .boxContent {
        padding-right : 0;
    }
	.storyElem .storyBox .boxContent {
        padding: 15px 0 0;
    }
	.storyElem .storyBox.lifeWorkHead {
        padding: 30px 0 0 !important;
    }
	.growthElem {
        margin-top: 15px;
    }
	.ourStory .aboutStory {
		padding: 20px 0;
		border: 0;
	}
	.storyElem:last-child {
		border-bottom: 0;
	}
	.lifeWork .storyElem .storyBox:nth-child(2) {
        padding-top: 10px !important;
    }
	.builtPeople .header-title {
		padding-top: 15px;
	}
	.meetWork .meetWorkHead .header-title, .timeHeader {
		padding-bottom: 15px;
	}
	.growth .growthHead {
		padding-bottom: 0px;
	}
	.aboutLeader .leaderImg {
		width: 100%;
	}
	.aboutLeader .leaderContent {
		padding: 40px 10px 0;
		width: 100%;
	}
	.aboutLeader .leaderImg figure {
		position: relative;
		width: 300px;
		margin: 0 auto;
	}
	.leadership {
		padding-bottom: 130px;
	}
	.storyElem:nth-child(even) .storyBox .boxImg {
		order: inherit;
	}
	.timeline-slider .swiper-slide .content p {
		font-size: 16px;
	}
	.timeline-slider {
		margin-top: 20px;
	}
	.legcaySec .aboutStory:after, .legcaySec .aboutStory:after, .journey:before {
		opacity: 0.5;
	}
	.errorText {
	    padding: 40px 20px;	
	}
	.event-block .eventsMain .detail {
		font-size: 18px;
	}
	.gamberValley-distillery:after {
		width: 100px;
		height: 160px;
	}
	.moreVodkaBlock .vodkaTag{margin: 0}
	.moreVodkaBlock .content{
		background: url(../images/one-more-content-mob-bg.webp) no-repeat center center;
        background-size: contain;
        width: 550px;
        height: 550px;
        margin-bottom: 40px;
	}
	.moreVodkaBlock .content p {
        width: 310px;
        font-size: 13px;
        margin: 170px auto 0;
        text-align: center;
        color: #fff;
    }
    .vodkaFlavours, .vodkaFlavours .item {
        height: 340px;
    }
        .vodkaFlavours .nav-btn {
        width: 80px;
        height: 150px;
    }
    .vodkaFlavours .item .flavourContent img {
        width: 90px;
        height: 280px;
        top: 40px;
    }
        .vodkaFlavours .item .flavourContent h3 {
        font-size: 80px !important;
        margin-top: 70px;
    }
        .grainFlv .flavoursLeyer .layerOne {
        width: 50px;
    }
    .grainFlv .flavoursLeyer .layerTwo {
        width: 280px;
        top: -30px;
    }
        .appleFlv .flavoursLeyer .layerTwo {
        top: -30px;
        width: 480px;
    }
        .appleFlv .flavoursLeyer .layerOne {
        width: 60px;
    }
    .awardSec .awardBox img{
    	width: 150px;
    }


}
@media only screen and (max-width: 575px) {
	.halfBanner, .page-banner {height: 200px;    }
	.page-banner img{width: 100%;height: 100%;object-fit: cover;}
	.sebi-scores {
		display: block;
		text-align: center;
    }
	.sebi-scores .blue-btn {
		margin: 10px auto 0;
		display: block;
		max-width: 150px;
    }
	.whisky-list .item .itemDetail img {
        max-height: 220px;
    }
	.whisky-list .item .itemDetail {
        padding: 15px;
    }
	.whisky-list .item .itemDetail h2, .relatedproduct .item h2 {
        font-size: 18px;
    }
	.whisky-list .item .itemDetail h3, .relatedproduct .item h3 {
        font-size: 14px;
    }
	.growAlcobrew-body ul {
		grid-template-columns: repeat(2, 1fr);
	}
	.moreVodkaBlock .content{margin: 0}
	.moreVodkaBlock .content p {
        width: 240px;
        font-size: 12px;
    }
        .vodkaFlavours .item .flavourContent h3 {
        font-size: 50px !important;
        margin-top: 50px;
    }
        .vodkaFlavours .item .flavourContent img {
        width: 60px;
        height: 220px;
        top: 20px;
    }
    .vodkaFlavours, .vodkaFlavours .item {
        height: 270px;
    }
        .vodkaFlavours .nav-btn {
        width: 60px;
        height: 100px;
    }
        .vodkaFlavours .navButton {
        width: 290px;
    }
}

