
/*font-family: 'Montserrat', sans-serif;*/

:root {
    --fontcolor-darkblue:rgba(38,56,118,1);
    --bg-lightblue: rgba(157, 201, 229,1);
    --lightblue: rgba(190,222,245,1);
    --beige-bg-team:rgba(253,247,235,1);
    --btn-rollover :rgba(57,86,185,1);
}
.blue {background-color: cadetblue;}
.red {background-color: crimson;}
.yellow {background-color: goldenrod;}
.green { background-color: lightseagreen;}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    color:var(--fontcolor-darkblue);
    overflow-x: hidden;
}

ul,li {    list-style: none;}
a {    text-decoration: none;}
p {    line-height: 1.5em;}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6em;
    font-weight: 600;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4em;
    font-weight: 300;
}
h3 {
    font-size:1.3em;
    font-weight:bold;
}
h4 {
    font-weight: bold;
}


header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px 0;
    z-index: 9000;
}

section {
    width: 100%;
    min-height: 100vh;
    /* position:relative; */
}
.mainwrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

section#main {
    background: var(--bg-lightblue);
    background: linear-gradient(0deg, rgba(157, 201, 229, 0) 0%, rgba(178, 222, 250, 1) 100%);
    padding-top: 200px;
}
section#main h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 18px;
}
section#main .super {
    font-size: 2.5em;
    position: relative;
    top: -0.8em;
}
section#main .counter {
    font-size: 8em;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
}
section#main h6 {
    font-size: 1.2em;
}
section#main p {
    line-height: 10em;
}

.wrapperwave {
    width:100%;
    height:100vh;
    position: relative; /*needed for waves */
    background: linear-gradient(180deg, rgba(195, 219, 234, 0) 0%, rgb(239, 248, 253) 100%);
}

section#cause {
    position: absolute;
    z-index:200;
}
section#products {
    min-height: 260vh;
    padding-top: 150px;
}
section#products .title,
section#products .price {
    margin-top: 10px;
    font-weight: bold;
    font-size: 24px;
}
section#products img {
    width: 400px;
    height: 400px;
    border: rgb(157, 201, 229,0.5) 1px solid;
}
section#beneficiary {
    background-color:var(--lightblue);
    padding-top: 100px;
    position:relative;
}
section#beneficiary img.sif {
    width:150%;
}
section#team {
    height: 50vh;
    background-color:var(--beige-bg-team);
    clip-path: ellipse(120% 100% at 49.3% 100%);
}
footer {
    background-color:var(--fontcolor-darkblue);
    color: white;
    padding: 25px;
    font-weight: 100;
    font-family: 'Lato', sans-serif;
}
footer p { margin-bottom: 0; }



/* Components */
.logosvg {
    width:80%;
}
.curly {
    position: absolute;
    z-index:1;
    
}
.s { width:10%; }

.pos1 { top:15%; left:-1%; }
.pos2 { bottom:15%; left:55%; }
.pos3 { top:20%; right:-3%; }

.downwave {
    height: 180px;   
}

.progressbar {
    background-color: rgba(192, 192, 192,0.2);
    width: 40%;
    border-radius: 30px;
}
.progressbar .barcontainer {
    background-color: var(--fontcolor-darkblue);
    color: white;
    padding: 0.1%;
    text-align: right;
    font-size: 0.8em;
    border-radius: 30px;
}




.helpgraphics {
    border: var(--fontcolor-darkblue) 1px solid;
    border-radius: 20px;
    /* padding:20px; */
}
.helpgraphics svg {
    min-height:100px;
}
.helpgraphics p {
    margin-top:10px;
}
.helpgraphics .search svg {
    width:80%;
}
.helpgraphics .purchase svg {
    width:60%;
}
.helpgraphics .email svg {
    padding-top: 25px;
    width:50%;
}
.helpgraphics .deliver svg {
    width:80%;
}


.helparrow {
    padding-top:30px;
}

.helpgraphics p {
    font-size:0.8em;
}

text {
    fill: rgba(38, 56, 118, 0.2);
    font-size: 2em;
    font-weight:100;
    letter-spacing: 2px;
}

.btn_blue {
    position:relative;
    z-index:300;
    background-color: var(--fontcolor-darkblue);
    border-radius: 30px;
    padding: 10px 40px;
    color: white;
    width:280px;
    text-align:center;
    transition: all ease-in-out 0.2s;
}

.btn_blue:hover {
    background-color:var(--btn-rollover);
    color: white;
}

.btn_blue svg {
    fill: #B2DEFA;
    width: 8%;
    margin-left: 20px;
}

.btn_white {
    background-color: white;
    border-radius: 30px;
    padding: 10px 40px;
    color: var(--fontcolor-darkblue);
    transition: all ease-in-out 0.2s;
}

.btn_white:hover {
    background-color:var(--btn-rollover);
    color: white;
}

.btn_white svg {
    fill: #B2DEFA;
    width: 5%;
    margin-left: 10px;
}

.insta svg {
    fill: #B2DEFA;
    width: 4%;
    margin-right: 10px;
    margin-left:0px;
    padding-bottom:2px;
}

/*back to top*/
#btn-back-to-top {
    position: fixed;
    z-index:8000;
    bottom: 60px;
    right: -100px;
    /* display: none; */
    transition: all ease-in-out 0.2s;
  }

.btn-floating.btn-lg {
    background-color: #A5CDE6;
    width: 70px;
    height: 70px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    transform:rotate(45deg);
    box-shadow: 2px 2px 14px #ACCAE0; 
}

.fa {
    color:rgba(255,255,255,0.5);
    transform: rotate(-45deg);
}
.cupvector {
    height:300px;
    border: var(--fontcolor-darkblue) 1px solid;
    display:block;
    background: url(../images/groupcups.jpg) no-repeat;
    background-size: cover;
    margin-top: 20px;
}


.sif_small {
    display:none;
}
.helparrow svg {
    transform: rotate(0deg);
    width:80%;
}

@media screen and (max-width:1500px) {
    section#products {
        height: 170vh;
        padding-top: 150px;
    }

  }
  
  @media screen and (max-width:1300px) {
    section#products {
        padding-top: 60px;
        height:180vh;
    }  
  }

/* On screens that are 600px or less, set the background color to olive */
  @media screen and (max-width:600px) {
    section {
        text-align: center;
    }
    .wrapperwave,
    section#cause {
        min-height:180vh;
    }
    section#beneficiary {
        min-height:120vh;
        padding-top:0px;
    }
    section#products {
        min-height:440vh;
        padding-top:90px;
    }
    .sif_small {
        display:block;
    }
    .sif {
        display:none;
    }
    .downwave {
        height:50px;
    }
    /* .ocean {
        display:none;
    } */
    .logosvg {
        width:30%;
        margin: 0px auto 20px;va
    }
    section#team {
        height:70vh;
        padding-top:20px;
        clip-path: ellipse(180% 100% at 49.3% 100%);
    }
    section#main .counter {
        font-size: 5em;
    }
    .btn-floating.btn-lg {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
    }

    .helpgraphics svg {
        min-height:100px;
        width: 100%;
    }
    .helpgraphics p {
        margin-top:10px;
    }
    
    .helparrow {
        padding-top:30px;
        padding-bottom:40px;
    }
    .helparrow svg {
        transform: rotate(90deg);
        width:20%;
    }
    
    .helpgraphics p {
        font-size:1em;
    }
    section#products img {
        width: 200px;
        height: 200px;
        border: rgb(157, 201, 229,0.5) 1px solid;
    }

  }

  @media screen and (max-width:420px) {
    section#products {
        min-height:470vh;
    }
  }

  @media screen and (max-width:380px) {
    section#products {
        min-height:500vh;
    }

  } 
  
  .meter {
                  box-sizing: content-box;
                  height: 20px; /* Can be anything */
                  position: relative;
                  margin: 0px 0 10px 0; /* Just for demo spacing */
                  background: white;
                  border-radius: 25px;
                  padding: 10px;
                  width: 40%;
                  
                }
            
                .meter > span {
                display: block;
                height: 100%;
                
                border-top-right-radius: 20px;
                border-bottom-right-radius: 20px;
                border-top-left-radius: 20px;
                border-bottom-left-radius: 20px;
                background-color: rgba(157, 201, 229,1);
                background-image: linear-gradient(
                center bottom,
                rgb(43, 194, 83) 37%,
                rgb(84, 240, 84) 69%
                );
                box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
                inset 0 -2px 6px rgba(0, 0, 0, 0.4);
                position: relative;
                overflow: hidden;
                }

.value {
/*width:40%;*/
color:white;
}
.value p {
    line-height:1 !important;
    padding-top:2px;
    text-align:right;
    padding-right:5px;
}


                
                .meter > span:after,
                .animate > span > span {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    bottom: 0;
                    right: 0;
                    background-image: linear-gradient(
                        -45deg,
                        rgba(255, 255, 255, 0.2) 25%,
                        transparent 25%,
                        transparent 50%,
                        rgba(255, 255, 255, 0.2) 50%,
                        rgba(255, 255, 255, 0.2) 75%,
                        transparent 75%,
                        transparent
                    );
                    z-index: 1;
                    background-size: 50px 50px;
                    animation: move 2s linear infinite;
                    border-top-right-radius: 8px;
                    border-bottom-right-radius: 8px;
                    border-top-left-radius: 20px;
                    border-bottom-left-radius: 20px;
                    overflow: hidden;
                }
                
                .animate > span:after {
                    display: none;
                }
                
                @keyframes move {
                0% {
                    background-position: 0 0;
                }
                100% {
                    background-position: 50px 50px;
                }
                }
 