
.wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

body {
    font: normal normal normal 15px/24px Montserrat;
    padding: 0;
    margin: 0;
}

p{
    text-align: justify;
}

:root {
  --darkgreen:#014B00;
  --lightgreen:#00A10A;
}

a:hover{
    text-decoration: none;
}   

.menutriggeropen{
    cursor: pointer;
}

.certidicateslideritem {
    width: 25%;
}

div#loader-wrapper {
    position:fixed;
    background: #fff;
    height: 100vh;
    width: 100%;
    z-index: 999999999999999999;
    text-align: center;
}


.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}

header.header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9999;
}

.headercontainer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding:15px 2%;
}

.logobox{
    max-width:184px;
    padding:1.3% 0px;
}

.normalpage .header.fixed-head .logobox{
    padding:1% 0px;
}

.menuclose{
    pointer-events: none;
    cursor: pointer;
}

.menu-container{
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height: 100vh;
    z-index: 99999;
}

.menu-container .menuoverlay{
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height: 100vh;
    z-index: 99999;
    background:rgba(0,0,0,0.6);
}

.menu-container .menubox{
    position:fixed;
    top:0px;
    left:auto;
    right:0px;
    width:56%;
    height: 100vh;
    z-index: 999999;
    background:#fff;
    padding:40px;
}

.menuopen{
    height:20.5px;
    width:20.5px;
    margin:auto;
    margin-right:0px;
    position:relative;
}

.menuopen span{
    position: absolute;
    top:50%;
    left:50%;
    height: 2px;
    width:100%;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform:translate(-50% , -50%) rotate(45deg);
        -ms-transform:translate(-50% , -50%) rotate(45deg);
            transform:translate(-50% , -50%) rotate(45deg);
    cursor:pointer;
    background:#000;
}

.menuopen span:first-child{  -webkit-transform:translate(-50% , -50%) rotate(45deg);  -ms-transform:translate(-50% , -50%) rotate(45deg);  transform:translate(-50% , -50%) rotate(45deg); }
.menuopen span:last-child{  -webkit-transform:translate(-50% , -50%) rotate(-45deg);  -ms-transform:translate(-50% , -50%) rotate(-45deg);  transform:translate(-50% , -50%) rotate(-45deg); }

.menu-container{
    display: none;
}

.menuheader{
    text-align: left;
    font: normal normal normal 18px/36px Montserrat;
    letter-spacing: 0px;
    color: #262626;
    opacity: 0.61;
}

.menulist{
    padding:4% 0px;
}

.menulist ul{
    list-style: none;
    position: relative;
}

.menulist{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width:100%;
}

.menulistbox{
    width:47%;
    border-right:1px solid #707070;
}

.menulistbox:last-child{
    border-right:1px solid #fff0;
}

.menulist .menulink{
    text-align: left;
    font: normal normal bold 18px/30px Montserrat;
    letter-spacing: 0px;
    color: #262626;
    text-transform: uppercase;
    opacity: 1;
    display: block;
    position: relative;
    z-index: 999;
    padding:15px 0px;
    padding-left:10px;
}

.menulist ul li{
    position:relative;
    overflow: hidden;
    margin-bottom:2px;
}

.menulist ul li:before{
    content:'';
    position: absolute;
    top:100%;
    left:0%;
    width:100%;
    height: 100%;
    background:#f3f3f3;
    -webkit-transition:1s;
    -o-transition:1s;
    transition:1s;
}

.menulist ul li:hover:before{
    top:0px;
}

.sidebar{
    position:fixed;
    top:0px;
    right:0px;
    z-index:999;
    height: 100vh;
    width:5.7%;
    background:#EFEFEF;
}

.fp-viewing-Home .sidebar{
    background:#033d066b;
}

.hbitemboxinner{
    height: 100vh;
    width:100%;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#014B00), to(#00A10A));
    background: transparent -o-linear-gradient(top, #014B00 0%, #00A10A 100%);
    background: transparent linear-gradient(180deg, #014B00 0%, #00A10A 100%);
    opacity: 1;
}

.homebannerslide ul.slick-dots {
    bottom:20px;
}

.homebannerslide .slick-dots li button:before{
    content: '';
    height: 12px;
    width:12px;
    background:rgba(0,0,0,0.7);
    border-radius:50%;
}

.homebannerslide ul.slick-dots .slick-active{
    padding-right:100px;
    position: relative;
    -webkit-transition:0.5s;
    -o-transition:0.5s;
    transition:0.5s;
}

.homebannerslide ul.slick-dots .slick-active:after{
    content: '';
    position: absolute;
    top:30%;
    right:0px;
    width:78%;
    -webkit-transform:translateY(-50%);
        -ms-transform:translateY(-50%);
            transform:translateY(-50%);
    height:1px;
    background:#ffffff;
}

.homebannerslide ul.slick-dots.slick-active:last-child:after{
    display: none;
}

.homebannerslide ul.slick-dots .dot{
    -webkit-transition:0.5s;
    -o-transition:0.5s;
    transition:0.5s;
    text-align: left;
    font: normal normal normal 14px/18px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1; 
}

.homebannerslide .slick-dotted.slick-slider{
    margin-bottom: 0px;
}

.hbitemboxinner{
    position: relative;
    overflow: hidden;
}

.hbitemboxinner1 .circle{
    position: absolute;
    width: 243px;
    height: 243px;
    border-radius: 50%;
    top:15%;
    left:30%;
    mix-blend-mode: soft-light;
    border: 37px solid #FFFFFF;
    opacity: 0.29;
}


.hbitemboxinner2 .circle{
    position: absolute;
    width: 243px;
    height: 243px;
    border-radius: 50%;
    top:50%;
    left:50%;
    -webkit-transform: translate(-50% , -50%);
        -ms-transform: translate(-50% , -50%);
            transform: translate(-50% , -50%);
    mix-blend-mode: soft-light;
    border: 37px solid #FFFFFF;
    opacity: 0.29; 
}

.hbitemboxinner3 .circle{
   position: absolute;
   width: 300px;
   height: 300px;
   border-radius: 50%;
   top:80%;
   left:-5%;
   mix-blend-mode: soft-light;
   border: 37px solid #FFFFFF;
   opacity: 0.29;  
}

.hbitemboxinner4 .circle{
   position: absolute;
   width:350px;
   height:350px;
   border-radius: 50%;
   top:30%;
   right:-5%;
   mix-blend-mode: soft-light;
   border: 37px solid #FFFFFF;
   opacity: 0.29;  
}

.hbitemboxinner5 .circle{
   position: absolute;
   width:350px;
   height:350px;
   border-radius: 50%;
   top:70%;
   left:-5%;
   mix-blend-mode: soft-light;
   border: 37px solid #FFFFFF;
   opacity: 0.29;  
}

.sidebar{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding:20px 16px;
}

.socialbox {
    text-align: center;
}

.socialbox .social{
    display: block;
    margin:auto;
    margin-bottom: 13px;
}


.socialbox .social img{
    width:100%;
    -webkit-transition:0.5s;
    -o-transition:0.5s;
    transition:0.5s;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px!important;
}

.socialbox .social img:hover{
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
}

.socialline{
    height: calc(100vh - 55vh);
    background:#fff;
    width:1px;
    margin:3vh auto;
}

.logoimg{
    display: none;
}

.fp-viewing-Home .logoimg{
    display: block;
}

.fp-viewing-Home .colorlogoimg{
    display: none;
}

.fp-viewing-Home .menuclose svg .a{
  fill:#fff;  
}
.menuclose svg .a{
  fill:var(--darkgreen);  
}

.fp-viewing-Home .social svg .a{
  fill:#fff;  
}
.social svg .a{
  fill:#08860F;  
}

.fp-viewing-Home .socialline{
   background:#ffffff;
}

.socialline{
   background:#D9D9D9;
}

.globalelectralflexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 88%;
    margin:auto;
}

.globalelectralcard{
    width: 38%;
    position: relative;
}

.globalelectralcard .yellowdots{
    position: absolute;
    top:-30px;
    right:-45px;
}

.globalelectralcardinner{
    position: relative;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#008207), to(#004104));
    background: transparent -o-linear-gradient(top, #008207 0%, #004104 100%);
    background: transparent linear-gradient(180deg, #008207 0%, #004104 100%);
    border-radius: 4px;
    opacity: 1;
    width:100%;
    padding: 15% 14% 28% 14%;

}

.globalelectralcontainer{
    padding-top: 3%;
}

.globalelectralcontainer:before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#FEED00), to(#FEC10E));
    background: transparent -o-linear-gradient(top, #FEED00 0%, #FEC10E 100%);
    background: transparent linear-gradient(180deg, #FEED00 0%, #FEC10E 100%);
    opacity: 1;
    width: 28%;
    height: 89%;
}

.globalelectralcardinner h4 {
    text-align: left;
    font: normal normal normal 32px/46px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin-bottom: 15%;
}

.globalelectralcardinner h3{
    text-align: left;
    font: normal normal normal 32px/46px Montserrat;
    letter-spacing: 0px;
    color: #FEE901;
}

.globalelectralcardinner h3 span{
    font: normal normal bold 37px/46px Montserrat;
}

.globalelectralmap{
    width:60%;
}

video#video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
video#video1 {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.maplogo{
    max-width:42%;
    margin:auto;
}

.fullpageinnercontainer {
    position: relative;
    height: calc(100vh - 17vh);
    margin-top: 17vh;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: calc(100% - 5.7%);
}

.betadehydrationh1 {
    text-align: center;
    font: normal normal normal 34px/39px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    position: absolute;
    top: 10%;
    left: 50%;
    width: 100%;
    z-index: 99;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    padding-right: 3%;
}

.dehydrationslider .dehydrationslideritem  .dehydrationslideriteminneritem{
    background-color: #014B00;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#014B00), to(#00A10A));
    background: transparent -o-linear-gradient(top, #014B00 0%, #00A10A 100%);
    background: transparent linear-gradient(180deg, #014B00 0%, #00A10A 100%);
    opacity: 1;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.dehydrationslider .dehydrationslideritem:nth-child(odd) .dehydrationslideriteminneritem{
    background: transparent -webkit-gradient(linear, left bottom, left top, from(#014B00), to(#00A10A));
    background: transparent -o-linear-gradient(bottom, #014B00 0%, #00A10A 100%);
    background: transparent linear-gradient(0deg, #014B00 0%, #00A10A 100%);
    opacity: 1;
}

.dehydrationslideriteminneritem .productname {
  /*  position: absolute;
    left:50%;
    top: 18%;
    transform: translate(-50% , 0%);
    max-width:400px;*/
    position: absolute;
        /* left: 50%; */
        top: 18%;
        /* transform: translate(-50% , 0%); */
        /* max-width: 400px;*/
}

.dehydrationslideriteminneritem .productname p{
   text-align: center;
    font: normal normal bold 36px/47px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    display: block;
}

.dehydrationslideriteminneritem .productname p span{
    text-align: left;
    font: normal normal bold 18px/24px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
}

.dehydrationslider .dehydrationslideritem:nth-child(even) .dehydrationslideriteminneritem .productname p{
    text-align: center;
    font: normal normal bold 18px/24px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: capitalize;
    font-style: italic!important;
    opacity: 1;
}

.dehydrationslider .dehydrationslideritem:nth-child(even) .dehydrationslideriteminneritem .productname p span{
    text-align: left;
    font: normal normal bold 36px/47px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
}

.dehydrationslideriteminneritem .imgbox img{
    width:100%;
}

.dehydrationslideriteminneritem .imgbox {
    padding-top:20%;
    max-width:75%;
}

.dehydrationslider .slick-prev{
    left:20px;
    z-index:9;
}

.dehydrationslider .slick-next{
    right:20px;
    z-index:9;
}

.dehydrationslider .slick-prev:before{
    content: '';
    height: 15px;
    width:15px;
    display: block;
    border-left:2px solid #fff;
    border-bottom:2px solid #fff;
    -webkit-transform:rotate(45deg);
        -ms-transform:rotate(45deg);
            transform:rotate(45deg);
}

.dehydrationslider .slick-next:before{
    content: '';
    height: 15px;
    width:15px;
    display: block;
    border-right:2px solid #fff;
    border-top:2px solid #fff;
    -webkit-transform:rotate(45deg);
        -ms-transform:rotate(45deg);
            transform:rotate(45deg);
}

.certificationcontainer:after{
    content:'';
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#FEED00), to(#0F9917));
    background: transparent -o-linear-gradient(top, #FEED00 0%, #0F9917 100%);
    background: transparent linear-gradient(180deg, #FEED00 0%, #0F9917 100%);
    opacity: 1;
    width: 35%;
    height: 90.5%;
}

.fullpageinnercontainer.certificationcontainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
}

.certificationbox {
    width: 100%;
}

.certidicateslideriteminner p{
    text-align: left;
    font: normal normal 600 14px/22px Montserrat;
    letter-spacing: 0px;
    color: #2B2B2B;
    text-transform: uppercase;
    opacity: 1;
    margin:10px 0px 10px 0px;
}

.certificationbox .headingbox{
    margin-left: 35%;
    height: 100px;
    width: calc(100% - 40%);
}

.certificationbox .headingbox{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack:justify;
        -ms-flex-pack:justify;
            justify-content:space-between;
}

.certificationbox .headingbox img{
    margin: 0px 5%;
}

.certidicateslideriteminner .fancyboximgbox{
    width:100%;
}

.nonfancybox{
    padding:20px 15px;
}


.certificationbox .headingbox p{
    text-align: left;
    font: normal normal normal 22px/40px Montserrat;
    letter-spacing: 0px;
    color: #008207;
    text-transform: uppercase;
    opacity: 1;
}

.certidicateslider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 88%;
    position: relative;
    z-index: 9999;
    margin:2% auto 1%;
}

.certidicateslideriteminner{
    background: #FFFFFF;
    -webkit-box-shadow: 0px 3px 6px #00000029;
            box-shadow: 0px 3px 6px #00000029;
    border-radius: 0px 8px;
    opacity: 1;
    width: 92%;
    min-height: 100px;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.certidicateslideriteminner:hover{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    background: #FFFFFF;
    -webkit-box-shadow: 0px 3px 6px #00000078;
            box-shadow: 0px 3px 6px #00000078;
}

.certidicateslideriteminner .no{position: relative; display: none;}


.certidicateslideriteminner .no{
    height:20px;
    width:20px;
    border-radius: 50%;
    background:#ccc;
}

.certidicateslider .certidicateslideritem:nth-child(1) .certidicateslideriteminner .no{background: #FA7812;}
.certidicateslider .certidicateslideritem:nth-child(2) .certidicateslideriteminner .no{background: #DBDBDB;}
.certidicateslider .certidicateslideritem:nth-child(3) .certidicateslideriteminner .no{background: #EFB147;}
.certidicateslider .certidicateslideritem:nth-child(4) .certidicateslideriteminner .no{background: #4EA82E;}


.certidicateslideriteminner .no span{
    text-align: left;
    font: normal normal bold 30px/26px Montserrat;
    letter-spacing: 0px;
    color: #2B2B2B;
    opacity: 1;
}


.path-3522{
    position:absolute;
    width:100%;
    bottom:0px;
    left:0px;
}

.dehydrationslide1flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
}

.dehydrationslideritem{
    width:50%;
}

.dehydrationslide2flex{
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#014B00), to(#00A10A));
    background: transparent -o-linear-gradient(top, #014B00 0%, #00A10A 100%);
    background: transparent linear-gradient(180deg, #014B00 0%, #00A10A 100%);
    opacity: 1;
    height: 100%;
    padding-top:8%;
}

.dehydrationslide3flex{
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#014B00), to(#00A10A));
    background: transparent -o-linear-gradient(top, #014B00 0%, #00A10A 100%);
    background: transparent linear-gradient(180deg, #014B00 0%, #00A10A 100%);
    opacity: 1;
    height: 100%;
    padding-top: 8%;
}


.dehydradeheading2{
    text-align: center;
    font: normal normal bold 26px/34px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    margin-bottom: 20px;
}



.dehydrateproductbox{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    position: relative;
    width:100%;
}

.dehydrateproductbox .bgtext {
    text-transform: uppercase;
    position: absolute;
    top: 17%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 120px;
    color: #fff;
    opacity: 0.3;
    font-weight: bolder;
    pointer-events: none;
}

.dehydrateproductflexbox {
    position: relative;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 80%;
}
.dehydrateproduct {
    -webkit-box-flex:1;
        -ms-flex:1;
            flex:1;
    text-align: center;
    position: relative;
}

.dehydrateproduct:after{
    content:'';
    position: absolute;
    top:15%;
    left:100%;
    height:70%;
    width:1px;
    background:#fff;
}

.dehydrateproduct:last-child:after{display: none;}

.dehydrateproduct img {
    margin: 8% auto 0px;
}

.dehydrateproduct h3{
    text-align: center;
    font: normal normal bold 20px/25px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    margin-bottom: 20px;
}

a.btn.buybtn {
    text-align: left;
    font: normal normal 600 12px/25px Montserrat;
    letter-spacing: 0px;
    color: #007C05;
    opacity: 1;
    background: #fff;
    border-radius: 20px;
    padding: 5px 25px;
    position: relative;
    z-index: 999;
}

a.btn.buybtn:hover{
}

a.btn.buybtn:hover:after{
    background-color:#007C05;
}

a.btn.buybtn:after{
    content: "";
    position: absolute;
    width: 15px;
    height: 3px;
    background: #FEED00;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    top: 50%;
    right: -7px;
    animation: btn-animation 0.8s ease-in-out infinite alternate-reverse;
}

.heading1{
    text-align: center;
    font: normal normal normal 32px/39px Montserrat;
    letter-spacing: 0px;
    color: #2B2B2B;
    text-transform: uppercase;
    opacity: 1;
}


.whytetrapointsbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}



.whytetrapointsboxinner{
    height:100px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #ccc;
}



.whytetrapointsboxinner{
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
       -ms-flex-pack: justify;
           justify-content: space-between;
   width:300px;
   -ms-flex-wrap: wrap;
       flex-wrap: wrap; 
   position: relative;
}

/*.whytetrapointsboxinner:after{
    content: '';
    position: absolute;
    bottom:25px;
    width:100%;
    left:0px;
    height: 1px;
    background-color:#ccc;
}*/

#whyelectralsection .heading1{
    margin-bottom: 20px;
}

.whytrtralbox {
    position: relative;
}

.whytetraimgbox {
    max-width: 35%;
    margin: auto;
    position: relative;
}

.whytetraimgbox .placement {
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#014B00), to(#00A10A)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(top, #014B00 0%, #00A10A 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #014B00 0%, #00A10A 100%) 0% 0% no-repeat padding-box;
    border-radius: 16px;
    opacity: 1;
    position: absolute;
    bottom: -5%;
    left: 0px;
    width: 100%;
    height: 20%;
    z-index: -1;
}


.whytetrapointsbox {
    position: absolute;
    max-width:272px;
}


.whytrtralbox .whytetrapointsbox:nth-child(2){ left:12%;  top: 10%;}
.whytrtralbox .whytetrapointsbox:nth-child(3){ left:9%;  top: 40%;}
.whytrtralbox .whytetrapointsbox:nth-child(4){ left:5%;  top: 70%;}
.whytrtralbox .whytetrapointsbox:nth-child(5){ right:12%; top: 10%;}
.whytrtralbox .whytetrapointsbox:nth-child(6){ right:9%; top: 40%;}
.whytrtralbox .whytetrapointsbox:nth-child(7){ right:5%; top: 70%;}


.whytrtralbox .whytetrapointsbox:nth-child(5) .whytetrapointsboxinner{ -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse;}
.whytrtralbox .whytetrapointsbox:nth-child(6) .whytetrapointsboxinner{ -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse;}
.whytrtralbox .whytetrapointsbox:nth-child(7) .whytetrapointsboxinner{ -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse;}


.whyelectralcontainer:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: #EF7F1B 0% 0% no-repeat padding-box;
    opacity: 1;
    width: 130px;
    height: 150px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 37% 100%);
            clip-path: polygon(0 0, 0% 100%, 37% 100%);
}

.whyelectralcontainer .adots1 {
    position: absolute;
    top: 30%;
    left: -4%;
    z-index: 9999;
}

.whytetrapointsbox span{
    background: #08860F;
    display: inline-block;
    text-align: center;
    font: normal normal normal 18px/24px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 1;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin-top: 8px;
}

.root {
    min-height: calc(100vh - 52vh);
}

.whytetrapointsbox p{
    width:100%;
    text-align: center;
    font: normal normal normal 17px/24px Montserrat;
    letter-spacing: 0px;
    color: #484848;
    opacity: 1;
}


.copyrightbox{
    background:#009308;
    height:67px;
    border-top:1px solid #22a024;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.copyrightbox p,.copyrightbox a{
    text-align: center;
    font: normal normal normal 13px/19px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}
.footerlinksbox{
    background:#009308;
}
.footerlinksbox ul{
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;    
}

.footerlinksbox {
    background: #009308;
    padding: 2% 0px;
}

.footerlinksbox ul li{
    padding:0px 10px;
    position: relative;
}

.footerlinksbox ul li:after {
    content: '';
    position: absolute;
    top: 4px;
    right: -2px;
    height: 15px;
    width: 1px;
    background: #fff;
}

.footerlinksbox ul li:last-child:after{
    display: none;
}

.footerlinksbox ul li a {
    text-align: center;
    font: normal normal normal 13px/25px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    padding: 0px 12px;
    display: block;
    position: relative;
    z-index: 99;
    white-space: nowrap;
}

.testimonialcontainer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.testimonialcontainer .testimonialsectiongreen{
    width:50%;
    height: 100%;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#00A10A), to(#014B00));
    background: transparent -o-linear-gradient(top, #00A10A 0%, #014B00 100%);
    background: transparent linear-gradient(180deg, #00A10A 0%, #014B00 100%);
}

.testimonialslider.slick-initialized.slick-slider.slick-vertical {
    margin: 40px 0px 0px 0px;
}

.testimonialcontainer .testimonialsectiontext{
    width:50%;
    height: 100%;
    background:#fff;
    position: relative;
    overflow: hidden;
}

.testimonialsectiontext:before{
    content: '';
    position: absolute;
    bottom: 0px;
    z-index: 9;
    width: 100%;
    height:100px;
    background: #fff;
    opacity: 0.7;
    left: 0;
}

.testslideriteminner {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    -webkit-box-shadow: 0px 3px 6px #00000029;
            box-shadow: 0px 3px 6px #00000029;
    border-radius: 4px;
    opacity: 1;
    margin: 10px;
    padding:20px 26px;
}

.testslideriteminner .personname{
    text-align: left;
    font: normal normal 600 14px/25px Montserrat;
    letter-spacing: 0px;
    color: #008207;
    opacity: 1;
}

.testslideriteminner .dash{
    display: block;
    height: 2px;
    width:27px;
    background:#008207;
    margin:10px 0px;
}


.testslideriteminner p{
    text-align: left;
    font: normal normal normal 15px/25px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.testimonialslider .slick-prev{
   z-index: 999;
   left:50%;
   top:-20px;
   -webkit-transform: translate(-50% , -50%);
       -ms-transform: translate(-50% , -50%);
           transform: translate(-50% , -50%);
}

.testimonialslider .slick-prev:before{
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    border-left: 2px solid #333;
    -webkit-transform: translate(-50% , -50%) rotate(45deg);
        -ms-transform: translate(-50% , -50%) rotate(45deg);
            transform: translate(-50% , -50%) rotate(45deg);
    border-top: 2px solid #333;
}

.testimonialslider .slick-next {
    z-index: 999;
    left: 50%;
    right: auto;
    top: auto;
    bottom:50px;
    -webkit-transform: translate(-50% , -50%);
        -ms-transform: translate(-50% , -50%);
            transform: translate(-50% , -50%);
}

.testimonialslider .slick-next:before{
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    border-right: 2px solid #333;
    -webkit-transform: translate(-50% , -50%) rotate(45deg);
        -ms-transform: translate(-50% , -50%) rotate(45deg);
            transform: translate(-50% , -50%) rotate(45deg);
    border-bottom: 2px solid #333;
}

.testimonialsectiongreen{
    position: relative;
}

.testimonialsectiongreeninnerbox{
    position: absolute;
    top: 35%;
    left:16%;
    text-align: left;
}

.testimonialsectiongreeninnerbox img{
    position: relative;
    margin-top:20px;
}

.testimonialsectiongreen h2{
    text-align: left;
    font: normal normal normal 32px/39px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
}


.mediagallerycontainerbox h1 {
    text-align: left;
    font: normal normal normal 32px/39px Montserrat;
    letter-spacing: 0px;
    color: #2B2B2B;
    text-transform: uppercase;
    opacity: 1;
    max-width:72%;
}

.mediagallerycontainerbox p.mediasubhead{
    text-align: left;
    font: normal normal normal 15px/25px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
    max-width: 63%;
}

.mediagallerycontainerbox{
    max-width:86%;
    margin:auto;
}

.testimonialmap{
    position: absolute;
    max-width: 65%;
    top: 63%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

span.quotes{
    text-align: left;
    width: 100%;
    font-size: 14px;
    display: block;
}

span.quotes i{
    text-align: left;
}

.mediagallerycontainerbox {
    padding-top: 5%;
    position: relative;
    z-index: 9;
}

.mediaslideriteminner{
    max-width:85%;
    margin:15px 0px;
}

.mediaimgbox{
    position: relative;
}

.mediaimgbox .overlaybox {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #0005;
}

.overlaybox i{
    font-size:20px;
    color:#fff;
}


.mediaimagetext{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    -webkit-box-shadow: 0px 3px 6px #00000029;
            box-shadow: 0px 3px 6px #00000029;
    border-radius: 4px;
    opacity: 1;
    max-width: 90%;
    margin:auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height:64px;
    -webkit-transform: translate(0px, -30px);
        -ms-transform: translate(0px, -30px);
            transform: translate(0px, -30px);
    padding:0px 10px;
}

.mediaimagetext p{
    text-align: center;
    font: normal normal normal 15px/22px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.mediagallerycontainer:after{
    content: '';
    position: absolute;
    bottom:0px;
    right:0px;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#00A10A), to(#014B00));
    background: transparent -o-linear-gradient(top, #00A10A 0%, #014B00 100%);
    background: transparent linear-gradient(180deg, #00A10A 0%, #014B00 100%);
    opacity: 1;
    width: 35%;
    height:90%;
}

.mediaslider .slick-slide{
    height: auto;
}

.mediaslider .slick-next{
    z-index:9;
}

.mediaslider .slick-prev{
    z-index:9;
}

.mediaslider .slick-prev:before{
    content: '';
    height: 15px;
    width:15px;
    display: block;
    border-left:2px solid #000;
    border-bottom:2px solid #000;
    -webkit-transform:rotate(45deg);
        -ms-transform:rotate(45deg);
            transform:rotate(45deg);
}

.mediaslider .slick-next:before{
    content: '';
    height: 15px;
    width:15px;
    display: block;
    border-right:2px solid #fff;
    border-top:2px solid #fff;
    -webkit-transform:rotate(45deg);
        -ms-transform:rotate(45deg);
            transform:rotate(45deg);
}

.floavour{
    position: relative;
}

.floavour .afterproductimg {
    position: absolute;
    bottom: -5%;
    left: -40%;
    max-width: 74px;
}

.dehydrateproductbox2 .floavour .afterproductimg{
    position: absolute;
    bottom: -5%;
    left: -9%;
    max-width: 74px;   
}

.mediagallerycontainer:before {
    content: '';
    position: absolute;
    left:0px;
    bottom: 0px;
    background: #FEED00 0% 0% no-repeat padding-box;
    opacity: 1;
    width:130px;
    height:150px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 37% 100%);
            clip-path: polygon(0 0, 0% 100%, 37% 100%);
}


.mediagallerycontainer .adots1 {
    position: absolute;
    top: 40%;
    left: -4%;
    z-index: 9999;
}

.mediagallerycontainer .adots2 {
    position: absolute;
    bottom: -9%;
    left: 83%;
    z-index: 9999;
}


.whitefooterflexx{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 88%;
    margin:2% auto;
    position: relative;
}

.whitefooterflexx .footerlogo{
    width:15%;
}
.footergettouch{
    width:35%;
}

.footergettouchtext p{
    text-align: left;
    font: normal normal 600 16px/24px Poppins;
    letter-spacing: 0px;
    color: #3D3D3D;
    opacity: 1;
}

.footergettouchtext a{
    text-align: left;
    letter-spacing: 0px;
    color: #3D3D3D;
    opacity: 1;
    font-size:25px;
    line-height:30px;
    font-family: Poppins; 
    display: block;   
}

.footerfaqsbox p{
    text-align: left;
    font: normal normal 600 16px/18px Poppins;
    letter-spacing: 0px;
    color: #3D3D3D;
    opacity: 1;
    margin-bottom:10px;
}

.footerfaqsbox a{
    text-align: left;
    font: normal normal 600 25px/20px Poppins;
    letter-spacing: 0px;
    color: #3D3D3D;
    opacity: 1;
    display: block;
}

.footergettouch {
    width: 40%;
    padding:0px 2.5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    border-right:2px solid #ccc;
}

.footerfaqsbox {
    width: 40%;
    padding-left: 20px;
}

#homepage footer#footers {
    position: relative;
    border-top:0px solid #ccc;
}

footer#footers {
    position: relative;
    border-top:1px solid #ccc;
}

img.mainsttingphone {
    position: absolute;
    bottom:-43px;
    right:0%;
    -webkit-transform: translate(-50% ,-50%);
        -ms-transform: translate(-50% ,-50%);
            transform: translate(-50% ,-50%);
    z-index: 99;
}

.bannersection{
    position: relative;
}

.banneroverlay{
    position: absolute;
    top:0px;
    left:0px;
    width:100%;
    height: 100%;
}

.banneroverlayinner{
    position: absolute;
    bottom:20%;
    left:8%;
}

.banneroverlayinner h1{
    text-align: left;
    font: normal normal bold 52px/64px Montserrat;
    letter-spacing: 0px;
    color: #FFEA00;
    opacity: 1;
}

.banneroverlayinner ul{
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.banneroverlayinner ul li{
    position: relative;
}
.banneroverlayinner ul li:after{
    content: '/';
    text-align: left;
    font: normal normal normal 14px/35px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    padding:0px 5px;
    vertical-align: middle;
    display: inline-block;
}

.banneroverlayinner ul li:last-child:after{
    display: none;
}

.banneroverlayinner ul li a{
    text-align: left;
    font: normal normal normal 15px/35px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    vertical-align: middle;
    display: inline-block;
}

.normalpage .menuclose svg .a{ 
    fill:#fff;
}

.normalpage .header.fixed-head{
    background:#fff;
}

.normalpage .header.fixed-head .menuclose svg .a{
    fill:#000;
}

.sectionpadding{
    padding:3% 5%;
}

.richtext p{
    text-align: justify;
    font: normal normal normal 15px/24px Montserrat;
    letter-spacing: 0px;
    color: #262626;
    margin-bottom:10px;
}

.richtext img{
    max-width: 100%;
}

.richtext a{
    text-align: left;
    font: normal normal normal 15px/24px Montserrat;
    letter-spacing: 0px;
    color: #008207;
    margin-bottom:10px;
}

.aboutustwoblocksectioninner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.aboutustwoblocksectioninner .aboutustwoblocksectioninnerimgbox{
    width:40%;
}

.aboutustwoblocksectioninner .aboutustwoblocksectioninnertext{
    width:60%;
    padding:20px;
}

.aboutradialgradient{
    background: transparent -o-radial-gradient(85% 15%, closest-side, #56CCF2 0%, #016B06 1%, #13AE1C 100%);
    background: transparent radial-gradient(closest-side at 85% 15%, #56CCF2 0%, #016B06 1%, #13AE1C 100%);
    border: 1px solid #707070;
    opacity: 0.2;
    width:399px;
    height:299px;
    border-radius: 70% 30% 30% 70% /  60% 40% 60% 40%;
    position: absolute;
    z-index: -1;
    bottom: 10px;
    left: -10px;
}

.aboutustwoblocksectioninnerimgbox{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position:relative;
}

.img1{
    border-radius: 0px 8px;
    width: 280px;
    height: 317px;
    overflow: hidden;
}

.img21{
    border-radius: 0px 8px;
    width: 195px;
    overflow: hidden;
    height: 182px;
    margin-top:15px;
    text-align:right;
}

.img22{
    border-radius: 0px 8px;
    width: 195px;
    height: 182px;
    overflow: hidden;
    margin-top:15px;
    text-align:right;
}


.aboutustwoblocksectioninnerimgbox img{
    max-height: 100%;
    max-width:5000px;
    text-align:right;
}


.centerme{
    display: block;
    margin:20px auto;
}

.globalelectralmap .mapbox{
    margin-top:8%;
}

.globalelectralmap {
    width: 60%;
    padding: 3% 0px;
}

.width100{
    width:100%;
}


#dehydrationsection .imgdost1{
    position: absolute;
    top:-20px;
    left:5%;
    z-index: 999;
    mix-blend-mode: overlay;
}


#dehydrationsection .imgdost2{
    position: absolute;
    top:20%;
    left:10%;
    z-index: 999;
}

#dehydrationsection .imgdost3{
    position: absolute;
    bottom:-20px;
    right:5%;
    z-index: 999;
}

.dehydrationmeaingcontainer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.dhmcol1{
    width:50%;
    padding:0px 15px;
}

.dhmcol2{
    width:50%;
    padding:0px 15px;

}

.dhmcol2 h2{
    text-align: left;
    font: normal normal normal 24px/36px Montserrat;
    letter-spacing: 0px;
    color: #008207;
    opacity: 1;
    margin-bottom:20px; 
}

.dhmcol2 p{
    text-align: left;
    font: normal normal normal 15px/25px Montserrat;
    letter-spacing: 0px;
    color: #262626;
    opacity: 1;
}

.dhmcol2 ul {
    margin-bottom:20px;
    position: relative;
}

.dhmcol2 ul:before {
    content: '';
    position: absolute;
    top: 0px;
    height: 100%;
    width: 1px;
    background: #000;
    left: 9px;
}

.dhmcol2 ul li{
    position: relative;
    list-style-type: none;
    text-align: left;
    font: normal normal normal 15px/35px Montserrat;
    letter-spacing: 0px;
    color: #262626;
    opacity: 1;
    padding-left:25px;
}

.dhmcol2 ul li:before {
    content: '';
    position: absolute;
    top: 11px;
    left: 4px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #008207;
    border: 3px solid #fff;
}

.causesofdehydrationsection{
    background: url("../images/causes-of-direhea.png");
    background-size: cover;
    padding: 3% 5% 0% 5%;
}

.causeheading{
    text-align: center;
    font: normal normal normal 32px/54px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    margin-bottom: 20px;
}

.causedhcontainer .tab-content .tab-pane{
    position: relative;
    background: #E8F2E8;
    border-radius: 4px;
    padding:15px 15px 30px 15px;
    -webkit-transform: translate(0px, 25px);
        -ms-transform: translate(0px, 25px);
            transform: translate(0px, 25px);
}

.causeimgbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
}

.causedhcontainer .nav-pills > li.active > a,.causedhcontainer .nav-pills > li.active > a:hover,.causedhcontainer .nav-pills > li.active > a:focus {
    color: #000;
    background-color: #fff0;
}

.causedhcontainer .nav-pills > li.active{
    position: relative;
}
/*
.causedhcontainer .nav-pills > li.active:after{
    content:'';
    position: absolute;
    bottom:-27px;
    left:50%;
    transform: translate(-50% , 0%);
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-bottom: 23px solid #E8F2E8;
    opacity: 0;
    animation: showslow 0.5s linear 0.2s forwards;
}*/

/*@keyframes showslow{
    0% {
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
*/

.causedhcontainer .nav > li > a:hover,.causedhcontainer .nav > li > a:focus {
    text-decoration: none;
    background-color: #fff0;
}

.causedhcontainer .nav-pills{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}


.causedhcontainer .nav li a{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.causedhcontainer .nav li a .line{
    border: 1px solid #F15F46;
    opacity: 1;
    display: block;
    margin:10px;
    height: 31px;
}

.causedhcontainer .nav li a .no{
    background: #F15F46;
    height:24px;
    width:24px;
    display:block;
    border-radius: 50%;
    margin:10px;
    text-align: center;
    font: normal normal bold 14px/24px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.causedhcontainer .nav li:nth-child(even) a{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
}


.causedhcontainer .nav li a .causenavlist {
    text-align: center;
    font: normal normal 600 16px/24px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    max-width: 155px;
    text-transform: capitalize;
}

.mapbg {
    position: absolute;
    bottom: -40%;
    left: 50%;
    -webkit-transform: translate(-50% , -50%);
        -ms-transform: translate(-50% , -50%);
            transform: translate(-50% , -50%);
}

.signsandsymptonessection{
    background:#F6F6F6;
    padding:4% 5% 3% 5%;
}

.urinetestsection{
   background:#F6F6F6;
   padding:3% 5% 3% 5%; 
}

.urinetestsection .heading1{
    text-align: center;
    font: normal normal normal 32px/39px Montserrat;
    letter-spacing: 0px;
    color: #2B2B2B;
    text-transform: uppercase;
    opacity: 1;
    max-width:60%;
    margin:auto;
    margin-bottom: 20px;
}

.signsandsymptonessection .heading1{
    text-align: center;
    font: normal normal normal 32px/39px Montserrat;
    letter-spacing: 0px;
    color: #2B2B2B;
    text-transform: uppercase;
    opacity: 1;
    margin-bottom: 20px;
}

.urinetestsectiontablebox{
       max-width:70%;
       margin:0px auto;
}

.urinetestsectiontablerow{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-flex:1;
        -ms-flex-positive:1;
            flex-grow:1;
}



.urinetestsectiontablerow .urinetestsectiontableimg{
    width:10%;
    height:120px;
    position: relative;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: rgb(255,251,226);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,251,226,1)), color-stop(50%, rgba(255,251,223,1)), 
        color-stop(50%, rgba(255,248,196,1)), to(rgba(255,248,194,1)));
    background: -o-linear-gradient(top, rgba(255,251,226,1) 0%, rgba(255,251,223,1) 50%, 
        rgba(255,248,196,1) 50%, rgba(255,248,194,1) 100%);
    background: linear-gradient(180deg, rgba(255,251,226,1) 0%, rgba(255,251,223,1) 50%, 
        rgba(255,248,196,1) 50%, rgba(255,248,194,1) 100%);
}

.urinetestsectiontablerow .urinetestsectiontableno{
    width:20%;
    height:120px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding:10px 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.urinetestsectiontablerow .urinetestsectiontableno p{
    font: normal normal 600 18px/24px Montserrat;
    letter-spacing: 0px;
    color: rgba(0, 130, 7, 1);
    opacity: 1;
    width:100%;
}

.urinetestsectiontablerow .urinetestsectiontableno p b{
    font: normal normal bold 18px/24px Montserrat;
}




.urinetestsectiontablerow .urinetestsectiontabletext{
    width:70%;
    height:120px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding:10px 20px; 
}


.urinetestsectiontablerow:nth-child(1) .urinetestsectiontabletext{
    background: rgba(255,248,194,1);
}

.urinetestsectiontablerow:nth-child(1) .urinetestsectiontableimg{
    background: rgba(255,248,194,1);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,251,226,1)), color-stop(50%, rgba(255,251,223,1)),
     color-stop(50%, rgba(255,248,196,1)), to(rgba(255,248,194,1)));
    background: -o-linear-gradient(top, rgba(255,251,226,1) 0%, rgba(255,251,223,1) 50%,
     rgba(255,248,196,1) 50%, rgba(255,248,194,1) 100%);
    background: linear-gradient(180deg, rgba(255,251,226,1) 0%, rgba(255,251,223,1) 50%,
     rgba(255,248,196,1) 50%, rgba(255,248,194,1) 100%);
}

.urinetestsectiontablerow:nth-child(2) .urinetestsectiontabletext{
    background: rgba(255, 235, 130, 1);
}

.urinetestsectiontablerow:nth-child(2) .urinetestsectiontableimg{
    background: rgba(255, 235, 130, 1);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 242, 146, 1)), color-stop(50%, rgba(255, 242, 146, 1)), 
        color-stop(50%, rgba(255, 235, 130, 1)), to(rgba(255, 235, 130, 1)));
    background: -o-linear-gradient(top, rgba(255, 242, 146, 1) 0%, rgba(255, 242, 146, 1) 50%, 
        rgba(255, 235, 130, 1) 50%, rgba(255, 235, 130, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 242, 146, 1) 0%, rgba(255, 242, 146, 1) 50%, 
        rgba(255, 235, 130, 1) 50%, rgba(255, 235, 130, 1) 100%);
}

.urinetestsectiontablerow:nth-child(3) .urinetestsectiontabletext{
    background: rgba(252, 205, 37, 1);
}

.urinetestsectiontablerow:nth-child(3) .urinetestsectiontableimg{
    background: rgba(252, 205, 37, 1);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(254, 237, 0, 1)), color-stop(50%, rgba(254, 237, 0, 1)),
     color-stop(50%, rgba(252, 205, 37, 1)), to(rgba(252, 205, 37, 1)));
    background: -o-linear-gradient(top, rgba(254, 237, 0, 1) 0%, rgba(254, 237, 0, 1) 50%,
     rgba(252, 205, 37, 1) 50%, rgba(252, 205, 37, 1) 100%);
    background: linear-gradient(180deg, rgba(254, 237, 0, 1) 0%, rgba(254, 237, 0, 1) 50%,
     rgba(252, 205, 37, 1) 50%, rgba(252, 205, 37, 1) 100%);
}

.urinetestsectiontablerow:nth-child(4) .urinetestsectiontabletext{
    background: rgba(245, 159, 12, 1);
}

.urinetestsectiontablerow:nth-child(4) .urinetestsectiontableimg{
    background: rgba(245, 159, 12, 1);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(246, 181, 15, 1)), color-stop(50%, rgba(246, 181, 15, 1)),
     color-stop(50%, rgba(245, 159, 12, 1)), to(rgba(245, 159, 12, 1)));
    background: -o-linear-gradient(top, rgba(246, 181, 15, 1) 0%, rgba(246, 181, 15, 1) 50%,
     rgba(245, 159, 12, 1) 50%, rgba(245, 159, 12, 1) 100%);
    background: linear-gradient(180deg, rgba(246, 181, 15, 1) 0%, rgba(246, 181, 15, 1) 50%,
     rgba(245, 159, 12, 1) 50%, rgba(245, 159, 12, 1) 100%);
}



.headaing3{
    text-align: left;
    font: normal normal bold 32px/39px Montserrat;
    letter-spacing: 0px;
    color: rgba(43, 43, 43, 1);
    text-transform: uppercase;
    opacity: 1;
}

.headaing3 span{
    display:block;
    color:rgba(0, 130, 7, 1);
    padding-left:25%;
}

.signsandsymptonflexbox{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 20px;
}

.signsandsymptonflexbox  .signsandsymptonimgbox{
    width:30%;
}

.signsandsymptonflexbox  .signsandsymptontabbox{
    width:70%;
}

.certidicateslideriteminner .fancyboximgbox{
    position: relative;
    border-radius: 0px 8px;
    overflow: hidden;
}

.certidicateslideritem .overlay{
    background: rgba(0, 0, 0, 0.37);
    width: 34px;
    height: 34px;
    border-radius:50%;
    top:50%;
    left:50%;
    -webkit-transform: translate(-50% , -50%);
        -ms-transform: translate(-50% , -50%);
            transform: translate(-50% , -50%);
    position:absolute;
    text-align: center;
}

.certidicateslideritem .overlay i{
    color:#fff;
    font-size:18px;
    line-height:34px;
}

.certificationbox .headingbox{
    position:relative;
}


.certificationbox .headingbox img.yellowdots{
    position: absolute;
    top: -17px;
    left: -90px;
    margin: 0px;
}

.testimonialcontainer{
    position:relative;
}

.testimonialcontainer .whitedots{
    position: absolute;
    top:80%;
    left:-1%;
    z-index: 999;
    mix-blend-mode: overlay;
}

.imgbox{
    width:100%;
    text-align: center;
}



body.normalpage img.img100.colorlogoimg {
  display: none;
}

body.normalpage img.img100.logoimg {
  display: block;
}

.normalpage .header.fixed-head img.img100.logoimg {
display: none;
}
.normalpage header.header.fixed-head img.img100.colorlogoimg {
   display: block;
   width: 50%;
   margin: 0px auto;
}
.normalpage .header.fixed-head .headercontainer {
   background: #fff;
   -webkit-box-shadow: 1px 1px 3px 2px #d6cbcb8c;
           box-shadow: 1px 1px 3px 2px #d6cbcb8c;
}
a.read-animated {
   background: #008207 0% 0% no-repeat padding-box;
   border-radius: 14px;
   opacity: 1;
   font: normal normal 500 12px/25px Montserrat;
   letter-spacing: 0px;
   color: #FFFFFF;
   position: relative;
   padding: 2px 15px;
   display: inline-block;
   margin-top: 20px;
}
a.read-animated:after {
   content: "";
   position: absolute;
   width: 15px;
   height: 3px;
   background: #FEED00;
   -webkit-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   transition: all 0.5s ease-in-out;
   opacity: 1;
   top: 50%;
   right: -7px;
   animation: btn-animation 0.8s ease-in-out infinite alternate-reverse;
}
@-webkit-keyframes btn-animation{
   0%{
       right: -3px;
   }
   100%{
       right: -7px;
   }
}
@keyframes btn-animation{
   0%{
       right: -3px;
   }
   100%{
       right: -7px;
   }
}
a.read-animated:hover {
   background: #2d2c2b;
   -webkit-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   transition: all 0.5s ease-in-out;
}
a.read-animated:hover:after{
  background: #008207;
}

.signsandsymptontabbox .acc-wi-flex h2{
    color:rgba(38, 38, 38, 1);
}


.signsandsymptontabbox .common-treates h4.panel-title a.collapsed {
    background: #fff;
    border: 1px solid rgba(0, 130, 7, 1);
    color:rgba(0, 130, 7, 1);
}



.signsandsymptonadultssection h2.headaing3 {
    display: inline-block;
    float: right;
}

section.signsandsymptonessection.signsandsymptonadultssection.sectionpadding{
    background-color:#fff;
    border-top:1px solid #ccc;
} 

.dehydrationpage .common-treates .panel-heading a{
    padding:10px 20px;
}


.faqguidesection{
    width:100%;
    height: 73px;
    background:#066b06;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
}

.faqguidesection p{
    text-align: center;
    font: normal normal normal 15px/24px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.faqpsection{
    padding:5% 5% 10% 5%;
}

.faqpcontaniner .nav-pills{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.faqpcontaniner .nav-pills li a{
    border: 1px solid #707070;
    opacity: 1;
    text-align: left;
    font: normal normal normal 14px/18px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
    opacity: 1;
    margin:0px 10px;
    padding:10px 20px;
}


.faqpcontaniner .nav-pills > li.active > a,.faqpcontaniner .nav-pills > li.active > a:hover,.faqpcontaniner .nav-pills > li.active > a:focus{
    background-color: #008207;
    color:#fff;
}


.faqpcontaniner .tab-content{

}

.faqflexxcontainer{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin:15px auto;
}

.faqflexxcontainer .faqfleximgbox{
    width:30%;
} 
.faqflexxcontainer .faqflexaccordionbox{
    width:65%;
} 

.faqflexaccordionbox .accordionplusminus .accordionheading {
    position: relative;
    height: 50px;
    border-bottom: 1px solid #A7A7A7;
     margin-top: 10px; 
}

.faqflexaccordionbox .accordionplusminus .accordionheading:after {
    content: '';
    position: absolute;
    height: 2px;
    top: 25px;
    right: 16px;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(50% , -50%);
        -ms-transform: translate(50% , -50%);
            transform: translate(50% , -50%);
    width: 14px;
    background: #787A78;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.faqflexaccordionbox .accordionplusminus .accordion-close .accordionheading:before {
    content: '';
    position: absolute;
    height: 14px;
    top: 25px;
    right: 14px;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(-50% , -50%);
        -ms-transform: translate(-50% , -50%);
            transform: translate(-50% , -50%);
    width: 2px;
    background: #787A78;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.faqflexaccordionbox .accordionbody{
    padding:15px 10px;
    font: normal normal normal 15px/24px Montserrat;

}

.faqflexaccordionbox .accordionheading p{
    text-align: left;
    font: normal normal normal 15px/50px Montserrat;
    letter-spacing: 0px;
    color: #262626;
    opacity: 1;
}

.histrytextsection{
    padding:6% 5% 3% 5%;
}
.histrytextcontianer p {
    text-align: justify;
    font: normal normal normal 15px/24px Montserrat;
    letter-spacing: 0px;
    color: #262626;
    opacity: 1;
    margin-bottom: 15px;
}
.histrytextcontianer h4{
    text-align: center;
    font: normal normal bold 15px/24px Montserrat;
    letter-spacing: 0px;
    color: #262626;
    opacity: 1;
    margin:10px 0px;
}

.histrytextcontianer h3{
    text-align: center;
    font: normal normal 600 20px/24px Montserrat;
    letter-spacing: 0px;
    color: #008207;
    opacity: 1;
    margin:10px 0px;
}

.historytextimgsection{
    border-top:1px solid #ccc;
}

.historytextimgcontainer{
    max-width:70%;
    margin:auto;
    position: relative;
}

.historytextimgcontainer:after {
    -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    content: "";
    width: 4px;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 50%;
    background: #008207;
    position: absolute;
}

.histroy-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
    padding-top:100px;
    position: relative;
    z-index:99;
}
.histroy-flex .histroy-flex-text{
    width:40%;
}
.histroy-flex .histroy-flex-dots{
    width:10%;   
}
.histroy-flex .histroy-flex-img{
    width:40%;   
}


.histroy-flex-text  p{
    text-align: justify;
    font: normal normal normal 15px/24px Montserrat;
    letter-spacing: 0px;
    color: #262626;
}

.histroy-flex-text  span{
    color: #008207;
    font-weight: 600;
}


.histroy-flex-dotsbox{
    position: relative;
    text-align: center;
    background-color:#fff;
    width:56px;
    margin:auto;
    padding:10px 0px;
}

.histroy-flex-dotsbox:after{
    content:'';
    position: absolute;
    top:50%;
    right:100%;
    width: 36px;
    display:block;
    height:2px;
    background:#707070; 
}

.histroy-flex-dotsbox .hdots{
    background: #FFEA00 0% 0% no-repeat padding-box;
    border: 2px solid #008207;
    opacity: 1;
    border-radius:50%;
    width: 13px;
    height: 13px;
    display:block;
    margin:auto;

}

.histroy-flex-dotsbox .hyear{
    display:block;
    text-align: center;
    font: normal normal 500 14px/24px Montserrat;
    letter-spacing: 0px;
    color: #262626;
    opacity: 1;
}


.historytextimgcontainer .histroy-flex:nth-child(even){
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}


.breadcrumbimg{
    position: absolute;
    top:50%;
    left:80%;
    -webkit-transform:translate(-50% , -50%);
        -ms-transform:translate(-50% , -50%);
            transform:translate(-50% , -50%);
}

.foooterfixed{
    display:none;
}

.normalpage .foooterfixed{
    position: fixed;
    right:10px;
    top:50%;
    -webkit-transform: translate(0% , -50%);
        -ms-transform: translate(0% , -50%);
            transform: translate(0% , -50%);
    z-index: 999;
    display: block;    
}

.normalpage .socialbox{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.normalpage .socialbox .social{
    margin-bottom:10px;
}

.normalpage .socialbox .social svg .a{
    fill:#E0DB72;
}

.normalpage .socialbox .social svg path{
    fill:#E0DB72;
}


img.animationquestion {
    position: absolute;
    right: 17%;
    top: 21px;
}

.signsandsymptonimgbox .imgbox{
    position: relative;
}

.signsandsymptonimgbox .imgbox img:first-child{
    z-index:9;
    position: relative
}

.childrenbgcss {
    position: absolute;
    top: 50%;
    left: 45%;
    -webkit-transform: translate(-50% ,-50%);
        -ms-transform: translate(-50% ,-50%);
            transform: translate(-50% ,-50%);
    max-width: 70%;
}


#homepage .active .zoomInanimate{
    -webkit-animation:zoomIn 2s;
            animation:zoomIn 2s; 
}

#homepage .active .fadeInanimate{
    -webkit-animation:fadeInUp 2s 0.5s;
            animation:fadeInUp 2s 0.5s; 
}

#homepage .active .fadeInLeftanimate{
    -webkit-animation:fadeInLeft 2s 0.5s;
            animation:fadeInLeft 2s 0.5s; 
}

#homepage .active .fadeInRightanimate{
    -webkit-animation:fadeInRight 2s 0.5s;
            animation:fadeInRight 2s 0.5s; 
}


#homepage .scrolltotop{
    display:none;
}

.normalpage .homescrolltop{
    display: none!important;
}

.normalpage .scrolltotop {
    position: fixed;
    bottom: 20px;
    left: 20px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background:#e0db72;
    text-align: center;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    opacity: 0;
    z-index:99;
    display: block;
}

.scrolltotop i {
    font-size: 32px;
    color: #fff;
    line-height: 48px;
}

.homescrolltop{
   position: absolute;
   bottom: 20px;
   left: 20px;
   height: 50px;
   width: 50px;
   border-radius: 50%;
   background:#e0db72;
   text-align: center;
   -webkit-transition: 1s;
   -o-transition: 1s;
   transition: 1s;
   z-index:9999; 
}

.homescrolltop i {
    font-size: 32px;
    color: #fff;
    line-height: 48px;
}


path#Icon_material-shopping-cart {
    fill: #dfdfdf;
}

.normalpage .socialbox .social svg #Subtraction_5{
    fill:#E0DB72
}

.mediaimgbox {
    position: relative;
    border-radius: 0px 8px;
    overflow: hidden;
}

.fp-viewing-9 .headercontainer{
    background:#fff;
}


.social svg .a{
    fill:#08860F;
}

.social svg .a{
    fill:#08860F;
}

section.aboutustwoblocksection.sectionpadding {
    padding-top: 1%;
}

.pdstops .imga-thiongs.wow.zoomIn {
    max-width: 88%;
}

.fp-viewing-section1 .logobox .logoimg{
    display: block;
}

.fp-viewing-section1 .logobox .logoimg{
    display: block;
}

.fp-viewing-section1 .logobox .logoimg{
    display: block;
}

.fp-viewing-section1 .logobox .colorlogoimg{
    display: none;
}


.fancybox-caption{
    text-align: center;
}

.dehyrdatedchild{
    max-width:40%;
    margin:auto;
    margin-top:20%;
}
.dehydrationslideriteminneritem{
    position: relative;
}

.dehydrationslideriteminneritem .absolutebtn{
    position:absolute;
    z-index:999;
    bottom:30px;
    left:50%;
    width:100%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}


.white-text{
    text-align: left;
    font: normal normal normal 15px/25px Montserrat;
    letter-spacing: 0px;
    color: #FFFCFC;
    margin-bottom:25px;
}


.refrencesection{
    text-align: center;
    padding:3% 3%;
}

.refrencesection ul{
    list-style: none;
}

.refrencesection p{
    line-height: 40px;
}

.mutbtn {
    background-color: #fff0;
    border: 0px;
    height: 40px;
    width: 40px;
    position: absolute;
    bottom: 40px;
    left: 10px;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: rgba(0,0,0,0.5);
    outline:none;
}

.mutbtn i{
    color:#000!important;
    font-size:20px;
}

.homebannerslide .hbitemboxinner img{
    width:100%;
    height:100%;
}

.mediaimgbox a{
    display: block;
}

.mediaimgbox .img-responsive{
    width:100%;
}

.nonfancybox.match {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}


.normalpage .mobilefooterfixed{
    display:none;
}

.mobilebanner{
    display: none!important;
}


div.error {
    color: #ff0000;
    font-size: 12px;
    line-height: 14px;
}


.thankyousection{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
    padding: 3%;
}

.thankstext {
    padding: 3%;
    width: 100%;
    text-align: center;
    max-width: 60%;
    margin: auto;
}

.thankyousection .animated.slow.fadeInUp{
    width:100%;
}

.thankyousection p{
    text-align: center;
}

.main-content__checkmark{
    height: 50px;
    width: 50px;
    background: #009308;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.refrencesection p {
    line-height: 40px;
    text-align: center;
}


a.btn.buybtn.testinonialshare{
    position: absolute!important;
    top: 127%;
    left: 0px;  
    color:#007C05!important;
}

a.btn.buybtn.testinonialshare:hover{
    color:#007C05!important;
}

.tyep1s p{
    text-align: right;
}


.tyep2s p{
    text-align: right;
}


.WHO-ORS-section .main-board-title{
    margin-bottom: 20px;
}

.WHO-ORS-section .main-board-title2 {
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}


.goog-te-gadget-simple{
    opacity:0.5;
}

.goog-te-gadget {
    font-family: arial;
    font-size: 11px;
    color: #666;
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.socialbox .social{
    position: relative;
}

.socialbox .social svg{
    position: relative;
    max-width: 33px;
    max-height: 33px;
}

div#google_translate_element {
    opacity: 0;
}

div#google_translate_element1{
    opacity: 0;
}



.fp-viewing-Home .social svg path {
    fill: #fff;
}

select {
    width: 100%;
    background: #F3F3F3 0% 0% no-repeat padding-box;
    border: 0;
    color: #000000;
    outline: none!important;
    height: 36px;
    padding: 10px;
    font: normal normal 500 12px/28px Montserrat;
    border-radius: 5px;
}

.goog-te-banner-frame{
    display: none!important;
}

body{
    top:0px!important;
}


.letft-posytiing p{
    text-align: left!important;
}


.preparenewdesignupflex,.preparenewdesigndownflex{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
}

.prepareupbox{
    width:45%;
    display: flex;
    align-items: center;
    position: relative;
}

.prepareupbox h2{
    text-align: left;
    font: normal normal normal 18px/28px Montserrat;
    letter-spacing: 0px;
    color: #262626;
    font-weight: 600;
    opacity: 1;
    padding-left:10px;
    position:absolute;
}

.prepareupbox.prepareupbox1 h2,.prepareupbox.prepareupbox2 h2 {
    left: 120px;
}

.prepareupbox.preparedownbox1 h2,.prepareupbox.preparedownbox2 h2 {
    left: 140px;
    bottom:0px;
}


.preparenewdesignupflex{
    padding:10px 0px;
    border-bottom: 1px solid #ccc;
}

.preparenewdesigndownflex{
    padding:10px 0px;
}

.preparenewdesignupflex, .preparenewdesigndownflex{
    position: relative;
}

.preparenewdesignupflex:after, .preparenewdesigndownflex:after{
    content:'';
    position: absolute;
    width:1px;
    height: 80%;
    background-color: #ccc;
    top:50%;
    left:50%;
    transform:translate(-50% , -50%);
}

.productlistflex  .stirtext{
    text-align:center;
    font: normal normal normal 18px/28px Montserrat;
    letter-spacing: 0;
    color: #262626;
    font-weight: 600;
    opacity: 1;
    position: relative;
    margin: 25px 0 0 10%;
}

.WHO-ORS-section .oraltable  .main-board-title2{
    font-size:15px;
    line-height: 23px;
}


.stirtext span{
    display: block;
    font-weight: 400;
    font-size:14px;
}

