/* GOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea, label {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
button, input, textarea {
    outline: none !important;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 15px) calc(1em + 15px);
    background-repeat: no-repeat;
}
/* .container{
	max-width: 1700px;
} */
/* GOBAL_CSS_CHANGES_END_HERE */

/* GOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --white: #ffffff;
	--purple: #112437;
    --black: #000000;
	--main-color: #17708B;
	--green: #007A28;
    --montserrat-semiBold: "Montserrat-SemiBold";
    --nexa-bold: "Nexa-Bold";
    --nexa-regular: "Nexa-Regular";
    --visbycf-bold: "visbycf-bold";
    --visbycf-demibold: "visbycf-demibold";
    --visbycf-regular: "visbycf-regular";
}
/* GOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "Montserrat-SemiBold";
    src: url("../webfonts/Montserrat-SemiBold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Nexa-Bold";
    src: url("../webfonts/Nexa-Bold.otf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Nexa-Regular";
    src: url("../webfonts/Nexa-Regular.otf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "visbycf-bold";
    src: url("../webfonts/visbycf-bold.otf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "visbycf-demibold";
    src: url("../webfonts/visbycf-demibold.otf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "visbycf-regular";
    src: url("../webfonts/visbycf-regular.otf");
    font-weight: regular;
    font-style: normal;
}
/* FONT_CSS_END_HERE */

/* ONCLICK-TOP */
.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(255,255,255,0.2);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'unicons';
	content: '\f062';
	font: var(--fa-font-solid);
	text-align: center;
	font-size: 16px;
	color: var(--main-color);
	mix-blend-mode: difference;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'unicons';
	content: '\f062';
	font: var(--fa-font-solid);
	text-align: center;
	font-size: 16px;
	opacity: 0;
	background-image: linear-gradient(298deg, var(--white), var(--black));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: var(--main-color);
	stroke-width: 4;
	mix-blend-mode: difference;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
/* ONCLICK-TOP */

/* SCROLL-CSS */
body::-webkit-scrollbar {
    width: 7px;
}
body::-webkit-scrollbar-track {
    background: var(--white); 
}
body::-webkit-scrollbar-thumb {
	background-color: var(--black);
    transition: 0.5s all;
}
/* SCROLL-CSS */
.gen_heading {
    font-size: 50px;
    font-weight: 700;
    color: var(--purple);
    margin: 0px 0px 72px 0px;
}
/* LOADER-CSS */
#counter {
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 999999999;
    top: 0;
    left: 0;
	transition: opacity 0.5s linear;
}
#loader {
    font-size: 100px;
    font-family: var(--nexa-bold);
    color: var(--white);
}
.fade-out {
    opacity: 0;
}
/* LOADER-CSS */

/* HEADER-CSS */
.mobile-flex{
	display: none;
}
.header-main-wrapper{
	padding: 20px 0px;
	position: fixed;
	top: 0;
	z-index: 999;
	width: 100%;
	transition: .5s all;
}
.header-bg {
    background-color: rgb(0 0 0 / 80%);
    backdrop-filter: blur(7px);
}
.header-flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-nav ul{
	display: flex;
	align-items: center;
	gap: 40px;
}
.header-nav ul li a{
	font-size: 14px;
	font-family: var(--nexa-regular);
	color: var(--white);
	transition: .5s all;
	position: relative;
}
.header-nav ul li a:hover{
	color: var(--green);
}
.header-nav ul li a::before{
	content: '';
	position: absolute;
	bottom: -5px;
	width: 100%;
	height: 2px;
	background-color: var(--green);
	transform-origin: right;
	transform: scaleX(0);
	transition: transform .5s ease;
}
.header-nav ul li a:hover::before{
	transform-origin: left;
	transform: scaleX(1);
}
.header-nav ul li:last-child a{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 200px;
	height: 50px;
	background-color: var(--main-color);
	border-radius: 50px;
	font-size: 14px;
	font-family: var(--montserrat-semiBold);
	color: var(--white);
	position: relative;
	overflow: hidden;
	z-index: 2;
	transition: .5s all;
}
.header-nav ul li:last-child a::before{
	content: '';
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--green);
	border-radius: 50px;
	z-index: -1;
	transform-origin: left;
	transform: scaleX(0);
	transition: .5s all;
}
.header-nav ul li:last-child a:hover::before{
	transform: scaleX(1);
}
/* HEADER-CSS */

/* INDEX-CSS */
.common-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 200px;
	height: 55px;
	background-color: var(--main-color);
	border-radius: 50px;
	font-size: 14px;
	border: none;
	font-family: var(--montserrat-semiBold);
	color: var(--white) !important;
	position: relative;
	overflow: hidden;
	z-index: 2;
	transition: .5s all;
}
.common-btn::before{
	content: '';
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--green);
	border-radius: 50px;
	z-index: -1;
	transform-origin: left;
	transform: scaleX(0);
	transition: .5s all;
}
.common-btn:hover::before{
	transform: scaleX(1);
}
.common-mouse {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
	z-index: 3;
}
.common-mouse-pin {
    width: 40px;
    height: 60px;
    border: 2px solid var(--white);
    border-radius: 30px 30px 30px 30px;
    position: relative;
    overflow: hidden;
}
.common-mouse-pin span {
    background-color: var(--white);
    width: 2px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0%;
    transform: translateY(60%);
    animation: pin-1 1s infinite alternate;
}
.index-banner-wrapper {
    height: 100vh !important;
    width: 100vw !important;
}
.index-bottle-wrapper {
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    transition: .5s ease;
}
.index-bottle-zindex {
    z-index: -4;
    opacity: 0;
}
.index-banner-wrap-text, .index-banner-wrap-text-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 999;
}
.slider-container{
	width: 100vw;
	height: 100vh;
}
.slide-1{
	position: absolute;
	height: 100vh;
	width: 100vw;
	background: url(../images/main-banner-new.png) no-repeat center center;
	background-size: cover;
	bottom: 0;
	left: 0;
	z-index: 2;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.slide-2{
	position: absolute;
	height: 100vh;
	width: 100vw;
	background: url(../images/inner-banner-new.png) no-repeat center center;
	background-size: cover;
	bottom: 0;
	left: 0;
	opacity: 0;
	z-index: 2;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.bottle-1 {
    position: absolute;
    height: 20vh;
    width: 100vw;
    background: url(../images/banner-1new.png) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    transform-origin: bottom;
    -webkit-transform-origin: bottom;
    bottom: 0px;
    top: unset;
    left: 0;
    opacity: 1;
    z-index: 2;
    -webkit-mask-image: url(../images/waves.png);
    mask-image: url(../images/waves.png);
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-size: auto 100%;
    mask-size: auto 100%;
    -webkit-mask-position: 0%;
    mask-position: 0%;
    -webkit-animation: 10s animation infinite;
    animation: 10s animation infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@keyframes animation {
	0% {
	  -webkit-mask-position: 0% 100%; }
	100% {
	  -webkit-mask-position: 100% 100%; }
}
.index-bottle-img img {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    width: 22.2%;
}
.index-banner-wrap-text h6, .index-banner-wrap-text-2 h6{
	font-size: 60px;
	font-family: var(--visbycf-bold);
	color: var(--white);
	text-shadow: 0px 4px 18px rgba(0, 0, 0, 0.36);
}
.index-banner-wrap-text h6:nth-child(odd){
	width: 40%;
	text-align: start;
	margin: 0 auto;
}
.index-banner-wrap-text h6:nth-child(even){
	width: 72%;
	text-align: end;
}
.index-banner-wrap-text-2 {
	opacity: 0;
}
.index-banner-wrap-text-2 h6 {
	width: 55%;
	text-align: center;
	margin: 0 auto;
	text-transform: uppercase;
}

/*.index-banner-wrap-text h6:nth-child(odd) {*/
/*    width: 80%;*/
/*    text-align: center;*/
/*    margin: 0 auto;*/
/*}*/
.index-first-wrapper {
    padding: 100px 0px 50px 0px;
}
.index-first-wrap-vid {
    position: relative;
}
.index-first-wrap-vid-btn {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.index-first-wrap-vid-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    background-color: var(--main-color);
    border-radius: 50px;
    font-size: 14px;
    font-family: var(--montserrat-semiBold);
    color: var(--white);
    transition: .5s all;
}
.index-first-wrap-vid{
	text-align: center;
	position: relative;
	overflow: hidden;
	width: 90%;
	margin: 0 auto;
	border-radius: 10px;
}
.index-first-wrap-vid video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}
.index-first-wrap-vid::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #000000a6;
	backdrop-filter: blur(3px);
	opacity: 1;
	visibility: visible;
	transition: .5s all;
}
.index-first-wrap-vid:hover::before{
	backdrop-filter: blur(0px);
	background-color: transparent;
	opacity: 0;
	visibility: hidden;
}
.index-second-wrapper{
	padding: 50px 0px;
}
.index-second-wrap-text{
	text-align: center;
}
.index-second-wrap-text h2 {
    font-size: 45px;
    font-family: var(--visbycf-bold);
    color: var(--purple);
    letter-spacing: 10px;
    margin: 0px 0px 10px 0px;
}
.index-second-wrap-text h2 span{
	font-family: var(--montserrat-semiBold);
}
.index-second-wrap-text h6{
	font-size: 45px;
	font-family: var(--visbycf-bold);
	color: var(--purple);
	margin: 0px 0px 10px 0px;
}
.index-second-wrap-text h4{
	font-size: 20px;
	font-family: var(--visbycf-bold);
	color: var(--purple);
	margin: 0px 0px 5px 0px;
}
.index-second-wrap-text h4 span{
	font-family: var(--montserrat-semiBold);
}
.index-second-wrap-text p{
	font-size: 18px;
	font-family: var(--nexa-regular);
	color: #11243791;
	margin: 0px 0px 50px 0px;
}
.index-second-wrap-text h3 {
    font-size: 19px;
    font-family: var(--visbycf-bold);
    color: #11243791;
    width: 70%;
    margin: 0px auto 10px auto;
}
.index-second-wrap-text h3 span {
    font-family: var(--nexa-regular);
}
.index-second-wrap-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 50px 0px 0px 0px;
}
.index-second-wrap-box {
    border-radius: 10px;
    border: 1.5px solid #E9EBEE;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.25);
    padding: 30px;
    transition: .5s all;
    min-height: 350PX;
    position: relative;
}
.bg-box-img::before {
    content: '';
    position: absolute;
    background-color: transparent !important;
    background-image: url(../images/TERBO-1001.jpg);
    background-size: cover;
    background-position: center;
    transition: .5s all;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: .5s all;
}
.bg-box-img:hover::before {
    opacity: 0.5;
    visibility: visible;
}
.bg-box-img:hover{
    background-color: transparent;
}
.bg-box-img:hover .index-second-wrap-box-text h6 {
    text-shadow: 2px 2px 6px #000000a6 !important;
}
.bg-box-img:hover .index-second-wrap-box-text p, .bg-box-img:hover .index-second-wrap-box-text li, .bg-box-img:hover .index-second-wrap-box-text .see_more{
    text-shadow: 2px 2px 6px #000000a6 !important;
}
.index-second-wrap-box:hover{
	background-color: var(--purple);
	transform: translateY(-20px);
}
.index-second-wrap-box:hover .index-second-wrap-box-icon{
	background-color: var(--white);
}
.index-second-wrap-box:hover .index-second-wrap-box-icon img{
	filter: brightness(1) invert(0);
}
.index-second-wrap-box:hover .index-second-wrap-box-text h6{
	color: var(--white);
}
.index-second-wrap-box:hover .index-second-wrap-box-text p, .index-second-wrap-box:hover .index-second-wrap-box-text li, .index-second-wrap-box:hover .index-second-wrap-box-text .see_more {
	color: var(--white);
}
.index-second-wrap-box-icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 50px;
	background-color: var(--green);
	margin: 0px 0px 20px 0px;
	transition: .5s all;
}
.index-second-wrap-box-icon img{
	filter: brightness(0) invert(1);
	transition: .5s all;
	width: 60%;
}
.index-second-wrap-box-text h6{
	font-size: 18px;
	font-family: var(--nexa-bold);
	color: var(--purple);
	margin: 0px 0px 20px 0px;
	transition: .5s all;
}
.index-second-wrap-box-text p {
    font-size: 14px;
    font-family: var(--visbycf-demibold);
    color: #11243791;
    transition: .5s all;
}
.index-second-wrap-box-text li {
	font-size: 14px;
    color: #000;
    transition: .5s all;
    padding-top: 3px;
}
.index-third-wrapper{
	padding: 50px 0px;
}
.index-third-wrap-text h6{
	font-size: 40px;
	font-family: var(--visbycf-bold);
	color: var(--purple);
	margin: 0px 0px 10px 0px;
}
.index-third-wrap-text p{
	font-size: 18px;
	font-family: var(--visbycf-regular);
	color: #11243791;
	margin: 0px 0px 30px 0px;
}
.index-third-wrap-text p span{
	font-family: var(--nexa-regular);
}
.index-third-wrap-img {
    text-align: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}
.hover_trans {
    overflow: hidden;
    position: relative;
}
.hover_trans::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 49%;
    height: 100%;
    background: #000;
    opacity: 0.2;
    transition: all 1s;
}
.hover_trans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 51%;
    height: 100%;
    background: #000;
    opacity: 0.2;
    transition: all 1s;
}
.hover_trans:hover::after {
    right: -50%;
}
.hover_trans:hover::before {
    left: -50%;
}
.index-third-wrap-img img{
	width: 100%;
	border-radius: 10px;
}
.index-fifth-wrap-img video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
	transition: .5s all;
}
.index-fourth-wrap-text{
	text-align: center;
}
.index-fourth-wrap-text h2{
	font-size: 20px;
	font-family: var(--visbycf-demibold);
	color: var(--white);
	margin: 0px 0px 5px 0px;
}
.index-fourth-wrap-text h2 span{
	font-family: var(--montserrat-semiBold);
}
.index-fourth-wrap-text h6{
	font-size: 40px;
	font-family: var(--visbycf-bold);
	color: var(--white);
	margin: 0px 0px 5px 0px;
}
.index-fourth-wrap-text h6 span{
	font-family: var(--nexa-bold);
}
.index-fourth-wrap-text p{
	font-size: 18px;
	font-family: var(--nexa-regular);
	color: var(--white);
	margin: 0px 0px 50px 0px;
}
.index-fourth-wrapper{
	background-image: url(../images/fourth-bg.png);
	background-position: center;
	background-size: cover;
	padding: 100px 0px;
}
.index-fourth-wrap-box{
	width: 400px;
	height: 260px;
	border-radius: 10px;
	border: 1px solid #E9EBEE;
	background-color: #00000033;
	background-position: center;
	background-size: cover;
	padding: 30px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.index-fourth-wrap-box::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: .5s all;
}
.index-fourth-wrap-box:hover::before{
	opacity: 1;
	visibility: visible;
}
.box-hov-img-1::before{
	background-image: url(../images/fourth-box-1.png);
}
.box-hov-img-2::before{
	background-image: url(../images/fourth-box-2.png);
}
.box-hov-img-3::before{
	background-image: url(../images/fourth-box-3.png);
}
.box-hov-img-4::before{
	background-image: url(../images/fourth-box-4.png);
}
.box-hov-img-5::before{
	background-image: url(../images/fourth-box-5.png);
}
.box-hov-img-6::before{
	background-image: url(../images/fourth-box-6.png);
}
.box-hov-img-7::before{
	background-image: url(../images/fourth-box-7.png);
}
.box-hov-img-8::before{
	background-image: url(../images/fourth-box-8.png);
}
.box-hov-img-9::before{
	background-image: url(../images/fourth-box-9.png);
}
.index-fourth-wrap-box-icon{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	border-radius: 50px;
	background-color: var(--green);
	margin: 0px 0px 20px 0px;
}
.index-fourth-wrap-box-icon p{
	font-size: 22px;
	font-family: var(--nexa-bold);
	color: var(--white);
}
.index-fourth-wrap-box-text h6{
	font-size: 20px;
	font-family: var(--visbycf-bold);
	color: var(--white);
	margin: 0px 0px 10px 0px;
}
.index-fourth-wrap-box-text p{
	font-size: 16px;
	font-family: var(--nexa-regular);
	color: var(--white);
}
.index-fifth-wrapper{
	padding: 100px 0px 50px 0px;
}
.index-fifth-wrap-text{
	text-align: center;
}
.index-fifth-wrap-text h6{
	font-size: 45px;
	font-family: var(--visbycf-bold);
	color: var(--purple);
	margin: 0px 0px 10px 0px;
}
.index-fifth-wrap-text p{
	font-size: 18px;
	font-family: var(--nexa-regular);
	color: #11243791;
	width: 80%;
	margin: 0 auto 30px auto;
}
.index-fifth-wrap-img{
	text-align: center;
	overflow: hidden;
	border-radius: 15px;
	position: relative;
	width: 100%;
	height: 100%;
	transition: all 1s;
}
.index-fifth-wrap-img img{
	transition: all 1s;
	width: 100%;
	height: 100%;
}
.index-fifth-wrap-img:hover img{
    transform: scale(1.5);
}
.index-fifth-wrap-img::after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    transition: all 1s;
}
.index-fifth-wrap-img:hover::after {
    right: -100%;
}
.index-fifth-wrap-img img{
	width: 100%;
	border-radius: 10px;
}
.index-sixth-wrapper {
    padding: 60px 0px 100px 0px;
}
.sixth-wrap-img {
    width: 90%;
    margin: 0 auto;
}
.index-sixth-wrap-text h2{
	font-size: 30px;
	font-family: var(--visbycf-demibold);
	color: var(--purple);
	margin: 13px 0px 5px 0px;
}
.index-sixth-wrap-text h6{
	font-size: 45px;
	font-family: var(--visbycf-bold);
	color: var(--purple);
	margin: 0px 0px 5px 0px;
}
.index-sixth-wrap-text h4{
	font-size: 27px;
	font-family: var(--visbycf-bold);
	color: var(--purple);
	margin: 0px 0px 20px 0px;
}
.index-sixth-wrap-text h4 span{
	font-family: var(--nexa-bold);
}
.index-sixth-wrap-text p {
    font-size: 18px;
    font-family: var(--nexa-regular);
    color: #11243791;
    width: 105%;
    margin: 0 0 30px 0;
}
.index-sixth-wrap-img{
	text-align: center;
	overflow: hidden;
	width: 70%;
	margin: 0 auto 100px auto;
	border-radius: 15px;
	position: relative;
	transition: all 1s;
}
.index-sixth-wrap-img img{
	transition: all 1s;
	width: 100%;
}
.index-sixth-wrap-img:hover img{
    transform: scale(1.5);
}
.index-sixth-wrap-img::after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    transition: all 1s;
}
.index-sixth-wrap-img:hover::after {
    right: -100%;
}
.index-seventh-wrapper{
	background-image: url(../images/seventh-bg.png);
	background-position: top;
	background-size: cover;
	height: 700px;
	background-attachment: fixed;
	position: relative;
	z-index: 2;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.index-seventh-wrapper::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #00000066;
	top: 0;
	left: 0;
}
.index-seventh-wrap-text{
	text-align: center;
}
.index-seventh-wrap-text h2{
	font-size: 25px;
	font-family: var(--visbycf-demibold);
	color: var(--white);
	margin: 0px 0px 5px 0px;
}
.index-seventh-wrap-text h6{
	font-size: 65px;
    font-family: var(--visbycf-bold);
    color: var(--white);
    margin: 0px auto 20px auto;
    width: 70%;
}
.index-seventh-wrap-text p{
	font-size: 18px;
	font-family: var(--nexa-regular);
	color: var(--white);
	width: 70%;
	margin: 0 auto 20px auto;
}
.index-seventh-wrap-btn{
	display: flex;
	align-items: center;
	justify-content: center;
}
/* INDEX-CSS */

/* INNER-CSS */
.common-banner-wrapper {
    background-image: url(../images/inner-banner.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 650px;
    display: flex;
    align-items: center;
    padding: 150px 0px 0px 0px;
}
.common-banner-wrap-text h6{
	font-size: 70px;
    font-family: var(--visbycf-bold);
    color: var(--white);
    text-shadow: 0px 4px 18px rgba(0, 0, 0, 0.36);
}
.about-first-wrapper{
	padding: 100px 0px 0px 0px;
}
.about-first-wrap-text h4{
	font-size: 20px;
	font-family: var(--visbycf-bold);
	color: var(--purple);
}
.about-first-wrap-text h6{
	font-size: 45px;
    font-family: var(--visbycf-bold);
    color: var(--purple);
    margin: 0px 0px 5px 0px;
}
.about-first-wrap-text p{
	font-size: 16px;
	font-family: var(--nexa-regular);
	color: #11243791;
	margin: 0px 0px 20px 0px;
}
.about-first-wrap-imgf {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0px 0px 50px 0px;
}
.about-first-wrap-imgsf {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0px 0px 5px 0px;
}
.about-first-wrap-img{
	overflow: hidden;
	position: relative;
	transform: scale(1);
	z-index: 1;
}
.about-first-wrap-img:hover::before{
	visibility: visible;
	opacity: 0.3;
}
.about-first-wrap-img::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: .5s all;
}
.about-first-wrap-img img {
    width: 100%;
	transition: .5s all;
}
.about-first-wrap-img:hover img{
	transform: scale(1.1);
}
.about-first-wrap-img:hover h2{
	visibility: visible;
	opacity: 1;
	transition: .5s all;
}
.about-first-wrap-img-text h2{
	font-size: 25px;
	font-family: var(--visbycf-demibold);
	color: var(
	--white);
	text-align: center;
	width: 85%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: .5s all;
	z-index: 1;
}
.about-first-wrap-text h2{
	font-size: 45px;
	font-family: var(--visbycf-regular);
	color: var(--purple);
	margin: 0px 0px 10px 0px;
}
.about-first-wrap-text h2 span{
	font-family: var(--visbycf-bold);
}
.about-second-wrap-text h6{
	font-size: 45px;
	font-family: var(--visbycf-regular);
	color: var(--purple);
	padding: 50px 0px 20px 0px;
}
.about-second-wrap-text h6 span{
	font-family: var(--visbycf-bold);
}
.about-second-wrap-box {
    box-shadow: rgba(0,0,0,.25) 0 3px 11px 0;
}
.about-second-wrap-box-img {
    overflow: hidden;
    height: 260px;
}
.about-second-wrap-box-img img{
	transition: .5s all;
	transform: scale(1);
}
.about-second-wrap-box:hover img{
	transform: scale(1.1);
}
.about-second-wrap-box-text {
    padding: 30px 20px 30px 20px;
    height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about-second-wrap-box-text h6{
	font-size: 20px;
	font-family: var(--nexa-regular);
	color: var(--black);
	margin: 0px 0px 20px 0px;
}
.about-second-wrap-box-text button{
	width: 150px;
	height: 50px;
}
.product-first-wrapper{
	padding: 100px 0px;
}
.product-first-wrap-text{
	text-align: center;
}
.product-first-wrap-text h6{
	font-size: 45px;
	font-family: var(--visbycf-bold);
	color: var(--purple);
	margin: 0px 0px 20px 0px;
}
.product-first-wrap-text p{
	font-size: 18px;
	font-family: var(--nexa-regular);
	color: #11243791;
	margin: 0px 0px 50px 0px;
}
.product-first-wrap-textin h6{
	font-size: 45px;
	font-family: var(--visbycf-bold);
	color: var(--purple);
	margin: 0px 0px 20px 0px;
}
.product-first-wrap-textin h4{
	font-size: 20px;
	font-family: var(--visbycf-bold);
	color: var(--purple);
	margin: 0px 0px 10px 0px;
}
.product-first-wrap-textin span{
    font-family: var(--montserrat-semiBold);
}
.product-first-wrap-imgin {
    position: relative;
    overflow: hidden;
}

.product-first-wrap-imghov{
	position: absolute;
	width: 100%;
	opacity: 0;
	top: 0;
	transition: 0.5s all;
}
.product-first-wrap-imgin:hover .product-first-wrap-imghov{
    opacity: 1;
    visibility: visible;
}
.product-first-wrap-textin p{
	font-size: 18px;
	font-family: var(--nexa-regular);
	color: #11243791;
	margin: 0px 0px 20px 0px;
}
.product-slider .item img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}
.investor-first-wrapper {
    padding: 50px 0px;
}
.investor-first-wrap-img img {
    width: 100%;
    object-fit: cover;
}
.investor-first-wrap-text h6{
	font-size: 45px;
	font-family: var(--visbycf-bold);
	color: var(--purple);
	margin: 0px 0px 10px 0px;
}
.investor-first-wrap-text span{
    font-size: 20px;
	font-family: var(--visbycf-bold);
	color: var(--purple);
}
.investor-first-wrap-text p{
	font-size: 18px;
	font-family: var(--nexa-regular);
	color: #11243791;
	margin: 0px 0px 10px 0px;
}
.contact-first-wrapper{
	padding: 100px 0px;
}
.contact-first-wrap-text h2{
	font-size: 45px;
	font-family: var(--visbycf-bold);
	color: var(--purple);
}
.contact-first-wrap-text h6{
	font-size: 30px;
	font-family: var(--visbycf-regular);
	color: var(--green);
	margin: 0px 0px 30px 0px;
}
.contact-first-input input{
	width: 100%;
	height: 50px;
	background-color: transparent;
	border: 1px solid var(--main-color);
	color: var(--purple);
	font-size: 14px;
	font-family: var(--nexa-regular);
	padding: 0px 20px;
	margin: 0px 0px 10px 0px;
	transition: .5s all;
}
.contact-first-input textarea{
	width: 100%;
	height: 150px;
	resize: none;
	background-color: transparent;
	border: 1px solid var(--main-color);
	color: var(--purple);
	font-size: 14px;
	font-family: var(--nexa-regular);
	padding: 20px 20px;
	margin: 0px 0px 10px 0px;
	transition: .5s all;
}
.contact-first-input input:focus,
.contact-first-input textarea:focus{
	border: 1px solid var(--green);
}
.contact-rec-text{
	margin: 0px 0px 30px 0px;
}
.contact-rec-text h2{
	font-size: 25px;
	font-family: var(--montserrat-semiBold);
	color: var(--purple);
	margin: 0px 0px 10px 0px;
}
.contact-rec-text p{
	font-size: 16px;
	font-family: var(--nexa-regular);
	color: #11243791;
}
.contact-rec-textf{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0px 0px 10px 0px;
}
.detail-first-wrapper{
	padding: 200px 0px 100px 0px;
}
.detail-first-wrap-text h6{
	font-size: 45px;
	font-family: var(--visbycf-bold);
	color: var(--purple);
	margin: 0px 0px 10px 0px;
}
.detail-first-wrap-text p{
	font-size: 16px;
	font-family: var(--nexa-regular);
	color: #11243791;
	margin: 0px 0px 10px 0px;
}
.detail-first-wrap-img img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.bottle-first-wraaper {
    padding: 50px 0px;
}
.bottle-first-wrap-text p{
    font-size: 16px;
	font-family: var(--nexa-regular);
	color: #11243791;
}
.bottle-first-wrap-text a{
    display: block;
    font-size: 14px;
	font-family: var(--nexa-regular);
	margin: 0px 0px 20px 0px;
}
.about-second-wrap-box-img img {
    background: #000;
}
.privacy-first-wrapper{
    padding: 200px 0px 100px 0px;
}
.privacy-first-wrap-text h6{
    font-size: 45px;
    font-family: var(--visbycf-bold);
    color: var(--purple);
    text-align: center;
    margin: 0px 0px 10px 0px;
}
.privacy-first-wrap-text h2{
    font-size: 26px;
    font-family: var(--visbycf-demibold);
    color: var(--black);
    margin: 0px 0px 5px 0px;
}
.privacy-first-wrap-text p{
    font-size: 16px;
    font-family: var(--nexa-regular);
    color: #11243791;
    margin: 0px 0px 15px 0px;
}
.privacy-first-wrap-text ul li{
    font-size: 16px;
    font-family: var(--nexa-regular);
    color: #11243791;
    list-style: disc;
}
.privacy-first-wrap-text ul{
    padding: 0px 0px 20px 20px;
}
/* INNER-CSS */

/* FOOTER-CSS */
.footer-top{
	padding: 50px 0px;
}
.footer-top-text h6{
	font-family: var(--visbycf-demibold);
	font-size: 45px;
	color: var(--black);
	text-align: center;
	margin: 0px 0px 30px 0px;
}
.footer-top-input{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 600px;
	background-color: #E8E8E8;
	border-radius: 50px;
	padding: 0px 0px 0px 20px;
	margin: 0 auto;
}
.footer-top-input input{
	width: 60%;
	background-color: transparent;
	border: none;
	font-size: 16px;
	font-family: var(--nexa-regular);
	color: #11243761;
}
.footer-wrapper{
	padding: 80px 0px 0px 0px;
	background-color: var(--main-color);
}
.footer-logo {
    text-align: center;
	margin: 0px 0px 20px 0px;
}
.footer-social-icons ul{
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center;
}
.footer-social-icons ul li a{
	background-color: var(--green);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 55px;
	font-size: 25px;
	border-radius: 10px;
	transition: 0.5s all;
}
.footer-social-icons ul li a:hover{
	color: var(--green);
	background-color: var(--white);
}
.footer-social-icons ul li a i{
	transition: 0.5s all;
}
.footer-social-icons ul li a:hover i{
	transform: scale(1.1) rotate(360deg);
}
.footer-text h6{
	font-family: var(--visbycf-demibold);
	font-size: 25px;
	color: var(--white);
	margin: 0px 0px 10px 0px;
}
.footer-text p{
	font-family: var(--nexa-regular);
	font-size: 14px;
	color: var(--white);
	line-height: 28px;
}
.footer-logo-text ul li{
	font-family: var(--nexa-regular);
	font-size: 14px;
	color: var(--white);
	margin: 0px 0px 10px 0px;
}
.footer-logo-text ul li i{
	margin: 0px 5px 0px 0px;
}
.footer-copyright{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #ffffff21;
	padding: 15px 0px;
}
.footer-copyright p{
	font-family: var(--nexa-regular);
	font-size: 14px;
	color: var(--white);
}
.footer-copyright ul{
	display: flex;
	align-items: center;
	gap: 20px;
}
.footer-copyright ul li a{
	font-family: var(--nexa-regular);
	font-size: 14px;
	color: var(--white);
}
.footer-wrap {
    padding: 0px 0px 40px 0px;
}
.footer-text {
    width: 70%;
    margin: 0 auto;
}

/* FOOTER-CSS */

/*ADDITIONALS CSS*/
.sub_heading {
    font-size: 25px;
    font-family: var(--visbycf-bold);
    color: var(--purple);
}
.see_more, .see_more:hover {
    font-size: 16px;
    font-family: var(--visbycf-bold);
    color: var(--purple);
    padding-top: 8px;
    display: block;
    cursor: pointer;
    text-decoration: underline!important;
}
.desc1 {
    font-size: 16px;
    max-height: 100px;
    overflow: hidden;
}
.desc1.show {
    max-height: fit-content!important;
    overflow: visible!important;
}
.gen_img_row {
    margin: 40px 0px 50px 0px;
}
.sec-six-slider {
    padding: 50px 10px;
}
.sec-six-slider .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
}
.sec-six-slider .swiper-pagination-bullet-active {
	background: #17708b;
}
.bottle-first-c {
    margin: 0px 0px 20px 0px;
}
.bottle-first-c p {
    font-family: var(--nexa-regular);
    color: #112437;
    font-size: 18px;
    margin: 0px 0px 5px 0px;
}
.bottle-first-c a {
    font-family: var(--nexa-regular);
    color: #007928;
    font-size: 16px;
}
.bottle-first-wraap-text {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
/*ADDITIONALS CSS*/
.privacy-first-wrap-text h2 span {
    font-family: var(--montserrat-semiBold);
}
.index-second-wrap-text h3 span {
    font-family: var(--montserrat-semiBold);
}
.index-second-wrap-box-text p span {
    font-family: var(--montserrat-semiBold);
}
.index-second-wrap-box-text h6 span {
    font-family: var(--montserrat-semiBold);
}
.index-second-wrap-box-text h6 span {
    font-family: var(--montserrat-semiBold);
}
.custom-radius {
    border-radius: 10px
}
.index-first-wrap-vid-btn {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.index-first-wrap-vid-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    background-color: var(--main-color);
    border-radius: 50px;
    font-size: 14px;
    font-family: var(--montserrat-semiBold);
    color: var(--white);
    transition: .5s all;
}
.footer-video-one .modal-dialog {
    display: flex;
    height: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    max-width: 800px;
}
.footer-video-one .modal-body {
    padding: 0px;
}
.footer-video-one .modal-body video {
    width: 100%;
}
/* ANIMATIONS */
@keyframes pin-1 {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(60%);
    }
}
/* ANIMATIONS */


.index-bottle-wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}