/********** Template CSS **********/
@font-face {
    font-family: "GothamPro-Bold";
    src: url('../fonts/GothamPro-Bold.eot');
    src: url('../fonts/GothamPro-Bold.eot') format('embedded-opentype'),
         url('../fonts/GothamPro-Bold.woff2') format('woff2'),
         url('../fonts/GothamPro-Bold.woff') format('woff'),
         url('../fonts/GothamPro-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "GothamPro";
    src: url('../fonts/GothamPro.eot');
    src: url('../fonts/GothamPro.eot') format('embedded-opentype'),
         url('../fonts/GothamPro.woff2') format('woff2'),
         url('../fonts/GothamPro.woff') format('woff'),
         url('../fonts/GothamPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.navbar-toggler-icon {
    background-image: url("../img/navbar-icon-white.svg");
}
.text-primary{ color:#204919!important}
.text-secondary{ color:#0aa164!important}
.text-title-content{
    font-size:3.7rem
}
.text-content{
    font-size:2.2rem
}
ul.white{
    list-style-image: url('../img/check-white-20.svg');
}
ul.green{
    list-style-image: url('../img/check-green-20.svg');
}
li {
    padding-left: 2%!important;
  }
.bg-primary{
    background-color: #0aa164!important;
}
.bg-green{
    background-color:#05490b;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-family: "GothamPro-Bold",sans-serif;
    text-decoration: none!important;
}
a{text-decoration: none!important;}
body{
    font-family: "GothamPro",sans-serif;
    text-decoration: none!important;
    background-color: #f1f5f9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .text-title-content{
        font-size:1.5rem
    }
    .text-content{
        font-size:0.9rem
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .text-title-content{
        font-size:1.8rem
    }
    .text-content{
        font-size:1.1rem
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .text-title-content{
        font-size:2.2rem
    }
    .text-content{
        font-size:1.4rem
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .text-title-content{
        font-size:2.5rem
    }
    .text-content{
        font-size:1.7rem
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1366px) {
    .text-title-content{
        font-size:2.5rem
    }
    .text-content{
        font-size:1.7rem
    }
}
@media (min-width: 1637px) {
    .text-title-content{
        font-size:3.5rem
    }
    .text-content{
        font-size:2.2rem
    }
    ul.white{
        list-style-image: url('../img/check-white.svg');
    }
    ul.green{
        list-style-image: url('../img/check-green.svg');
    }
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
ul.check{
    content:"\f00c";
    list-style-type:none;
}

img.animated.pulse {
    animation-duration: 5s;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary, .btn-outline-primary{
    color: var(--bs-white);
    background-color: #204919!important;
    border-color: #204919;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.offcanvas{
    background-color: #0aa164;
}
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 85px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 40px;
    padding: 0;
    color: #ffffff;
    font-weight: 500;
    transition: .5s;
    outline: none;
}

.navbar-toggler:focus{
    box-shadow:none !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #204919;
    font-weight: bolder;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    color:#fff;
}
.navbar-brand {
    width:7%;
    margin-right:5rem;
}
.navbar .navbar-nav {
    padding: 0 15px;
    /* background: #0aa164!important; */
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar-brand {
        width:15%;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar-brand {
        width:15%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
    .navbar .navbar-nav .nav-link {
        font-size: 1rem;
        margin-right:30px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1366px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
    .navbar .navbar-nav .nav-link {
        font-size: 1.2rem;
    }
}
@media (min-width: 1637px) {
    .navbar .navbar-nav .nav-link {
        font-size: 1.8rem;
    }
}


/*** Hero Header ***/
.title-hero{
    margin-top:-184px !important;
}
.hero-pil {
    position: absolute;
    top:3rem;
    /* margin-top: -85px;
    padding-top: 12rem;
    padding-bottom: 6rem; */
    background: url(../img/pil-bg.png) center center no-repeat;
    background-size:100%;
    height:100%;
    animation-iteration-count: infinite;
    animation-duration: 4s;
    animation-fill-mode: both;
    animation-name: pulse;
}

.hero-header {
    position: relative;
    margin-top: -85px;
    padding-top: 12rem;
    padding-bottom: 6rem;
    /* background: url(../img/bg.png) center center no-repeat; */
    background-size: cover;
}

/* .hero-header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
} */

.hero-header .container {
    position: relative;
    z-index: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-light);
}

@media (max-width: 374px){
    .navbar {
        padding: 0 !important;
        height: 60px;
    }
    .jargen1 {
        margin:0 !important;
        background: rgba(5, 73, 11, 0.7);
        width: 118px;
        height: 260px;
        bottom: 0;
        right: 165px;
        position: absolute;
        z-index: 0;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-10deg);
    }
    
    .jargen2 {
        margin:0 !important;
        background: rgba(255, 255, 255, 1);
        width: 125px;
        height: 255px;
        top: 292px;
        right: 25px;
        position: absolute;
        /* z-index: 0; */
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-10deg);
    }
    .title-brand{
        font-size: 2.5rem;
        font-weight: 300;
        line-height: 1;
    }
    .title-hero {
        margin-top:-70px !important;
        color:#fff !important;
    }
    .bottle-box img {
        width:200px;
    }
    .bottle-box{
        margin-top:5rem;
        text-align:center!important;
    }
    .hero-header{
        padding-bottom:0;
        padding-top:14rem;
    }
    .hero-pil{
        top:10rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 375px) and (max-width: 767.98px) {
    .navbar {
        padding: 0 !important;
        height: 65px;
    }
    .jargen1 {
        margin:0 !important;
        background: rgba(5, 73, 11, 0.7);
        width: 140px;
        height: 390px;
        bottom: 0;
        right: 208px;
        position: absolute;
        z-index: 0;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-10deg);
    }
    
    .jargen2 {
        margin:0 !important;
        background: rgba(255, 255, 255, 1);
        width: 140px;
        height: 370px;
        top: 237px;
        right: 31px;
        position: absolute;
        /* z-index: 0; */
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-10deg);
    }
    .title-brand{
        font-size: 3rem;
        font-weight: 300;
        line-height: 1;
    }
    .title-hero {
        margin-top:-70px !important;
        color:#fff !important;
    }
    .bottle-box img {
        width:290px;
    }
    .bottle-box{
        /* margin-top:10rem; */
        text-align:center!important;
    }
    .hero-header{
        padding-bottom:0;
    }
    .hero-pil{
        top:9rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .jargen1 {
        margin:0 !important;
        background: rgba(5, 73, 11, 0.7);
        width: 250px;
        height: 575px;
        bottom: 0;
        right: 415px;
        position: absolute;
        z-index: 0;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-10deg);
    }
    
    .jargen2 {
        margin:0 !important;
        background: rgba(255, 255, 255, 1);
        width: 250px;
        height: 452px;
        top: 278px;
        right: 46px;
        position: absolute;
        /* z-index: 0; */
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-10deg);
    }
    .title-brand{
        font-size: 4rem;
        font-weight: 300;
        line-height: 1;
    }
    .title-hero {
        margin-top:-20px !important;
        color:#fff !important;
    }
    .bottle-box{
        text-align:center!important;
        margin-top:7rem;
    }
    .hero-header{
        padding-bottom:0;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar {
        height: 55px;
    }
    .navbar-brand {
        width: 5%;
    }
    .hero-header{
        padding-bottom:0;
    }
    .jargen1 {
        margin: 0;
        background: rgba(5, 73, 11, 0.7);
        width: 195px;
        height: 515px;
        bottom: 0;
        right: 305px;
        position: absolute;
        z-index: 0;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-16deg);
    }
    .jargen2 {
        margin: 0;
        background: rgba(255, 255, 255, 1);
        width: 195px;
        height: 595px;
        top: -192px;
        right: 56px;
        position: absolute;
        z-index: 0;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-16deg);
    }
    .hero-pil{
        background-size:90%;
        top:-3rem;
    }
    .title-brand{
        font-size: 5rem;
        font-weight: 300;
        line-height: 1;
    }
    .title-hero {
        margin-top:-195px !important;
        color:#fff !important;
    }
    .hero-desc {
        width:75%;
    }
    .bottle-box img {
        width:42vh;
    }
    .bottle-box{
        text-align:center!important;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1366px) {
    .navbar {
        height: 55px;
    }
    .navbar-brand {
        width: 5%;
    }
    .title-brand{
        font-size: 6rem;
        font-weight: 300;
        line-height: 1;
    }
    .title-hero {
        margin-top:-389px !important;
        color:#fff !important;
    }
    .hero-desc {
        width:85%;
    }
    .jargen1 {
        margin: 0;
        background: rgba(5, 73, 11, 0.7);
        width: 230px;
        height: 630px;
        bottom: 0;
        right: 325px;
        position: absolute;
        z-index: 0;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-16deg);
    }
    .jargen2 {
        margin: 0;
        background: rgba(255, 255, 255, 1);
        width: 230px;
        height: 600px;
        top: -192px;
        right: 24px;
        position: absolute;
        z-index: 0;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-16deg);
    }
    .bottle-box{
        text-align:right!important;
    }
    .hero-header{
        padding-bottom:0;
    }
    .bottle-box img {
        width:45vh;
    }
    .hero-pil{
        top:-7rem;
        z-index: 0;
    }
    .title-hero {
        margin-top:-232px !important;
        color:#fff !important;
    }
}

/* Extra large devices (large desktops, 1367px and up) */
@media (min-width: 1367px) {
    .title-brand{
        font-size: 7.4rem;
        font-weight: 300;
        line-height: 1;
    }
    .title-hero {
        margin-top:-200px !important;
        color:#fff !important;
    }
    .hero-desc {
        width:91%;
    }
    .jargen1 {
        margin: 50px;
        background: rgba(5, 73, 11, 0.7);
        width: 290px;
        height: 900px;
        bottom: -146px;
        right: 275px;
        position: absolute;
        z-index: 0;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-16deg);
    }
    .jargen2 {
        margin: 50px;
        background: rgba(255, 255, 255, 1);
        width: 290px;
        height: 800px;
        top: -192px;
        right: -80px;
        position: absolute;
        z-index: 0;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-16deg);
    }
    .bottle-box{
        text-align:right!important;
    }
}

/***video***/
.video {
    background: linear-gradient(rgba(19, 58, 35, .85), rgba(19, 58, 35, .85)), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
}
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}
.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}
.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}
.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid #86ae43;
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.how-to-use .border {
    border-color: rgba(255, 255, 255, .2) !important;
}

/*** Testimonial ***/
section#testi{
    background: url(../img/testi-bg2.svg) right 0% top 0% no-repeat, url(../img/testi-bg1.svg) left 0% bottom -10% no-repeat;
    background-size: 25% 25%;
}
.testimonial {
    width: 100%;
    height: 45vh;
    position: relative;
    background: url(../img/bubble-testi.png) center center no-repeat;
    background-size: contain;
}
.testimonial blockquote {
    margin: 10px 10px 0;
    /* background: #cedbe1; */
    padding: 13% 17%;
    position: relative;
    border: none;
    /* border-radius: 121px 69px 69px 67px; */
    font-style: italic;
    font-size: 1.3rem;
  }
.testimonial blockquote p{
    font-weight: bold;
    text-align: center;
}
/* For Mobile Portrait View */
@media screen and (max-device-width: 413px)
    and (orientation: portrait) {
        section#testi {
            background: url(../img/testi-bg2.svg) right top no-repeat, url(../img/testi-bg1.svg) left bottom no-repeat;
            background-size: 50% 10%;
        }
        .testimonial blockquote {
            padding: 28% 10%;
            font-size: 70%;
        }
}
@media screen and (max-device-width: 480px) and (min-device-width: 414px)
    and (orientation: portrait) {
        section#testi {
            background: url(../img/testi-bg2.svg) right top no-repeat, url(../img/testi-bg1.svg) left bottom no-repeat;
            background-size: 50% 10%;
        }
        .testimonial blockquote {
            padding: 30% 10%;
            font-size: 85%;
        }
}
/* For iPhone 5 Portrait or Landscape View */
@media (device-height: 568px)
    and (device-width: 320px)
    and (-webkit-min-device-pixel-ratio: 2) {
        section#testi {
            background: url(../img/testi-bg2.svg) right top no-repeat, url(../img/testi-bg1.svg) left bottom no-repeat;
            background-size: 50% 10%;
        }
        .testimonial blockquote {
            padding: 25% 10%;
            font-size: 55%;
        }
}
/* For iPhone 6 and 6 plus Portrait or Landscape View */
@media (min-device-height: 667px)
    and (min-device-width: 375px)
    and (-webkit-min-device-pixel-ratio: 3) {
        section#testi {
            background: url(../img/testi-bg2.svg) right top no-repeat, url(../img/testi-bg1.svg) left bottom no-repeat;
            background-size: 50% 10%;
        }
        .testimonial blockquote {
            padding: 30% 10%;
            font-size: 70%;
        }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .testimonial blockquote {
        padding: 38% 15%;
        font-size: 70%;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    section#testi {
        background-size: 30% 25%;
    }
    .testimonial blockquote {
        padding: 21% 15%;
        font-size: 70%;
    }
}
@media (min-width: 1200px) and (max-width: 1366px) {
    .testimonial blockquote {
        padding: 13% 17%;
        font-size: 90%;
      }
}
@media (min-width: 1367px) and (max-width:1920px){
    .testimonial blockquote {
        padding: 13% 17%;
        font-size: 1.3rem;
    }
}
/*** Contact ***/
.contact-info-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.contact-info-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--bs-body);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
}

.footer .copyright a {
    color: var(--bs-body);
}

.footer .copyright a:hover {
    color: var(--bs-primary);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 3px solid var(--bs-light);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* chart */
.container-c {
    position: relative;
    margin: auto auto auto 2rem;
    height: 400px;
    width: 100%;
    top: 40px;
    background: none;
  }
  .wrapper-c {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
.vertical {
    /* position: absolute; */
    height: 85.6%;
    width: 5px;
    margin-left: 1.1%;
    /* top: 30px; */
    /* border-radius: 5px 5px 0 0; */
    background: rgb(4 77 154);
  }
  .horizontal {
    position: absolute;
    height: 5px;
    width: 100%;
    margin-left: 0;
    margin-top: -2%;
    background: rgb(8,83,119);
background: linear-gradient(90deg, rgba(8,83,119,1) 0%, rgba(109,96,39,1) 73%, rgba(246,124,47,1) 100%);
    /* border-radius: 0 5px 5px 0; */
  }
  .line-dot{
    position: absolute;
    width: 133%;
    height: 566px;
    top: -67%;
    left: -18%;
    border: dotted 5px #000;
    border-color: transparent transparent #000 transparent;
    border-radius: 0 0 472% 149%/146%;
    -webkit-border-radius: 0 0 472% 149%/146%;
    -moz-border-radius: 0 0 472% 149%/146%;
    rotate: 1 1 0 307deg;
  }
  span.numb-v{
    font-family: "Akshar", sans-serif;
    font-size: 2em;
    font-weight: bold;
    color: #044d9a;
    right: 26px;
    top: -20px;
    position: relative;
  }
  .numb-h{
    font-family: "Akshar", sans-serif;
    position: absolute;
    font-size: 2em;
    font-weight: bold;
    color: #044d9a;
    left: 4px;
    top: 340px;
  }
  .numb-age{
    font-family: "Akshar", sans-serif;
    position: relative;
    font-size: 2em;
    font-weight: bold;
    color: #044d9a;
    right: 13px;
    bottom: -13px;
  }
  .numb-age60{
    font-family: "Akshar", sans-serif;
    position: relative;
    font-size: 2em;
    font-weight: bold;
    color: rgb(102 96 45);
    right: 13px;
    bottom: -13px;
  }
  .numb-age80{
    font-family: "Akshar", sans-serif;
    position: relative;
    font-size: 2em;
    font-weight: bold;
    color: rgb(203 115 46);
    right: 13px;
    bottom: -13px;
  }
  .line-1 {
    position: absolute;
    height: 5px;
    width: 14px;
    left: 0;
    top: 6px;
    /* border-radius: 5px; */
    background: rgb(4 77 154);
  }
  .line-2 {
    position: absolute;
    height: 5px;
    width: 14px;
    left: 0;
    top: 159px;
    /* border-radius: 5px; */
    background: rgb(4 77 154);
  }
  .line-3 {
    position: absolute;
    height: 16px;
    width: 5px;
    left: 23%;
    top: 0;
    /* border-radius: 5px; */
    background: rgb(4 77 154);
  }
  .line-4 {
    position: absolute;
    height: 16px;
    width: 5px;
    left: 45%;
    top: 0;
    /* border-radius: 5px; */
    background: rgb(4 77 154);
  }
  .line-5 {
    position: absolute;
    height: 16px;
    width: 5px;
    left: 68%;
    top: 0;
    /* border-radius: 5px; */
    background: rgb(102 96 45);
  }
  .line-6 {
    position: absolute;
    height: 16px;
    width: 5px;
    left: 90%;
    top: 0;
    /* border-radius: 5px; */
    background: rgb(203 115 46);
  }
  .col-people{
    position: relative;
    bottom: 58%;
    left: 3%;
  }
  .people{
    position: absolute;
    width: 95%;
    display: flex;
    bottom: 20%;
    left: 3%;
  }
  .graph-1 {
    /* position: absolute; */
    height: 85px;
    max-height: 85px;
    width: 84px;
    left: 50px;
    top: 198px;
    bottom: 0;
    border-radius: 5px 5px 0 0;
    background: url(../img/baby.png);
    background-repeat: no-repeat;
    background-position: center;
    animation: slideInUp;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
  }
  .graph-2 {
    /* position: absolute; */
    height: 154px;
    max-height: 154px;
    width: 61px;
    left: 144px;
    top: 126px;
    bottom: 0;
    border-radius: 5px 5px 0 0;
    background: url(../img/kids.png);
    background-repeat: no-repeat;
    background-position: center;
    animation: slideInUp;
    animation-duration: 1s;
    animation-delay: 1.3s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
  }
  .graph-3 {
    /* position: absolute; */
    height: 182px;
    max-height: 182px;
    width: 65px;
    left: 234px;
    top: 99px;
    border-radius: 5px 5px 0 0;
    background: url(../img/boy.png);
    background-repeat: no-repeat;
    background-position: center;
    animation: slideInUp;
    animation-duration: 1s;
    animation-delay: 1.6s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
  }
  .graph-4 {
    /* position: absolute; */
    height: 192px;
    max-height: 192px;
    width: 104px;
    left: 327px;
    top: 89px;
    border-radius: 5px 5px 0 0;
    background: url(../img/girl.png);
    background-repeat: no-repeat;
    background-position: center;
    animation: slideInUp;
    animation-duration: 1s;
    animation-delay: 1.9s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
  }
  .graph-5 {
    /* position: absolute; */
    height: 200px;
    max-height: 200px;
    width: 54px;
    left: 457px;
    top: 77px;
    border-radius: 5px 5px 0 0;
    background: url(../img/mom.png);
    background-repeat: no-repeat;
    background-position: center;
    animation: slideInUp;
    animation-duration: 1s;
    animation-delay: 2.2s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
  }
  .graph-6 {
    /* position: absolute; */
    height: 209px;
    max-height: 209px;
    width: 63px;
    left: 545px;
    top: 70px;
    border-radius: 5px 5px 0 0;
    background: url(../img/lady.png);
    background-repeat: no-repeat;
    background-position: center;
    animation: slideInUp;
    animation-duration: 1s;
    animation-delay: 2.5s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
  }
  .graph-7 {
    /* position: absolute; */
    height: 201px;
    max-height: 201px;
    width: 72px;
    left: 637px;
    top: 76px;
    border-radius: 5px 5px 0 0;
    background: url(../img/madam.png);
    background-repeat: no-repeat;
    animation: slideInUp;
    animation-duration: 1s;
    animation-delay: 2.8s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
  }
  .graph-8 {
    /* position: absolute; */
    height: 174px;
    max-height: 174px;
    width: 85px;
    left: 733px;
    top: 104px;
    border-radius: 5px 5px 0 0;
    background: url(../img/grandma.png);
    background-repeat: no-repeat;
    animation: slideInUp;
    animation-duration: 1s;
    animation-delay: 3.1s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
  }
  .rocket {
    position: absolute;
    height: 180px;
    width: 60px;
    left: -30px;
    border-radius: 100% 100% 50% 50%;
    border-top: 5px solid #2e7d32;
    border-bottom: 5px solid #2e7d32;
    background: #66bb6a;
    z-index: 1;
    animation: fadeOutUpBig;
    animation-duration: 10s;
    animation-fill-mode: both;
    animation-delay: 1s;
    animation-iteration-count: 1;
  }
  @keyframes fadeOutUpBig {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      transform: translate3d(0, -2000px, 0);
    }
  }
  .fadeOutUpBig {
    animation-name: fadeOutUpBig;
  }
  .window {
    position: absolute;
    height: 25px;
    width: 25px;
    left: 12px;
    top: 50px;
    border-radius: 50%;
    background: #5198c8;
    border: 5px solid #2e7d32;
  }
  .stripe {
    position: absolute;
    height: 5px;
    width: 60px;
    top: 170px;
    background: #2e7d32;
  }
  .stripe:before {
    content: "";
    position: absolute;
    height: 5px;
    width: 60px;
    top: -10px;
    background: #2e7d32;
  }
  .fire-1 {
    position: absolute;
    height: 30px;
    width: 20px;
    left: 20px;
    top: 190px;
    background: #ffa500;
    -webkit-clip-path: polygon(0 0, 53% 100%, 100% 0);
    clip-path: polygon(0 0, 53% 100%, 100% 0);
  }
  .fire-2 {
    position: absolute;
    height: 15px;
    width: 10px;
    left: 25px;
    top: 192px;
    background: #f0c414;
    -webkit-clip-path: polygon(0 0, 53% 100%, 100% 0);
    clip-path: polygon(0 0, 53% 100%, 100% 0);
  }
  .exhaust {
    position: absolute;
    height: 7px;
    width: 30px;
    left: 15px;
    top: 185px;
    border-radius: 0 0 50% 50%;
    background: #323232;
  }
  @keyframes slideInUp {
    from {
      transform: translateY(50%) scale(0);
    }
    to {
      transform: translateY(0) scale(1);
    }
  }
  .slideInUp {
    animation-name: slideInUp;
  }
  .chart-cont{
    height:fit-content;
    background-color: rgba(255, 255, 255, .3);
    background: url(../img/molekul-l.png) left bottom no-repeat, url(../img/molekul-r.png) right top no-repeat;
    background-size: auto 80%;
  }
  /* .chart-cont::before{
    content:"";
    background: url(../img/molekul.png) left bottom no-repeat;
  }
  .chart-cont::after{
    content: "";
    background: url(../img/molekul.png) right top no-repeat;
  } */
  div.vertical-text{
    font-size: 1.5rem;
    font-weight: bold;
    color: #044d9a;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin: auto 0.5rem;
  }

@media (max-width: 374.98px){
    .chart-cont{
        height:fit-content;
        background-size: auto 35%;
      }
      .container-c {
        position: relative;
        margin: auto;
        height: 200px;
        width: 90%;
        top: 40px;
        background: none;
    }
    div.vertical-text {
        font-size: 0.8rem;
        margin: auto 1.1rem 0 0;
    }
    .wrapper-c {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .line-dot {
        position: absolute;
        width: 144%;
        height: 259px;
        top: -50%;
        left: -29%;
        border: dotted 5px #000;
        border-color: transparent transparent #000 transparent;
        border-radius: 0 0 472% 149%/146%;
        -webkit-border-radius: 0 0 472% 149%/146%;
        -moz-border-radius: 0 0 472% 149%/146%;
        rotate: 1 1 0 295deg;
    }
    .vertical {
        /* position: absolute; */
        height: 85.6%;
        width: 5px;
        margin-left: 1.1%;
        /* top: 30px; */
        /* border-radius: 5px 5px 0 0; */
        background: rgb(4 77 154);
    }
    .numb-h {
        font-family: "Akshar", sans-serif;
        position: absolute;
        font-size: 1.5em;
        font-weight: bold;
        color: #044d9a;
        left: 4px;
        top: 177px;
    }
    .line-1 {
        position: absolute;
        height: 5px;
        width: 10px;
        left: -2px;
        top: 6px;
        /* border-radius: 5px; */
        background: rgb(4 77 154);
    }
    span.numb-v {
        font-family: "Akshar", sans-serif;
        font-size: 1.5em;
        font-weight: bold;
        color: #044d9a;
        right: 20px;
        top: -14px;
        position: relative;
    }
    .line-2 {
        position: absolute;
        height: 5px;
        width: 10px;
        left: -2px;
        top: 87px;
        /* border-radius: 5px; */
        background: rgb(4 77 154);
    }
    span.numb-v {
        font-family: "Akshar", sans-serif;
        font-size: 1.5em;
        font-weight: bold;
        color: #044d9a;
        right: 20px;
        top: -14px;
        position: relative;
    }
    .horizontal {
        position: absolute;
        height: 5px;
        width: 100%;
        margin-left: 0;
        margin-top: -2.8%;
        background: rgb(8,83,119);
        background: linear-gradient(90deg, rgba(8,83,119,1) 0%, rgba(109,96,39,1) 73%, rgba(246,124,47,1) 100%);
        /* border-radius: 0 5px 5px 0; */
    }
    span.numb-v {
        font-family: "Akshar", sans-serif;
        font-size: 1.5em;
        font-weight: bold;
        color: #044d9a;
        right: 20px;
        top: -14px;
        position: relative;
    }
    .line-3 {
        position: absolute;
        height: 10px;
        width: 5px;
        left: 23%;
        top: 0;
        /* border-radius: 5px; */
        background: rgb(4 77 154);
    }
    .numb-age {
        font-family: "Akshar", sans-serif;
        position: relative;
        font-size: 1.5em;
        font-weight: bold;
        color: #044d9a;
        right: 13px;
        bottom: -13px;
    }
    .line-4 {
        position: absolute;
        height: 10px;
        width: 5px;
        left: 45%;
        top: 0;
        /* border-radius: 5px; */
        background: rgb(4 77 154);
    }
    .line-5 {
        position: absolute;
        height: 10px;
        width: 5px;
        left: 68%;
        top: 0;
        /* border-radius: 5px; */
        background: rgb(102 96 45);
    }
    .numb-age60 {
        font-family: "Akshar", sans-serif;
        position: relative;
        font-size: 1.5em;
        font-weight: bold;
        color: rgb(102 96 45);
        right: 13px;
        bottom: -13px;
    }
    .line-6 {
        position: absolute;
        height: 10px;
        width: 5px;
        left: 90%;
        top: 0;
        /* border-radius: 5px; */
        background: rgb(203 115 46);
    }
    .numb-age80 {
        font-family: "Akshar", sans-serif;
        position: relative;
        font-size: 1.5em;
        font-weight: bold;
        color: rgb(203 115 46);
        right: 13px;
        bottom: -13px;
    }
    .people{
        width:100%;
        padding:0;
    }
    .graph-1 {
        height: 35px;
        border-radius: 5px 5px 0 0;
        background: url(../img/baby.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 1s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
    .graph-2 {
        height: 70px;
        border-radius: 5px 5px 0 0;
        background: url(../img/kids.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 100%;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 1.3s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
    .graph-3 {
        height: 105px;
        border-radius: 5px 5px 0 0;
        background: url(../img/boy.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 95%;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 1.6s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
    .graph-4 {
        height: 110px;
        border-radius: 5px 5px 0 0;
        background: url(../img/girl.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 95%;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 1.9s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
    .graph-5 {
        height: 118px;
        border-radius: 5px 5px 0 0;
        background: url(../img/mom.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 95%;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 2.2s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
    .graph-6 {
        height: 119px;
        border-radius: 5px 5px 0 0;
        background: url(../img/lady.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 95%;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 2.5s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
    .graph-7 {
        height: 105px;
        border-radius: 5px 5px 0 0;
        background: url(../img/madam.png);
        background-repeat: no-repeat;
        background-size: auto 100%;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 2.8s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
    .graph-8 {
        height: 75px;
        border-radius: 5px 5px 0 0;
        background: url(../img/grandma.png);
        background-repeat: no-repeat;
        background-size: auto 95%;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 3.1s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 375px) and (max-width: 767.98px) {
    .chart-cont{
        height:fit-content;
        background-size: auto 50%;
      }
      .container-c {
        position: relative;
        margin: auto;
        height: 200px;
        width: 90%;
        top: 40px;
        background: none;
    }
    div.vertical-text {
        font-size: 0.8rem;
        margin: auto 1.1rem 0 0;
    }
    .wrapper-c {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .line-dot {
        position: absolute;
        width: 144%;
        height: 259px;
        top: -50%;
        left: -29%;
        border: dotted 5px #000;
        border-color: transparent transparent #000 transparent;
        border-radius: 0 0 472% 149%/146%;
        -webkit-border-radius: 0 0 472% 149%/146%;
        -moz-border-radius: 0 0 472% 149%/146%;
        rotate: 1 1 0 295deg;
    }
    .vertical {
        /* position: absolute; */
        height: 85.6%;
        width: 5px;
        margin-left: 1.1%;
        /* top: 30px; */
        /* border-radius: 5px 5px 0 0; */
        background: rgb(4 77 154);
    }
    .numb-h {
        font-family: "Akshar", sans-serif;
        position: absolute;
        font-size: 1.5em;
        font-weight: bold;
        color: #044d9a;
        left: 0;
        top: 174px;
    }
    .line-1 {
        position: absolute;
        height: 5px;
        width: 10px;
        left: -2px;
        top: 6px;
        /* border-radius: 5px; */
        background: rgb(4 77 154);
    }
    span.numb-v {
        font-family: "Akshar", sans-serif;
        font-size: 1.5em;
        font-weight: bold;
        color: #044d9a;
        right: 20px;
        top: -14px;
        position: relative;
    }
    .line-2 {
        position: absolute;
        height: 5px;
        width: 10px;
        left: -2px;
        top: 87px;
        /* border-radius: 5px; */
        background: rgb(4 77 154);
    }
    span.numb-v {
        font-family: "Akshar", sans-serif;
        font-size: 1.5em;
        font-weight: bold;
        color: #044d9a;
        right: 20px;
        top: -14px;
        position: relative;
    }
    .horizontal {
        position: absolute;
        height: 5px;
        width: 100%;
        margin-left: 0;
        margin-top: -2.8%;
        background: rgb(8,83,119);
        background: linear-gradient(90deg, rgba(8,83,119,1) 0%, rgba(109,96,39,1) 73%, rgba(246,124,47,1) 100%);
        /* border-radius: 0 5px 5px 0; */
    }
    span.numb-v {
        font-family: "Akshar", sans-serif;
        font-size: 1.5em;
        font-weight: bold;
        color: #044d9a;
        right: 20px;
        top: -14px;
        position: relative;
    }
    .line-3 {
        position: absolute;
        height: 10px;
        width: 5px;
        left: 23%;
        top: 0;
        /* border-radius: 5px; */
        background: rgb(4 77 154);
    }
    .numb-age {
        font-family: "Akshar", sans-serif;
        position: relative;
        font-size: 1.5em;
        font-weight: bold;
        color: #044d9a;
        right: 13px;
        bottom: -13px;
    }
    .line-4 {
        position: absolute;
        height: 10px;
        width: 5px;
        left: 45%;
        top: 0;
        /* border-radius: 5px; */
        background: rgb(4 77 154);
    }
    .line-5 {
        position: absolute;
        height: 10px;
        width: 5px;
        left: 68%;
        top: 0;
        /* border-radius: 5px; */
        background: rgb(102 96 45);
    }
    .numb-age60 {
        font-family: "Akshar", sans-serif;
        position: relative;
        font-size: 1.5em;
        font-weight: bold;
        color: rgb(102 96 45);
        right: 13px;
        bottom: -13px;
    }
    .line-6 {
        position: absolute;
        height: 10px;
        width: 5px;
        left: 90%;
        top: 0;
        /* border-radius: 5px; */
        background: rgb(203 115 46);
    }
    .numb-age80 {
        font-family: "Akshar", sans-serif;
        position: relative;
        font-size: 1.5em;
        font-weight: bold;
        color: rgb(203 115 46);
        right: 13px;
        bottom: -13px;
    }
    .people{
        width:100%;
        padding:0;
    }
    .graph-1 {
        height: 35px;
        border-radius: 5px 5px 0 0;
        background: url(../img/baby.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 1s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
    .graph-2 {
        height: 70px;
        border-radius: 5px 5px 0 0;
        background: url(../img/kids.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 100%;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 1.3s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
    .graph-3 {
        height: 105px;
        border-radius: 5px 5px 0 0;
        background: url(../img/boy.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 95%;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 1.6s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
    .graph-4 {
        height: 110px;
        border-radius: 5px 5px 0 0;
        background: url(../img/girl.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 95%;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 1.9s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
    .graph-5 {
        height: 118px;
        border-radius: 5px 5px 0 0;
        background: url(../img/mom.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 95%;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 2.2s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
    .graph-6 {
        height: 119px;
        border-radius: 5px 5px 0 0;
        background: url(../img/lady.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 95%;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 2.5s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
    .graph-7 {
        height: 105px;
        border-radius: 5px 5px 0 0;
        background: url(../img/madam.png);
        background-repeat: no-repeat;
        background-size: auto 100%;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 2.8s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
    .graph-8 {
        height: 75px;
        border-radius: 5px 5px 0 0;
        background: url(../img/grandma.png);
        background-repeat: no-repeat;
        background-size: auto 95%;
        animation: slideInUp;
        animation-duration: 1s;
        animation-delay: 3.1s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .line-dot{
        top: -72%;
        width: 140%;
        height: 577px;
        left: -24%;
      }
      .chart-cont{
        height:60vh;
      }
      .vertical{
        height: 68%;
        width: 5px;
        margin-left: 1.1%;
      }
      .numb-h {
        left: 4px;
        top: 273px;
    }
    .line-1{
        height: 5px;
        width: 10px;
        left: 0;
        top: 6px;
    }
    .line-2{
        height: 5px;
        width: 10px;
        left: 0;
        top: 135px;
    }
    .horizontal {
        height: 5px;
        width: 100%;
        margin-left: 0;
        margin-top: -2%;
    }
    .people {
        width: 100%;
        bottom: 35%;
        left: 3%;
    }
    .graph-1 {
        height: 81px;
        max-height: 85px;
        width: 84px;
        left: 50px;
        top: 198px;
        bottom: 0;
        background-size: auto 78%;
        background-position: bottom;
    }
    .graph-2 {
        height: 154px;
        max-height: 154px;
        width: 61px;
        left: 144px;
        top: 126px;
        bottom: 0;
        background-size: auto 78%;
        background-position: bottom;
    }
    .graph-3 {
        height: 182px;
        max-height: 182px;
        width: 65px;
        left: 234px;
        top: 99px;
        background-size: auto 78%;
        background-position: bottom;
    }
    .graph-4 {
        height: 192px;
        max-height: 192px;
        width: 104px;
        left: 327px;
        top: 89px;
        background-size: auto 78%;
        background-position: bottom;
    }
    .graph-5 {
        height: 200px;
        max-height: 200px;
        width: 54px;
        left: 457px;
        top: 77px;
        background-size: auto 78%;
        background-position: bottom;
    }
    .graph-6 {
        height: 209px;
        max-height: 209px;
        width: 63px;
        left: 545px;
        top: 70px;
        background-size: auto 78%;
        background-position: bottom;
    }
    .graph-7 {
        height: 201px;
        max-height: 201px;
        width: 72px;
        left: 637px;
        top: 76px;
        background-size: auto 78%;
        background-position: bottom;
    }
    .graph-8 {
        height: 171px;
        max-height: 174px;
        width: 85px;
        left: 733px;
        top: 104px;
        background-size: auto 78%;
        background-position: bottom;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .line-dot{
        top: -58%;
      }
      .chart-cont{
        height:fit-content;
        background-size: auto 65%;
      }
}
@media (min-width: 1200px) and (max-width: 1366px) {
    .line-dot{
        top: -62%;
      }
      .chart-cont{
        height:fit-content;
      }
}
/* end chart */

/* Intro start */
section#Intro{
    height:fit-content;
}
.jargen3 {
    background: rgba(5, 73, 11, 1);
    width: 60%;
    height: 90%;
    bottom: 0;
    right: -8%;
    position: relative;
    z-index: 0;
    -ms-transform: skew(-16deg);
    -webkit-transform: skew(-16deg);
    transform: skew(-16deg);
}
.jargen4 {
    background: #f1f5f9;
    width: 65%;
    height: 90%;
    top: -75%;
    right: -35%;
    position: relative;
    z-index: 0;
    -ms-transform: skew(-16deg);
    -webkit-transform: skew(-16deg);
    transform: skew(-16deg);
}
.sun-icon{
    height:150px;
    background:url(../img/sun-icon.png) no-repeat;
    background-position-x: 40%;
    background-size: 35%;
}
.intro-title{
    font-size: 3rem;
}

/* For Mobile Portrait View */
@media screen and (max-device-width: 480px)
    and (orientation: portrait) {
        section#Intro {
            height: fit-content;
        }
        .intro-title{
            font-size: 1.8rem;
        }
        .jargen3 {
            background: rgba(5, 73, 11, 1);
            width: 60%;
            height: 60%;
            bottom: 0;
            right: 5%;
        }
        .jargen4 {
            background: #f1f5f9;
            width: 65%;
            height: 60%;
            top: -39%;
            right: -8%;
        }
        .sun-icon{
            background-size: 80%;
        }
}
/* For iPhone 5 Portrait or Landscape View */
@media (device-height: 568px)
    and (device-width: 320px)
    and (-webkit-min-device-pixel-ratio: 2) {
        section#Intro {
            height: fit-content;
        }
        .intro-title{
            font-size: 1.8rem;
        }
        .jargen3 {
            background: rgba(5, 73, 11, 1);
            width: 60%;
            height: 60%;
            bottom: 0;
            right: -5%;
        }
        .jargen4 {
            background: #f1f5f9;
            width: 65%;
            height: 60%;
            top: -42%;
            right: -2%;
        }
        .sun-icon{
            background-size: 80%;
        }
}
/* For iPhone 6 and 6 plus Portrait or Landscape View */
@media (min-device-height: 667px)
    and (min-device-width: 375px)
    and (-webkit-min-device-pixel-ratio: 3) {
        section#Intro {
            height: fit-content;
        }
        .intro-title{
            font-size: 1.8rem;
        }
        .jargen3 {
            background: rgba(5, 73, 11, 1);
            width: 60%;
            height: 60%;
            bottom: 0;
            right: -5%;
        }
        .jargen4 {
            background: #f1f5f9;
            width: 65%;
            height: 60%;
            top: -42%;
            right: -25%;
        }
        .sun-icon{
            background-size: 80%;
        }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    section#Intro {
        height: fit-content;
    }
    .intro-title{
        font-size: 2.1rem;
    }
    .jargen3 {
        background: rgba(5, 73, 11, 1);
        width: 60%;
        height: 70%;
        bottom: 0;
        right: -5%;
        position: relative;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-16deg);
    }
    .jargen4 {
        background: #f1f5f9;
        width: 65%;
        height: 65%;
        top: -48%;
        right: -25%;
        position: relative;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-16deg);
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    section#Intro {
        height:fit-content;
    }
    .intro-title{
        font-size: 2.5rem;
    }
    .jargen3 {
        background: rgba(5, 73, 11, 1);
        width: 60%;
        height: 64%;
        bottom: 0;
        right: -5%;
        position: relative;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-16deg);
    }
    .jargen4 {
        background: #f1f5f9;
        width: 65%;
        height: 65%;
        top: -48%;
        right: -25%;
        position: relative;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-16deg);
    }
}
@media (min-width: 1200px) and (max-width: 1366px) {
    section#Intro{
        height:fit-content;
    }
    .jargen3 {
        background: rgba(5, 73, 11, 1);
        width: 55%;
        height: 90%;
        bottom: 0;
        right: -20%;
        position: relative;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-16deg);
    }
    .jargen4 {
        background: #f1f4f5;
        width: 55%;
        height: 90%;
        top: -48%;
        right: -43%;
        position: relative;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-16deg);
    }
    .intro-title{
        font-size: 2.5rem;
    }
}
@media (min-width: 1367px) {
    section#Intro{
        height:fit-content;
    }
    .intro-title{
        font-size: 3.5rem;
    }
}
/* end Intro */

/** start intro 2 **/
.jargen5{
    margin-top: 30px;
    background: rgba(5, 73, 11, 1);
    width: 270px;
    height: 50vh;
    bottom: 0;
    float:right;
    position: relative;
    z-index: 0;
    -ms-transform: skew(-16deg);
    -webkit-transform: skew(-16deg);
    transform: skew(-16deg);    
}

.sun-icon-gold {
    width: 150px;
    height: 150px;
    margin: auto;
    background: url(../img/sun-icon-gold.svg) no-repeat center center;
    background-size: cover;
}

/* For Mobile Portrait View */
@media screen and (max-device-width: 480px)
    and (orientation: portrait) {
        .sun-icon-gold {
            width: 110px;
            height: 110px;
        }
        .jargen5 {
            margin-top: 30px;
            background: rgba(5, 73, 11, 1);
            width: 80px;
            height: 20vh;
            bottom: -108px;
            right: 20px;
        }
        ul.green{
            max-width:85%;
        }
}
/* For iPhone 5 Portrait or Landscape View */
@media (device-height: 568px)
    and (device-width: 320px)
    and (-webkit-min-device-pixel-ratio: 2) {
        .sun-icon-gold {
            width: 110px;
            height: 110px;
        }
        .jargen5 {
            margin-top: 30px;
            background: rgba(5, 73, 11, 1);
            width: 80px;
            height: 20vh;
            bottom: -108px;
            right: 20px;
        }
        ul.green{
            max-width:85%;
        }
}
/* For iPhone 6 and 6 plus Portrait or Landscape View */
@media (min-device-height: 667px)
    and (min-device-width: 375px)
    and (-webkit-min-device-pixel-ratio: 3) {
        .sun-icon-gold {
            width: 110px;
            height: 110px;
        }
        .jargen5 {
            margin-top: 30px;
            background: rgba(5, 73, 11, 1);
            width: 80px;
            height: 20vh;
            bottom: -108px;
            right: 20px;
        }
        ul.green{
            max-width:90%;
        }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    section#intro2 div.container div.row div.text-content{
        width:75%;
    }
    .sun-icon-gold {
        width: 100px;
        height: 100px;
    }
    .jargen5{
    width: 200px;
    height: 33vh;
    bottom: 0;
    float: none;
    right: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .sun-icon-gold {
        width: 100px;
        height: 100px;
    }
    .jargen5 {
        width: 200px;
        float:none;
        right:85px;
    }
}
@media (min-width: 1200px) and (max-width: 1366px) {
    .sun-icon-gold {
        width: 100px;
        height: 100px;
    }
    .jargen5{
        margin-top: 30px;
        background: rgba(5, 73, 11, 1);
        width: 200px;
        height: 40vh;
        bottom: 0;
        float: right;
        position: relative;
        z-index: 0;
        -ms-transform: skew(-16deg);
        -webkit-transform: skew(-16deg);
        transform: skew(-16deg);    
    }   
}
@media (min-width: 1367px) {
    .jargen5{
        height: 40vh;
    } 
}
/* end Intro2 */

/** Benefit start **/
#benefit{
    height:fit-content;
}
.wrapimage  
{  
float: right;
}
.wrapimage img 
{  
margin:auto;
}
.jargen6::before {
    content: '';
    position: absolute;
    left: 80%;
    width: 14vw;
    height: 25%;
    transform: translate(-58%, -21%) rotate(287deg) skew(17deg);
    background: #f1f5f9;
    z-index: 1;
}
.atomanimate {
	display: flex;
	align-items: center;
	justify-content: center;
    width: 250px;
	min-height: 400px;
    background: radial-gradient(circle, #5ae7ae 1%, #0aa164 40%);
    /* background: radial-gradient(#37e39d, #0aa164); */
    z-index: 0;
    bottom: -80px;
    left: 35%;
}

.atomanimate .atom {
    position: relative;
    display: flex;
    width: 400px;
    height: 360px;
    align-items: center;
    justify-content: center;
    background-image: url(../img/pil.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 45%;
    background-clip: padding-box;
    rotate: 0 11 10 354deg;
}

/* .atomanimate .atom::before {
	content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: transparent;
    box-shadow: inset 0 0 10px #fff;
    border-radius: 50%;
} */

.atomanimate .line {
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0.7;
}

.atomanimate .line-1 {
    --color: #40ff9c;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-bottom: 10px solid #ffffff;
    border-top: 10px solid var(--color);
    animation: line1 2s linear infinite;
    filter: drop-shadow( 0 0 10px var(--color));
    background: transparent;
    rotate: 0 0 -1 189deg;
}

@keyframes line1 {
	0% {
		transform: rotateY(70deg) rotateZ(0deg);
	}
	100% {
		transform: rotateY(70deg) rotateZ(360deg);
	}
}

.atomanimate .line-2 {
    --color: #ffffff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    border-right: 10px solid #12d183;
    border-left: 10px solid var(--color);
    animation: line2 3s linear infinite;
    filter: drop-shadow( 0 0 10px var(--color));
    background: transparent;
}

@keyframes line2 {
	0% {
		transform: rotateX(80deg) rotateY(25deg) rotateZ(0deg);
	}
	100% {
		transform: rotateX(80deg) rotateY(25deg) rotateZ(360deg);
	}
}

.atomanimate .line-3 {
    --color: #06cb5b;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    border-right: 10px solid var(--color);
    border-left: 10px solid #e4ede8;
    animation: line3 3s linear infinite;
    filter: drop-shadow( 0 0 10px var(--color));
    background: transparent;
}

@keyframes line3 {
	0% {
		transform: rotateX(-80deg) rotateY(25deg) rotateZ(0deg);
	}
	100% {
		transform: rotateX(-80deg) rotateY(25deg) rotateZ(360deg);
	}
}

/* For Mobile Portrait View */
@media screen and (max-device-width: 480px)
    and (orientation: portrait) {
        .atomanimate {
            width: 160px;
            min-height: 160px;
            bottom: -100px;
            left: -250%;
        }
        .atomanimate .atom {
            width: 200px;
            height: 200px;
        }
        .jargen6::before{
            left: 75%;
            width: 14vw;
            height: 10%;
            transform: translate(-5%, -83%) rotate(287deg) skew(17deg);
        }
}
/* For iPhone 5 Portrait or Landscape View */
@media (device-height: 568px)
    and (device-width: 320px)
    and (-webkit-min-device-pixel-ratio: 2) {
        .atomanimate {
            width: 160px;
            min-height: 160px;
            bottom: -100px;
            left: -250%;
        }
        .atomanimate .atom {
            width: 200px;
            height: 200px;
        }
        .jargen6::before{
            transform: translate(-5%, -83%) rotate(287deg) skew(17deg);
        }
}
/* For iPhone 6 and 6 plus Portrait or Landscape View */
@media (min-device-height: 667px)
    and (min-device-width: 375px)
    and (-webkit-min-device-pixel-ratio: 3) {
        .atomanimate {
            width: 200px;
            min-height: 200px;
            bottom: -100px;
            left: -250%;
        }
        .atomanimate .atom {
            width: 200px;
            height: 200px;
        }
        .jargen6::before{
            left: 80%;
            width: 14vw;
            height: 10%;
            transform: translate(-5%, -79%) rotate(287deg) skew(17deg);
        }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .atomanimate{
        left:-20vw;
    }
    .jargen6::before{
        content: '';
        position: absolute;
        left: 77%;
        width: 11vw;
        height: 18%;
        transform: translate(4%, -55%) rotate(287deg) skew(17deg);
        background: #f1f5f9;
        z-index: 1;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .atomanimate{
        left:-100%;
    }
    .jargen6::before {
        content: '';
        position: absolute;
        left: 93%;
        width: 19vw;
        height: 26%;
        transform: translate(-88%, -28%) rotate(287deg) skew(17deg);
        background: #f1f5f9;
        z-index: 1;
    }
}
@media (min-width: 1200px) and (max-width: 1366px) {
    .atomanimate{
        left:-50%;
    }
    .jargen6::before{
        content: '';
        position: absolute;
        left: 93%;
        width: 14vw;
        height: 26%;
        transform: translate(-88%, -32%) rotate(287deg) skew(17deg);
        background: #f1f5f9;
        z-index: 1;  
    }
}
@media (min-width: 1367px) and (max-width:1920px){
    .jargen6::before {
        left: 80%;
        width: 14vw;
        height: 25%;
    }
}

#dnarepair1{
    background: url(../img/sun-icon-gold.svg) right -6% top 10% no-repeat, url(../img/shape-green-half.svg) left -3% top -20% no-repeat;
}
#dnarepair2{
    background: url(../img/shape-half.svg) right top no-repeat;
    background-size: 15%;
}
.hover-img img:hover{
    transition: all 0.3s linear;
    transform: scale(1.1);
    overflow: hidden;
}
.hover-img img{
    transition: all 0.3s linear;
}

/* For Mobile Portrait View */
@media screen and (max-device-width: 480px)
    and (orientation: portrait) {
        .text-title-content {
            font-size: 1.3rem;
        }
        #dnarepair1{
            background: url(../img/sun-icon-gold.svg) right -34% top 13% no-repeat, url(../img/shape-green-half.svg) left -16% top -65% no-repeat;
        }
        #dnarepair2{
            background-size: 35%;
        }
        .card-text{
            font-size: 0.8rem!important;
        }
}

/* For iPhone 6 and 6 plus Portrait or Landscape View */
@media (min-device-height: 667px)
    and (min-device-width: 375px)
    and (-webkit-min-device-pixel-ratio: 3) {
        .w-title{
            width: 90%;
            margin: auto;
        }
        #dnarepair1{
            background: url(../img/sun-icon-gold.svg) right -27% top 13% no-repeat, url(../img/shape-green-half.svg) left -16% top -55% no-repeat;
        }
        #dnarepair2{
            background-size: 35%;
        }
        .card-text{
            font-size: 0.8rem!important;
        }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .w-title{
        width: 90%;
        margin: auto;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .w-title{
        width: 90%;
        margin: auto;
    }
}

@media (min-width: 1367px) {
    #dnarepair1{
        background: url(../img/sun-icon-gold.svg) right -4% top 10% no-repeat, url(../img/shape-green-half.svg) left top no-repeat;
    }
}
/** end DnaRepair **/

/** start MAP/contuct us **/
.mapouter{
    position:relative;
    width:100%;
    height:auto;
    bottom: 0;
    left: 0;
}
.gmap_canvas {overflow:hidden;background:none!important;width:100%;}
.gmap_iframe {min-height:600px!important;}
section#contact div.card{
    width: 28%;
    height:fit-content;
    position: absolute;
    top: 10%;
    left: 64%;
    padding: 1rem;
    border:none;
    border-radius:1rem;
    background-color: #ffffff;
    z-index: 5;
}
section#contact div.card-body{
    background: url(../img/sun-icon-gold.svg) right -16% top no-repeat;
    background-size: 25%; 
}
section#contact input.form-control{
    border:none;
    background-color: #f1f5f9;
    color:#878686;
    padding: 0.8rem 0.75rem;
}
section#contact textarea.form-control{
    height:10rem;
    border:none;
    background-color: #f1f5f9;
    color:#878686;
    padding: 0.8rem 0.75rem;
}
section#contact button.btn.btn-primary {
    color: var(--bs-black);
    font-weight: bold;
    background-color: rgb(9 205 190)!important;
    border-color: rgb(9 205 190);
    border-radius: 2px;
}

/* For Mobile Portrait View */
@media screen and (max-device-width: 480px)
    and (orientation: portrait) {
        section#contact{
        height:fit-content;
        }
        .gmap_iframe {
        height: 130vh!important;
        }
        section#contact div.card {
        width: 90%;
        height: fit-content;
        top: 40%;
        left: 5%;
    }
    section#contact textarea.form-control{
    height:4rem;
    }
}
/* For iPhone 5 Portrait or Landscape View */
@media (device-height: 568px)
    and (device-width: 320px)
    and (-webkit-min-device-pixel-ratio: 2) {
        section#contact{
        height:130vh;
        }
        .gmap_iframe {
        height: 130vh!important;
        }
        section#contact div.card {
        width: 90%;
        height: fit-content;
        top: 30%;
        left: 5%;
    }
    section#contact textarea.form-control{
    height:6rem;
    }
}
/* For iPhone 6 and 6 plus Portrait or Landscape View */
@media (min-device-height: 667px)
    and (min-device-width: 375px)
    and (-webkit-min-device-pixel-ratio: 3) {
        section#contact{
        height:130vh;
        }
        .gmap_iframe {
        height: 130vh!important;
        }
        section#contact div.card {
        width: 90%;
        height: fit-content;
        top: 45%;
        left: 5%;
    }
    section#contact textarea.form-control{
    height:5rem;
    }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    section#contact div.card {
    width: 40%;
    left: 57%;
}
    section#contact textarea.form-control{
    height:6rem;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    section#contact div.card {
    width: 30%;
    }
    section#contact textarea.form-control{
    height:6rem;
    }
}
@media (min-width: 1200px) and (max-width: 1366px) {
    section#contact textarea.form-control{
    height:6rem;
    }
}
@media (min-width: 1367px) and (max-width:1920px){
    .gmap_iframe {
    height: 70vh!important;
    }
    .gmap_canvas {
    height: 100%;
}
    section#contact div.card {
    width: 25%;
    }
    section#contact textarea.form-control{
    height:10rem;
    }
}
/** end MAP/contact Us **/

.stretch-card>.card {
    width: 100%;
    min-width: 100%
}
.margin-title-testi{
    margin-top:3rem;
    margin-bottom:3rem;
}
.flex {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

@media (max-width:991.98px) {
    .padding {
        padding: 1.5rem
    }
    .margin-title-testi{
        margin-bottom:0;
    }
}

@media (max-width:767.98px) {
    .padding {
        padding: 1rem
    }
}

.owl-carousel .item{
 margin: 3px;
 display:grid;
}
.owl-carousel .item img{
 display: block;
 width: 100%;
 height: auto;
}

.owl-carousel{
   margin-bottom:15px;
}

.btn-whatsapp {
    position: fixed;
    bottom: 15%;
    right: 2%;
    width: 70px;
    height: 70px;
    border: 4px solid rgba(88,204,115,.5);
    border-radius: 50%;
    font-size: 22px;
    line-height: 22px;
    font-size: 35px;
    z-index: 1;
}
.btn-whatsapp img {
    animation: animateWA 6s;
    animation-iteration-count: infinite;
    animation-delay: 3s;
}
@keyframes animateWA{
    0%{
        transform: scaleX(1);
    }
    10% {
        transform: scale3d(1.5,1.5,1.5);
    }
    20% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(1);
    }
}