@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

html {
    background-color: rgb(40, 40, 88);
    background: url("images/bakground-mare.png") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #e9e9e9;
    font-family: 'Chakra Petch', sans-serif;
    margin: 0 40px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* height: 10vh; */
}

section { 
    max-width: 100%;
}

.logo-container {
    display: flex;
    justify-content: left;
}

.logo-nav {
    width: 200px;
}

.nav-content {
    display: flex;
    justify-content: right;
    padding: 0 10px 0 0;
}

.home-section {
    display: flex;
    flex-wrap: wrap;
}

.home-content {
    display:  flex;
    flex: 2;
    flex-direction: column;
    justify-content: center;
    /* border: 1px solid white; */
    /* padding: 10px; */
}

.home-image-container {
    display:  flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    /* border: 1px solid white; */
    /* padding: 10px; */
    background: url("images/mind\ gif.gif") no-repeat center center; 
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    margin: 50px 0;
}

.headline-hr {
    border: 1px solid gray;
    width: 50%;
}

.check-icon {
    width: 20px;
}

.swiss-icon {
    border-radius: 5px;
    width: 200px;
}

.cta {
    display: flex;
}

.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 250px;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 20px;
    background-color: white;
    border-radius: 5px;
    border: none;
    box-shadow: rgba(244, 244, 244, 0.35) 0px 5px 15px;
}

.glass {
    width: 500px;
    height: 500px;
}

.ingredients {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.ingredient {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 500px;
    height: 250px;
    max-width: 90%;
    border: 2px solid white;
    border-radius: 20px;
    padding: 10px;
    margin: 20px;
}

.ingredient-header {
    position: relative;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 20px;
}

.ingredient-brain {
    position: absolute;
    left: 0px;
}

.ingredient-title {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    min-height: 50px;
    /* height: 50px; */
}

/* .ingredient-content {

} */

.ingredient-study {
    display: flex;
    justify-content: center;
}

.study-btn {
    background-color: #D73CBE;
    color: white;
    font-weight: 800;
    padding: 10px;
    border: 1px solid black;
    border-radius: 5px;
    font-family: 'Chakra Petch', sans-serif;
    width: 150px;
    margin: 10px;
    cursor: pointer;
}

.swiss {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.info-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 0;
}

.info {
    margin: 20px 20px;
    width: 400px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.info-icon {
    width: 100px;
}

.info-header {
    text-align: center;
}

.nutrients {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-item {
    width: 800px;
    max-width: 90%;
}

.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-decoration: none;
    /* background-color: black; */
    height: 50px;
}

.big {
    font-size: 40px;
}


@media screen and (max-width: 900px) {
    body {
        width: 100%;
        margin: 0;
    }
    html {
        margin: 0;
    }

    .home-section {
        flex-direction: column-reverse;
    }

    .hide {
        display: none;
    }

    .logo-container {
    display: flex;
    justify-content: left;
    flex: 1;
    }

    .nav-content {
    display: flex;
    justify-content: right;
    flex: 1;
    }

    .logo-nav {
        width: 150px;
        margin: 8px;
    }

    .headline {
        text-align: center;
        margin-bottom: 0;
    }

    .subheadline {
        margin-top: 0;
        text-align: center;
    }

    .benefits {
        text-align: center;
    }

    .swiss {
        text-align: center;
    }

    .cta {
        justify-content: center;
    }

    .glass {
        width: 280px;
        height: 280px;
    }

    .headline-hr {
        width: 100%;
    }

    .ingredient {
        max-width: 90%;
        padding: 10px;
        /* margin: 20px; */
    }

    .ingredient-brain {
        display: none;
    }

    .big {
        font-size: 27px;
    }
  }

.pink {
    color: #D73CBE;
}

.grow { 
    transition: all .5s ease-in-out; 
}
    
.grow:hover { 
    transform: scale(1.1); 
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
    @-webkit-keyframes pulse {
    0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    }
    @keyframes pulse {
    0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    } 

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
    @-webkit-keyframes fadeInRightBig {
    0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    }
    100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    }
    }
    @keyframes fadeInRightBig {
    0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    }
    100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    }
    }

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
    @-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
    }
    @keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
    }

/* SCROLLBAR */
/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #242c5c; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }