body.index{
    overflow: hidden;
}
body.index main{
    z-index: 12;
}
body.otherPage{
    background: url(../img/otherpageBack2.jpg);
    background-size: cover;
    background-position: center 180px;
    background-repeat: no-repeat;
}
header{
    position: relative;
}
body.halfSlider header{
    position: fixed;
    width: 100%;
    z-index: 10;
}
body.halfSlider main{
    top: 180px;
    position: relative;
}
.par-box{
    position: relative;
    width: 100%;
/*    height: calc( 100vh - 20px );*/
    overflow: hidden;
/*    background: red;*/
    top:0;
    left:0;
}
.par-box > img{
    position: absolute;
    transition: 0.4s ease-out;
}
.par-sky{
    left:-10px;
    width: calc( 100% + 20px );
}
.par-highest-mountains{
    left: -30px;
    width: calc( 100% + 60px );
}
.par-middle-mountains{
    left: -180px;
    width: calc( 100% + 260px );
}
.par-middle-building{
    left: -300px;
    width: calc( 100% + 600px );
}
.par-bottom-side{
    left: -700px;
    width: calc( 100% + 1400px );
}

/*normal screen*/
.normal .par-sky{
    top:-7vw;
}
.normal .par-highest-mountains{
    top:-8vw;
}
.normal .par-middle-mountains{
    top:19vw;
}
.normal .par-middle-building{
    bottom:-7vw;
}
.normal .par-bottom-side{
    bottom: 0px;
}
/* / normal screen*/

/*squared screen*/
.squared .par-sky{
    top:0vw;
}
.squared .par-highest-mountains{
    top:0vw;
}
.squared .par-middle-mountains{
    top:28vw;
}
.squared .par-middle-building{
    bottom:-7vw;
}
.squared .par-bottom-side{
    bottom: 0px;
}
/* / squared screen */

/*high squared screen*/
.Hsquared .par-sky{
    top:0vw;
}
.Hsquared .par-highest-mountains{
    top:8vw;
}
.Hsquared .par-middle-mountains{
    top:36vw;
}
.Hsquared .par-middle-building{
    bottom:-7vw;
}
.Hsquared .par-bottom-side{
    bottom: 0px;
}
/* / high squared screen */

/*extraSquared squared screen*/
.extraSquared .par-sky{
    top:0vw;
}
.extraSquared .par-highest-mountains{
    top:16vw;
}
.extraSquared .par-middle-mountains{
    top:47vw;
}
.extraSquared .par-middle-building{
    bottom:-7vw;
}
.extraSquared .par-bottom-side{
    bottom: 0px;
}
/* / extraSquared squared screen */

/*extra high Squared squared screen*/
.extraHSquared .par-sky{
    top:0vw;
}
.extraHSquared .par-highest-mountains{
    top:26vw;
}
.extraHSquared .par-middle-mountains{
    top:62vw;
}
.extraHSquared .par-middle-building{
    bottom:-7vw;
}
.extraHSquared .par-bottom-side{
    bottom: 0px;
}
/* / extra high Squared squared screen */

/*last Squared squared screen*/
/*
.lastSquared .par-sky{
    top:-4vw;
}
.lastSquared .par-highest-mountains{
    top:-3vw;
}
.lastSquared .par-middle-mountains{
    top:24vw;
}
.lastSquared .par-middle-building{
    top: 30vw;
    bottom:inherit;
}
.lastSquared .par-bottom-side{
    top: 42vw;
    bottom: inherit;
}
*/
.lastSquared{
    background: url(../img/par_maglivi_home.jpg) no-repeat;
    background-position: left center;
    background-size: cover;
}
.lastSquared > img{
    display: none;
}

/* / last Squared squared screen */
main{
    position: relative;
    
}
main .indexBottles{
    background: url(../img/indexBottlesBack.jpg) no-repeat;
    background-size: cover;
    background-position: center top;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
}
main .indexBottles > a{
    height: 90%;
    position: relative;
    border: 3px solid transparent;
    border-radius: 40px;
    transition: border 0.3s ease-out;
    cursor: pointer;
    display: block;
}
main .indexBottles > a > img{
    max-width: 100%;
    max-height: 100%;
    position: relative;
    bottom:0px;
    transition: bottom 0.3s ease-out;
}
main .indexBottles > a > div{
    width: 2vw;
    height: 2vw;
    border: 3px solid transparent;
    position: absolute;
    bottom:-1vw;
    z-index: 10;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease-out;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}
main .indexBottles > a > div:after{
    content: '';
    position: absolute;
    width: 30%;
    height: 30%;
    border-top: 0.3vw solid transparent;
    border-right: 0.3vw solid transparent;
    transform: rotate(45deg);
    margin-left: -5%;
}
main .indexBottles > a:nth-child(1){
    left: -25%;
}
main .indexBottles > a:nth-child(2){
    left: -50%;
}
main .indexBottles > a:nth-child(3){
    right: -50%;
}
main .indexBottles > a:nth-child(4){
    right: -25%;
}
main .indexBottles > a:hover > div{
    opacity: 1;
    width: 4vw;
    height: 4vw;
    bottom:-2vw;
}
main .indexBottles > a:hover > img{
    bottom: 1vw;
}
main .indexBottles > a:nth-child(1):hover,main .indexBottles > a:nth-child(1):hover > div,main .indexBottles > a:nth-child(1):hover > div:after{
    border-color: rgba(180,230,217,1);
}
main .indexBottles > a:nth-child(2):hover,main .indexBottles > a:nth-child(2):hover > div,main .indexBottles > a:nth-child(2):hover > div:after{
    border-color: rgba(189,221,235,1);
}
main .indexBottles > a:nth-child(3):hover,main .indexBottles > a:nth-child(3):hover > div,main .indexBottles > a:nth-child(3):hover > div:after{
    border-color: rgba(197,213,230,1);
}
main .indexBottles > a:nth-child(4):hover,main .indexBottles > a:nth-child(4):hover > div,main .indexBottles > a:nth-child(4):hover > div:after{
    border-color: rgba(199,233,206,1);
}
/* par akecva */
.par-highest-mountains.remove{
    opacity: 0;
}
/*
.par-middle-mountains.akecva{
    top:
}
*/
/* / par akecva */
.par-bottomScroll{
    width: 100%;
    height: 20px;
    background: #FFF;
    position: relative;
    z-index: 12;
}
body.otherPage .par-bottomScroll{
    position: absolute;
    bottom: 0;
}
.par-bottomScroll > img{
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.par-bottomScroll > .par-bottScr-title{
    height: 40px;
    position: absolute;
    top: -37px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.par-bottomScroll > .par-bottScr-title > div{
    display:flex;
    flex-shrink: 0;
    justify-content: center;
}
.par-bottomScroll > .par-bottScr-title > img{
    width: 12px;
    flex-shrink: 0;
    position: absolute;
    z-index: 10;
    transition: 0.2s;
    opacity: 1;
    animation: scrollHop 0.5s linear infinite;
}
.par-bottomScroll > .par-bottScr-title:hover img{
    animation: scrollHop2 0.8s infinite;
}
body.otherPage .par-bottomScroll > .par-bottScr-title > img{
    display: none;
    animation: none;
}
.par-bottomScroll > .par-bottScr-title > div > div:nth-child(1){
    width: 60px;
    height: 41px;
    background: url(../img/marjvniv_gawie.png) no-repeat;
    background-position: right bottom;
    transform: rotateY(180deg);
    margin-right: -3px;
    flex-grow:1;
    flex-shrink: 0;
}
.par-bottomScroll > .par-bottScr-title > div > div:nth-child(2){
    width: 0;
    background: #FFF;
    font: normal 18px bpg_web_002_caps;
    display: flex;
    text-transform: capitalize;
    color:#FFF;
    position: relative;
    z-index: 3;
    overflow: hidden;
}
body.otherPage .par-bottomScroll > .par-bottScr-title > div > div:nth-child(2){
    width: auto;
    color: #808080;
}
.par-bottomScroll > .par-bottScr-title > div > div:nth-child(2) > div{
    flex-shrink: 0;
    transition: color 0.3s ease-out;
    padding-top:14px;
}
.par-bottomScroll > .par-bottScr-title > div > div:nth-child(3){
    width: 60px;
    height: 41px;
    background: url(../img/marjvniv_gawie.png) no-repeat;
    background-position: right bottom;
    margin-left: -3px;
    position: relative;
    flex-grow:1;
    flex-shrink: 0;
}
.topMenu{
    top:45px;
    z-index: 15;
    display: flex;
    width: 100%;
    align-items: center;
}
body.index .topMenu{
    position: absolute;
}
body.otherPage header{
    background: url(../img/otherpage-sky.jpg) no-repeat;
    background-size: cover;
    background-position: center bottom;
    height: 180px;
    z-index: 10;
}
body.otherPage main{
}
body.otherPage footer{
}
body.otherPage .topMenu{
    position: relative;
    top: 40px;
}
.topMenu > div:nth-child(1),.topMenu > div:nth-child(3){
    flex-grow: 1;
    height: 2px;
    background-color: #FFF;
    position: relative;
}
.topMenu > div:nth-child(2){
    width: 70%;
    max-width: 1200px;
    flex-shrink: 0;
    position: relative;
}
.topMenu > div > ul{
    display: flex;
    list-style: none;
    flex-shrink: 0;
    align-items: center;
}
.topMenu > div > ul > li{
/*    flex-grow: 1;*/
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    width: 14.29%;
}
.topMenu > div > ul > li:nth-child(4){
    top: -20px;
}
.topMenu > div > ul > li:nth-child(1):after,
.topMenu > div > ul > li:nth-child(4):after,
.topMenu > div > ul > li:nth-child(5):after{
    display: none;
}
.topMenu > div > ul > li:nth-child(5){
    width: 12.29%;
}
.topMenu > div > ul > li:nth-child(6){
    width: 12.29%;
}
.topMenu > div > ul > li:nth-child(7){
    width: 18.29%;
}
.topMenu > div > ul > li:after{
    content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    left: 0;
    background: #fff;
    border-radius: 50%;
}
.topMenu > div > ul > li > a{
    text-decoration: none;
    text-transform: capitalize;
    font:normal 17px bpg_web_002_caps;
    color: #FFF;
    display: block;
    position: relative;
}
.topMenu > div > ul > li > a:after{
    content: '';
    width: 0%;
    height: 2px;
    background: #FFF;
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: 0.3s cubic-bezier(0, 0, 0.01, 0.83);
}
.topMenu > div > ul > li:hover > a:after{
    width: 40%;
}
.topMenu > div > ul > li:nth-child(4) > a:after{
    display: none;
}
.topMenu > div > ul > li > a > img{
    width: 120px;
}
/*
.langBox {
    position: absolute;
    top: -9px;
    left: 0;
}
.langBox > a{
    background: #FFF;
    text-decoration: none;
    padding: 7px 7px;
    font: normal 12px KeepCalm-Medium;
    text-transform: uppercase;
    color: rgba(25,116,151);
}
*/
.langBox{
    position: absolute;
    transform-style: preserve-3d;
    perspective: 400px;
    top: -14px;
    left: 0;
}
.langBoxIn{
    position: relative;
    width: 30px;
    height: 30px;
    color: rgba(255,255,255,0.8);
    font: normal 15px sans-serif;
    text-transform: uppercase;
    transform-style: preserve-3d;
    perspective: 400px;
    transition: 0.2s;
}
.langBoxIn div{
    width: 30px;
    height: 30px;
    position: absolute;
    transition: 0.2s ease-out;
    transform-style: preserve-3d;
    perspective: 400px;
    background: #FFF;
}
.langBoxIn div a{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #444;
}
.langBoxIn > div.front{
    color: rgba(25,116,151);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.langBoxIn > div.bottom1{
    transform-origin: bottom;
    transform: rotateX(270deg) translate3d(0px,30px,0px);
}
.langBoxIn:hover > div.bottom1{
    transform: rotateX(360deg) translate3d(0px,30px,0px);
}
.langBoxIn div.bottom2{
    transform-origin: top;
    transform: rotateX(-90deg) translate3d(0px,0px,0px);
    transition: 0.2s 0.2s ease-out;
}
.langBoxIn:hover div.bottom2{
    transition-delay: transform 0s;
    transform: rotateX(0deg) translate3d(0px,-1px,0px);
    opacity: 1;
    border-top: 1px solid #eee;
}


main .halfSlider{
    width: 100%;
    overflow: hidden;
    position: relative;
}
main .halfSlider > .lift{
    width: 100%;
    position: absolute;
    top:0%;
    transition: 0.7s cubic-bezier(0, 0, 0, 0.79);
}
main .halfSlider > .lift > div{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font: bold 40px sans-serif;
}
main .halfSlider .aboutUs{
    display: flex;
    width: 100%;
    height: 100%;
}
main .halfSlider .aboutUs > img{
    width: 50%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}
main .halfSlider .aboutUs > div{
    padding: 10px 3% 10px 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    top: 15%;
    opacity: 0;
    transition: 0.7s 0.2s ease-out;
}
main .halfSlider > .lift > div.active .aboutUs > div{
    top: 0%;
    opacity: 1;
}
main .halfSlider .aboutUs > div > p{
    font-size: 18px;
    font-weight: normal;
    margin-top: 20px;
    color: #004e32;
    text-align: justify;
}
.aboutUsBtn{
    display: inline-block;
    font: normal 25px bpg_web_002_caps;
    text-transform: capitalize;
    border: 2px solid #df3432;
    border-radius: 20px;
    background: transparent;
    color: #df3432;
    outline: none;
    padding: 5px 15px;
    flex-shrink: 0;
}
main .halfSlider > .lift > div:nth-child(even) .aboutUs{
    flex-direction: row-reverse;
}
main .ourBrand{
}
main .ourBrand .anime_bottles{
    width: calc( 100vw - 100px );
    height: calc( 100vh - 180px );
    position: relative;
    display: block;
    margin: 0 auto;
    justify-content: space-around;
    align-items: flex-end;
}
main .ourBrand .anime_bottles > img{
    max-height: 80%;
    position: absolute;
    bottom: 10%;
    opacity: 0;
    transition: 0.8s ease-out;
}
main .ourBrand .anime_bottles > img:nth-child(1){
    z-index: 6;
    opacity: 1;
}
main .ourBrand .anime_bottles > img:nth-child(2){
    z-index: 5;
}
main .ourBrand .anime_bottles > img:nth-child(3){
    z-index: 4;
}
main .ourBrand .anime_bottles > img:nth-child(4){
    z-index: 3;
}
main .ourBrand .anime_bottles > img:nth-child(5){
    z-index: 2;
}
main .ourBrand .anime_bottles > img:nth-child(6){
    z-index: 1;
}
main .ourBrand .leftLine{
    position: absolute;
    top:5vh;
    left: 50%;
    transform: translateX(-50%);
    font: normal 15px bpg_web_002_caps;
    text-transform: capitalize;
    color: #e53138;
    padding-left: 10px;
}
main .ourBrand .leftLine:before{
    content: "";
    width: 3px;
    height: 50%;
    background: #e53138;
    position: absolute;
    left: -3px;
}
main .ourBrand .mainContent{
    width: 80%;
    position: relative;
    margin: 40px auto 40px auto;
}
main .ourBrand .mainContent > div{
    width: 90%;
    display: flex;
    align-items: flex-start;
    background: rgba(255,255,255,0.45);
    margin-left: auto;
    padding: 70px 30px 50px 0;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
}
main .ourBrand .mainContent > div > .halfCircle{
    position: absolute;
    width: 15vw;
    height: 15vw;
    right: 0;
    bottom: 0;
    background: rgba(134,226,208,0.7);
    border-radius: 100% 0 0 0;
    z-index: -1;
}
main .ourBrand .mainContent > div img{
    width: 40%;
    margin-left:-11.4%;
    margin-right: 50px;
}
main .ourBrand .mainContent > div > div{
    /*font: normal 18px bpg_web_002_caps;*/
    font-size: 18px;
    font-weight: normal;
    color: #004b31;
    text-align: justify;
    line-height: 30px;
    padding-top: 30px;
}
main .ourBrand .mainContent ul{
    margin: 1em 0;
    padding-left: 40px;
}
main .ourBrand .mainContent li{
    margin: 1em 0;
/*    padding-left: 40px;*/
}
main .ourBrand .shemadgenloba{
    display: flex;
    width: 70%;
    height: 550px;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin: 80px auto 30px auto;
}
main .ourBrand .bigBottles{
    display: flex;
    width: 60%;
    height: 800px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 50px auto 50px auto;
}
main .ourBrand .bigBottles img{
    height: 100%;
}
main .ourBrand .shemadgenloba .item{
    width: 200px;
    height: 200px;
    background: #e53138;
    border-radius: 50%;
    position: relative;
    font-family: bpg_web_002_caps;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 10;
    transition: 0.3s ease-out;
    cursor: pointer;
    flex-shrink: 0;
}
main .ourBrand .shemadgenloba .item:hover{
    transform: scale(1.1);
}
main .ourBrand .shemadgenloba .item > .description{
    position: absolute;
    display: none;
}
.popupBox{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(255,255,255,0.5);
    top:0;
    left:0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-out;
}
.popupBox > .popup{
    position: relative;
    border-radius: 50%;
    transition: 0.3s ease-out;
    color: transparent;
    overflow-y: auto;
    font: normal 18px bpg_web_002_caps;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}
.popupBox > .popup > .title{
    font-size: 24px;
    text-transform: capitalize;
}
.popupBox > .popup > .title:after{
    content: '';
    width: 0%;
    height: 2px;
    background: #FFF;
    position: absolute;
    top: 65px;
    left: 20px;
}
.popupBox > .popup > .title.active:after{
    transition: 0.3s ease-out;
    width: 30%;
}
.popupBox > .popup::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.popupBox > .popup::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.5); 
}
 
/* Handle */
.popupBox > .popup::-webkit-scrollbar-thumb {
    background: #888; 
}

/* Handle on hover */
.popupBox > .popup::-webkit-scrollbar-thumb:hover {
    background: #555; 
}
.popupBox.active{
    visibility: visible;
    z-index: 500;
    opacity: 1;
}
main .ourBrand .shemadgenloba .item:nth-child(1){
    width: 250px;
    height: 250px;
    top:0px;
    left:0px;
}
main .ourBrand .shemadgenloba .item:nth-child(1) .title{
    width: 70px;
    height: 70px;
    background-image: url(../img/check.png);
    background-position: center center;
    background-repeat: no-repeat;
    background: #0a8c63;
}
main .ourBrand .shemadgenloba .item:nth-child(1) .count{
    font-size: 30px;
}
main .ourBrand .shemadgenloba .item:nth-child(2){
    top:100px;
    left:0px;
}
main .ourBrand .shemadgenloba .item:nth-child(3){
    top:200px;
    left:0px;
}
main .ourBrand .shemadgenloba .item:nth-child(4){
    top:30px;
    left:0px;
}
main .ourBrand .shemadgenloba .item .title{
    position: absolute;
    width: 50px;
    height: 50px;
    background: #a81117;
    border-radius: 50%;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top:0;
}
main .ourBrand .shemadgenloba .item .title sup,
main .ourBrand .shemadgenloba .item .title sub{
    font-size: 10px;
}
main .ourBrand .shemadgenloba .item .count{
    font-size: 40px;
}
main .ourBrand .shemadgenloba .item .subTitle{
    font-size: 20px;
    text-transform: capitalize;
    opacity: 0.9;
}
main .ourBrand .shemadgenloba .desc{
    border-left: 3px solid #a81117;
    color: #e53138;
    padding: 10px 0 10px 20px;
    font: normal 20px bpg_web_002_caps;
    position: absolute;
    bottom: 0;
    left: 150px;
    text-transform: capitalize;
    z-index: 10;
    line-height: 30px;
}
main .ourBrand > .circle{
    width: 250px;
    height: 800px;
    position: absolute;
    right: 0%;
    top: 50vh;
    overflow: hidden;
}
main .ourBrand > .circle > div{
    width: 800px;
    height: 800px;
    position: relative;
    box-shadow:inset 0 0 0 300px rgba(134,226,208,0.5);
    border-radius: 50%;
    left: 0;
}

main .ourBrand .mainContent > div .circle{
    width: 1200px;
    height: 1200px;
    position: absolute;
    box-shadow:inset 0 0 0 300px rgba(134,226,208,0.5);
    border-radius: 50%;
    right: 80%;
    top: 75%;
}
main .ourBrand .awards_certificate{
    width: 60%;
    margin: 0px auto 0px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
main .ourBrand .awards_certificate > div:nth-child(1){
    width: 500px;
}
main .ourBrand .awards_certificate > div:nth-child(2){
/*    width: 70%;*/
}
main .ourBrand .awards_certificate h2{
    font: bold 35px bpg_web_002_caps;
    color: #e53138;
    text-transform: capitalize;
}
main .ourBrand .awards_certificate p{
    font: normal 17px bpg_web_002_caps;
    color: #004b31;
    margin-top: 10px;
    text-indent: 20px;
    text-align: justify;
}
main .ourBrand .awards_certificate .imgs{
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
main .ourBrand .awards_certificate img{
    width: 300px;
}
main .ourBrand .awards_certificate a.btn{
    color: #e53138;
    display: flex;
    align-items: center;
    font: normal 17px bpg_web_002_caps;
    text-transform: capitalize;
    text-decoration: none;
    justify-content: flex-end;
}
main .ourBrand .awards_certificate a.btn > div{
    width: 30px;
    height: 30px;
    border:2px solid #e53138;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}
main .ourBrand .awards_certificate a.btn > div:after{
    content: '';
    width: 25%;
    height: 25%;
    border-top: 3px solid #e53138;
    border-right: 3px solid #e53138;
    position: absolute;
    margin-left: -5%;
    transform: rotate(45deg);
}
main .ourBrand .brandcontact{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url(../img/brandContact.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    font: normal 17px bpg_web_002_caps;
    color: #004b31;
    text-align: right;
    padding: 30px 0;
    margin-bottom: 100px;
}
main .ourBrand .brandcontact a.btn{
    color: #e53138;
    display: flex;
    align-items: center;
    font: normal 17px bpg_web_002_caps;
    text-transform: capitalize;
    text-decoration: none;
    justify-content: flex-end;
    margin-right: -40px;
    margin-top: 10px;
}
main .ourBrand .brandcontact a.btn > div{
    width: 30px;
    height: 30px;
    border:2px solid #e53138;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}
main .ourBrand .brandcontact a.btn > div:after{
    content: '';
    width: 25%;
    height: 25%;
    border-top: 3px solid #e53138;
    border-right: 3px solid #e53138;
    position: absolute;
    margin-left: -5%;
    transform: rotate(45deg);
}
footer.ourbrand:before{
    display: none;
}
footer.ourbrand:after{
    display: none;
}
footer > img.ourbrand{
    position: absolute;
    bottom: 0;
    height: 1000px;
}

main .export{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
main .export .content{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    padding: 0 20px 20px 20px;
}
main .export .content > img{
    width: 50%;
}
main .export .content > div{
    font: normal 16px bpg_web_002_caps;
    width: 25vw;
    width: 50%;
    color: #004b31;
    text-align: justify;
    line-height: 23px;
    padding-left: 50px;
}
main .export .content > div > .text{
    margin-top: 20px;
}
.hr{
    width: 100%;
    height: 2px;
    background: #e53138;
    position: relative;
    margin: 20px 0;
    z-index: 2;
}
.hr:after{
    content: '';
    width: 55px;
    height: 6px;
    background: inherit;
    position: absolute;
    top:-2px;
    left: 50%;
    transform: translateX(-50%);
}
footer{
    position: relative;
    padding-bottom: 50px;
}
footer:before{
    content: '';
    width: 20vw;
    height: 40vw;
    position: absolute;
    top:-20vw;
    left:0vw;
    background: url(../img/circle.png) no-repeat;
    background-size: 40vw 40vw;
    background-position: right 0;
    z-index: 0;
}
footer:after{
    content: '';
    width: 10vw;
    height: 40vw;
    position: absolute;
    top:-25vw;
    right:0vw;
    background: url(../img/circle.png) no-repeat;
    background-size: 40vw 40vw;
    background-position: left 0;
}
footer > .content{
    width: 100%;
    height: 100%;
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: space-around;
    padding-top: 40px;
}
footer > .content > .LTD{
    font: normal 17px bpg_web_002_caps;
    color: #004b31;
    text-transform: capitalize;
}
footer > .content > ul{
    list-style: none;
    margin: 0 30px;
}
footer > .content > ul a{
    text-decoration: none;
    font: normal 15px bpg_web_002_caps;
    color: #004b31;
    text-transform: capitalize;
}
footer > .content > ul > li:first-child{
    font: normal 18px bpg_web_002_caps;
    text-transform: capitalize;
    color: #e43038;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
    margin-top: 0px;
}
footer > .content > ul > li:first-child:after{
    content: '';
    width: 40px;
    height: 2px;
    background: #e43038;
    position: absolute;
    bottom: 0;
    left: 0;
}
footer > .content > ul > li{
    margin: 15px 0;
}
main .contact{
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
main .contact .content{
    display: flex;
    margin: 0 20px;
}
main .contact .content > div > h2{
    color: #e43038;
    font: normal 20px bpg_web_002_caps;
    text-transform: uppercase;
    margin: 20px 0 10px 20px;
}
main .contact .content > div > h3{
    color: #e43038;
    font: normal 17px bpg_web_002_caps;
    text-transform: uppercase;
    margin: 40px 0 10px 20px;
}
main .contact .content > form{
    margin-left: 40px;
}
.cont_info{
    font: normal 15px bpg_web_002_caps;
    color: #004b31;
    margin: 20px 0;
    display: flex;
    align-items: center;
}
.cont_info img{
    max-width: 20px;
    max-height: 20px;
    margin-right: 20px;
}
.form_items{
    display: flex;
    flex-direction: column;
    margin: 20px 0 0 0;
    width: 300px;
    position: relative;
}
.form_items label{
    text-transform: capitalize;
    font: normal 13px bpg_web_002_caps;
    margin-left: 20px;
    color: #004b31;
}
.form_items input{
    border: 1px solid #e43038;
    outline: none;
    border-radius: 17px;
    padding: 10px;
}
.form_items textarea{
    width: 100%;
    height: 150px;
    border: 1px solid #e43038;
    outline: none;
    border-radius: 17px;
    padding: 10px 10px 40px 10px;
    resize: none
}
.form_btn{
    width: 110px;
    text-align: right;
    background:#e43038  url(../img/flySend.png) no-repeat;
    background-size: 15px 15px;
    background-position: 9px center;
    border:none;
    outline: none;
    padding: 5px 15px 5px 60px;
    border-radius: 20px;
    position: absolute;
    right: 0;
    bottom:0;
    flex-shrink: 0;
    color: #FFF;
    font: normal 13px bpg_web_002_caps;
    text-transform: capitalize;
    cursor: pointer;
}
.indexInfo{
    width: 70%;
    max-width: 1200px;
    position: fixed;
    z-index: 10;
    height: calc( 100vh - 350px );
    top:50%;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: bpg_web_002_caps;
    color: #FFF;
    text-transform: capitalize;
    text-align: justify;
}
.indexInfo > div:nth-child(1), .indexInfo > div:nth-child(3){
    align-self: flex-start;
    margin-top: 5vh;
}
.indexInfo > div:nth-child(3){
    margin-top: 9vh;
}
.indexInfo > div:nth-child(2){
    
}
.indexInfo .indexSocials{
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    margin-bottom: 10px;
}
.indexInfo .indexSocials.fb{
    background-image: url(../img/fb.png);
}
.indexInfo .indexSocials.youtube{
    background-image: url(../img/youtube.png);
}
.indexInfo .indexSocials.email{
    background-image: url(../img/email.png);
}
.indexInfo .copyright{
    font-size: 15px;
    writing-mode: vertical-rl;
    display: block;
    transform: rotate(-180deg);
}
.indexInfo h1{
    font: normal 40px KeepCalm-Medium;
    letter-spacing: 5px;
}
.indexInfo .indexCont{
    display: flex;
    max-width: 650px;
}
.indexInfo .indexCont .text{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.indexInfo .indexCont .year{
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    transform-origin: center center;
    letter-spacing: 30px;
    font-size: 30px;
    margin-right: 30px;
    position: relative;
    width: 60px;
    flex-shrink: 0;
}
.indexInfo .indexCont .year:after{
    content: "";
    height: 40%;
    width: 5px;
    background: #FFF;
    position: absolute;
    left: 0;
    bottom:30px;
}
#map{
    width: 100%;
    height: 200px;
    margin: 50px 0 80px 0;
    border-top:1px solid #e43038;
    border-bottom:1px solid #e43038;
    z-index: 10;
    background: url( /images/location_sairme.jpg ) no-repeat;
    background-size: cover;
    background-position: center center;
}

/* nakaduli */
body.nakaduli .hr{
    background: #00a0e3;
}
body.nakaduli main .ourBrand .leftLine{
    color: #00a0e3;
}
body.nakaduli main .ourBrand .leftLine:before{
    background: #00a0e3;
}
body.nakaduli main .ourBrand > .circle > div{
    box-shadow: inset 0 0 0 300px rgba(20,102,173,0.15);
}
body.nakaduli main .ourBrand .mainContent > div .circle{
    box-shadow: inset 0 0 0 300px rgba(20,102,173,0.15);
}
body.nakaduli main .ourBrand .mainContent > div > .halfCircle{
    background: rgba(20,102,173,0.25);
}
body.nakaduli main .ourBrand .mainContent > div > div{
    color: #014f92;
}
body.nakaduli main .ourBrand .shemadgenloba .item{
    background: #1466ad;
}
body.nakaduli main .ourBrand .shemadgenloba .item .title{
    background: #014f92;
}
body.nakaduli main .ourBrand .shemadgenloba .desc{
    color: #00a0e3;
    border-left-color: #00a0e3;
}
body.nakaduli main .ourBrand .brandcontact{
    background-image: url(../img/blue-brandContact.jpg);
    color: #014f92;
}
body.nakaduli main .ourBrand .brandcontact a.btn{
    color: #00a0e3;
}
body.nakaduli main .ourBrand .brandcontact a.btn > div{
    border-color: #00a0e3;
}
body.nakaduli main .ourBrand .brandcontact a.btn > div:after{
    border-top-color: #00a0e3;
    border-right-color: #00a0e3;
}
body.nakaduli footer > .content > .LTD{
    color: #014f92;
}
body.nakaduli footer > .content > ul > li:first-child{
    color: #00a0e3;
}
body.nakaduli footer > .content > ul > li:first-child:after{
    background: #00a0e3;
}
body.nakaduli footer > .content > ul a{
    color: #014f92;
}
body.nakaduli .par-bottomScroll > .par-bottScr-title > div > div:nth-child(2){
    color: #014f92;
}
body.nakaduli main .ourBrand .mainContent > div img{
    width: auto;
    height: 500px;
}

/* spring sairme */
body.springSairme .hr{
    background: #00a0e3;
}
body.springSairme main .ourBrand .leftLine{
    color: #00a0e3;
}
body.springSairme main .ourBrand .leftLine:before{
    background: #00a0e3;
}
body.springSairme main .ourBrand > .circle > div{
    box-shadow: inset 0 0 0 300px rgba(20,102,173,0.15);
}
body.springSairme main .ourBrand .mainContent > div .circle{
    box-shadow: inset 0 0 0 300px rgba(20,102,173,0.15);
    top: 50%;
}
body.springSairme main .ourBrand .mainContent > div > .halfCircle{
    background: rgba(20,102,173,0.25);
}
body.springSairme main .ourBrand .mainContent > div > div{
    color: #014f92;
}
body.springSairme main .ourBrand .shemadgenloba .item{
    background: #1466ad;
}
body.springSairme main .ourBrand .shemadgenloba .item .title{
    background: #014f92;
}
body.springSairme main .ourBrand .shemadgenloba .desc{
    color: #00a0e3;
    border-left-color: #00a0e3;
}
body.springSairme main .ourBrand .brandcontact{
    background-image: url(../img/blue-brandContact.jpg);
    color: #014f92;
}
body.springSairme main .ourBrand .brandcontact a.btn{
    color: #00a0e3;
}
body.springSairme main .ourBrand .brandcontact a.btn > div{
    border-color: #00a0e3;
}
body.springSairme main .ourBrand .brandcontact a.btn > div:after{
    border-top-color: #00a0e3;
    border-right-color: #00a0e3;
}
body.springSairme footer > .content > .LTD{
    color: #014f92;
}
body.springSairme footer > .content > ul > li:first-child{
    color: #00a0e3;
}
body.springSairme footer > .content > ul > li:first-child:after{
    background: #00a0e3;
}
body.springSairme footer > .content > ul a{
    color: #014f92;
}
body.springSairme .par-bottomScroll > .par-bottScr-title > div > div:nth-child(2){
    color: #014f92;
}
body.springSairme main .ourBrand .mainContent > div img{
    width: auto;
    height: 650px;
}
/* lemonade tbilisuri */
body.tbilisuri main .ourBrand .mainContent > div .circle{
    width: 700px;
    height: 700px;
    box-shadow: inset 0 0 0 150px rgba(208,211,192,0.4);
}
body.tbilisuri main .ourBrand .mainContent{
    margin-bottom: 100px;
}
body.tbilisuri main .ourBrand .brandcontact{
    margin-top: 100px;
}
body.tbilisuri main .ourBrand > .circle > div{
    box-shadow: inset 0 0 0 300px rgba(208,211,192,0.4);
}
body.tbilisuri main .ourBrand .mainContent > div > .halfCircle{
    background: rgba(208,211,192,0.4);
}
body.tbilisuri footer > img.ourbrand{
    height: 600px;
}
body.tbilisuri .fotlebi{
    width: 100%;
    height: calc( 100vh - 180px );
    position: absolute;
    top:0;
    left:0;
    background: url(/img/tbilisuri_fotlebi.png) no-repeat;
    background-size: cover;
    background-position: center center;
}
body.tbilisuri .par-bottomScroll > .par-bottScr-title > div > div:nth-child(2){
    color: #ac1d23;
}
body.tbilisuri main .ourBrand .leftLine{
    display: none;
}


.topMenuResp{
    position: absolute;
    z-index: 15;
    width: 100%;
    display: none;
    height: 50px;
}
.topMenuResp > .logo{
    position: absolute;
    left: 20px;
    top: 20px;
}
.topMenuResp > .logo > img{
    width: 80px;
}
.topMenuResp > .burgerMenu{
    position: absolute;
    left: calc( 100% - 70px );
    top: 20px;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s ease-out;
}
.topMenuResp > .burgerMenu > ul{
    width: 50px;
    height: 50px;
    list-style: none;
}
.topMenuResp > .burgerMenu > ul > li{
    width: 30px;
    height: 2px;
    background: #FFF;
    position: absolute;
    left: 10px;
    transition:all 0.3s 0.3s ease-out,background 0s;
}
.topMenuResp > .burgerMenu > ul > li:nth-child(1){
    top: 14px;
    transform-origin: 0 0;
}
.topMenuResp > .burgerMenu > ul > li:nth-child(2){
    top: 23px;
    opacity: 1;
}
.topMenuResp > .burgerMenu > ul > li:nth-child(3){
    top: 32px;
    transform-origin: 4px 3px;
}
.topMenuResp > .resMenuBox{
    width: 100%;
    height: 100vh;
    background: #FFF;
    position: fixed;
    top:0;
    left:100%;
    z-index: 2;
    transition: 0.3s ease-out;
}
.topMenuResp > .resMenuBox > ul{
    list-style: none;
    margin: 20px 0 20px 30px;
    overflow-y: auto;
    height: 100%;
    position: relative;
    left: 25%;
    opacity: 0;
    transition: 0.3s 0.4s ease-out;
}
.topMenuResp > .resMenuBox > ul > li{
    height: 40px;
    display: flex;
    align-items: center;
}
.topMenuResp > .resMenuBox > ul > li > a{
    text-decoration: none;
    color: #444;
    font: normal 25px bpg_web_002_caps;
    text-transform: capitalize;
}
.topMenuResp .langBox{
    right: 29px;
    left: initial;
    top: 70px;
}
/* responsive menu active */

.topMenuResp.active > .resMenuBox{
    left:0%;
}
.topMenuResp.active > .burgerMenu{
    left: 20px;
}
.topMenuResp.active > .resMenuBox > ul{
    margin-left: 90px;
    opacity: 1;
    left: 0;
}
.topMenuResp.active > .burgerMenu > ul > li{
    background: #000;
}
.topMenuResp.active > .burgerMenu > ul > li:nth-child(1){
    transform: rotate(45deg);
}
.topMenuResp.active > .burgerMenu > ul > li:nth-child(2){
    opacity: 0;
    left: 15px;
    width: 0px;
}
.topMenuResp.active > .burgerMenu > ul > li:nth-child(3){
    transform: rotate(-45deg);
}
/* \ responsive menu active */


main > .newsPage{
    display: grid;
    grid-template-columns: repeat(4,25%);
}
main > .newsPage > .newsBox{
    height: calc( 100vh - 200px );
    min-height: 300px;
    position: relative;
    overflow: hidden;
}
main > .newsPage > .newsBox > img{
    width: 100%;
    height: calc( 100% + 30px );
    object-fit: cover;
    object-position: center;
    position: relative;
    top:-30px;
    transition: 0.3s ease-out;
}
main > .newsPage > .newsBox > .shadow{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    top:0;
    left:0;
    transition: 0.3s ease-out;
}
main > .newsPage > .newsBox > h3{
    position: absolute;
    left: 20px;
    bottom: 10%;
    font: normal 40px bpg_web_002_caps;
    color: #FFF;
    text-transform: capitalize;
    z-index: 3;
    transition: 0.3s ease-out;
}
main > .newsPage > .newsBox:hover > .shadow{
    background: rgba(0,0,0,0.3);
}
main > .newsPage > .newsBox:hover > img{
    top: 0px;
}
main > .newsPage > .newsBox:hover > h3{
    bottom: 14%;
}
main > .innerPage{
    width: 70%;
    padding: 20px;
    /*font: normal 17px bpg_web_002_caps;*/
    font-size: 17px;
    font-weight: normal;
    text-align: justify;
    margin: 30px auto;
    display: flex;
    align-items: flex-start;
    color: #004b31;
    line-height: 23px;
}
main > .innerPage > img{
    max-width: 50%;
    margin: -20px 40px 20px 0;
    object-fit: cover;
    width: 730px;
    height: 800px
}
body.newgreen main .ourBrand .shemadgenloba .item:nth-child(1){
    background: #0a8c63;
}
body.newgreen main .ourBrand .shemadgenloba .item:nth-child(1) .title{
    background-image: url(../img/check.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #036647;
    color: transparent;
}
main .ourBrand .anime_bottles.resp{
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
}
main .ourBrand .anime_bottles.resp > img{
    position: relative;
    opacity: 1;
    flex-shrink: 0;
    margin: 0 20px;
}
body.noHalfSlider main .halfSlider{
    overflow: visible;
}
body.noHalfSlider main .halfSlider > .lift > div{
/*    align-items: stretch;*/
}
body.noHalfSlider main .halfSlider .aboutUs{
    flex-direction: column;
    margin: 0 0 20px 0;
}
body.noHalfSlider main .halfSlider > .lift > div:nth-child(even) .aboutUs{
    flex-direction: column!important;
}
body.noHalfSlider main .halfSlider .aboutUs > div{
    opacity: 1;
}
body.noHalfSlider main .halfSlider .aboutUs > img{
    width: 100%;
    max-height: 300px;
}
body.noHalfSlider header{
    position: fixed;
    z-index: 10;
    width: 100%;
}
body.noHalfSlider main{
    top: 140px;
}
main .premium .content{
    display: flex;
    align-items: center
}
main .premium .content .text{
    padding-left: 0;
    padding-right: 50px;
    width: 45%;
    margin-left: auto;
    font: normal 17px bpg_web_002_caps;
    color: #004e32;
    text-align: justify;
}
main .premium .content > img{
    width: 50%;
    min-height: calc( 100vh - 130px );
    object-fit: cover;
    object-position: left;
}
.certPopup{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba( 255,255,255,0 );
    visibility: hidden;
    z-index: -10;
    transition: 0.3s ease-out;
}
.certPopup.active{
    z-index: 999;
    visibility: visible;
    background-color: rgba( 255,255,255,0.5 );
}
.certPopup > .cartPopIn{
    background: #e53138;
    opacity: 0;
    position: relative;
    border-radius: 50%;
    color: rgba(255,255,255,0);
    font: normal 17px bpg_web_002_caps;
    overflow-y: auto;
}
.certPopup.active > .cartPopIn{
    opacity: 1;
    width: 50%;
    height: 50%;
}
.certPopup > .cartPopIn::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.certPopup > .cartPopIn::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.5); 
}
 
/* Handle */
.certPopup > .cartPopIn::-webkit-scrollbar-thumb {
    background: #888; 
}

/* Handle on hover */
.certPopup > .cartPopIn::-webkit-scrollbar-thumb:hover {
    background: #555; 
}
main .ourBrand .anime_bottles > img.premium{
    cursor: pointer;
}







@keyframes scrollHop {
    0%{
        top:12px;
    }
    50%{
        top:18px;
    }
    100%{
        top: 12px;
    }
}
@keyframes scrollHop2 {
    0%{
        top:14px;
        opacity:1
    }
    50%{
        top:35px;
        opacity:0
    }
    51%{
        top:-68px;
        opacity:0
    }
    72%{
        opacity: 0;
    }
    100%{
        top:14px;
        opacity:1
    }
}