@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/*
.inter-<uniquifier> {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

*/

/* Custom properties */
:root {
    --light-clr: hsl(0, 0%, 100%);
    --dark-clr: hsl(115, 36%, 26%);
    --accent-clr: hsl(120, 40, 98);
    --green-clr: hsl(149, 98%, 21%);
    --nav-height: 1.8rem;
    --number-of-columns: 4;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 800;
}

@media screen and (min-width: 48em) {
    :root{ 
        --number-of-columns: 8;
    }

}

@media screen and (min-width: 64em) {
    :root{
            --number-of-columns: 12;
    }

}
/* Reset */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--dark-clr);
}

body.scroll-false {
    overflow-y: hidden;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.h2__size {
    font-size: 5.6rem;
    font-weight: 500;
    line-height: 4.6rem;
    margin-bottom: 1.2rem;
}


@media screen and (min-width: 48em) {
    body {
        font-size: 1.6rem;
    }

}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img,
picture {
    display: block;
    max-width: 100%;
}

input,
button {
    font: inherit;
    background-color: transparent;
    border: none;
    outline: none;

}

i {
    font-size: 2.4rem;
    line-height: 2.4rem;
}

section {
    overflow: hidden;
}

/*  Reusable classes */

.button {
    display: inline-block;
    font-weight: var(--font-weight-medium);
    text-align: center;
    cursor: pointer;
    border-radius: .8rem;
    transition: background-color .25s;
}

.button--darkgreen {
    background-color: var(--dark-clr);
    color: var(--light-clr);
}

.button--darkgreen:hover {
    background-color: hsl(115, 36%, 35%);
}

.button--normal {
    font-size: 1.8rem;
    padding: 1.5rem 3.6rem;
}

.button_bg {
    background-color: s
}

.button--green{
    background-color: var(--green-clr);
    color: var(--light-clr);
}

.button--green:hover {
    background-color: hsl(149, 98%, 35%);
}

.button--action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 117rem;
    margin-inline: auto;
    padding-inline: 1.8rem;
}



.row {
    display: grid;
    grid-template-columns: repeat(var(--number-of-columns), 1fr);
}

.row>* {
    grid-column: span var(--number-of-columns);
}

.green {
    background-color: #016B35;
    color: #F8FCF8;
}

.card__1, .card__2, .card__3 {
    border-radius: 24px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1),
        0 6px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 2rem;
    
}

/*  Header  */

.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--nav-height);
}

.nav__overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, .8);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}

.nav__overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav__menu{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 27rem;
    background-color: #F8FCF8;
    padding: 5.4rem 1.8rem;
    transform: translate(28rem);
    transition: transform .25s;

}

.active {
    font-weight: 500;
}

.nav__menu.active {
    transform: translateX(0);
}

.nav__list{
    display: flex;
    flex-direction: column;
    gap : .5rem;
}

.nav__list-link {
    display: inline-block;
    padding: .5rem;
    transition: color .25s;
}

.nav__list-link:hover {
    color: var(--green-clr);
}

.nav__button{
    display: block;
    padding: 1.2rem 2.5rem;
    margin-top: 1.5rem;
}

.nav__close{
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
}

@media screen and (min-width: 64em) {
    .nav__logo {
        margin-right: 7.9rem;
    }

    .nav__menu{
         position: initial;
         width: initial;
         background-color: transparent;
         padding: 0;
         transform: none;
         transition: none;
         display: flex;
         align-items: center;
    }

    .nav__list{
        flex-direction: row;
        gap: 2.4rem;
    }

    .nav__button{
        margin-top: 0;
        margin-left: 3.2rem;
    }

    .nav__close,
    .nav__open {
        display: none;
    }

    


}

@media screen and (min-width: 75em) {
    .nav__list {
            
            gap: 4.8rem;
        }
}



/* Showcase  */

.showcase {
    padding-top: calc(var(--nav-height) * 2 + 3.4rem);
    padding-bottom: 3.8rem;
   
}

.showcase1__1 {
    padding-top: calc(var(--nav-height) * 2 + 3.4rem);
}

.showcase2__2{
    padding-top: calc(var(--nav-height) * 2 + 3.4rem);
    padding-bottom: 3.8rem;
}

.showcase3__3{
    padding-top: calc(var(--nav-height) * 2 + 3.4rem);
    padding-bottom: 3.8rem;
}

.showcase4__4 {
    padding-top: calc(var(--nav-height) * 2 + 3.4rem);
  
}

.showcase__bottom-mg {
    padding-bottom: 7.6rem;
    margin-bottom: 6rem;
}

.showcase__center {
    text-align: center;
    margin-bottom: 1rem;
}


.showcase__center
input {
    background-color: #fff;
    width: 25vw;
    height: 5vh;
    padding: 2rem;
    border-radius: 6px;
}

.showcase__center button{
    background-color: black;
    color: #fff;
    padding: 1.2rem;
    border-radius: 6px;
    cursor: pointer;
}

.img__center{
    display: flex;
    justify-content: center;
}

.showcase__container {
    gap: 3.835rem 3rem;
}

.showcase__title {
    font-size: clamp(3.6rem, 5vw, 7rem);
    line-height: 4.6rem;
    margin-bottom: 1.2rem;

}

.showcase__paragraph {
    line-height: 2.4rem ;
    margin-bottom: 2.8rem;
}



.showcase__button {
    margin-bottom: 3.8rem;
}

.download {
    display: flex;
    gap: 2rem;
    
}

.showcase__align{
    margin-top: 15rem;
   
}

.showcase1 {
    background-color: #F8FCF8;
  
}

.showcase2 {
    padding-top: calc(var(--nav-height) * 2 + 3.4rem);
    padding-bottom: 3.8rem;
}

.showcase3 {
    padding-bottom: 6rem;
}

.showcase3 img{ 
    border-radius: 24px;
}

.showcase3 a.button{
    background-color: #fff;
    color:hsl(115, 36%, 26%);
}

.vision {
    background-image: url("../assets/images/our-vision-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    
    
}




@media screen and (min-width: 23.5em) {
    .showcase__image-group img{
        margin-inline: auto;
    }
    .showcase__card {
        display: block;
       
       
    }

    .card__1,
    .card__2,
    .card__3 {
        margin-top: 2rem;
    }

    .testimony__card1,
    .testimony__card2,
    .testimony__card3 {

        margin-top: 2rem;
    }

    .footer__item {
        text-align: center;
    }

    .footer__item strong {
        
        font-size: 2rem;
    }

    .logo {
        display: flex;
        justify-content: center;

    }

    

    .social {
        display: flex;
        justify-content: center;
        gap: 4rem;
        margin: 3rem 0;
        
    }

    .newsletter__item{
        display: grid;
        gap: 2rem;
    }

    .newsletter__item input{
        width: 100%;
    }

    .showcase__image-group ul {
        list-style-type: circle;
    
    }
    
    .showcase__image-group ul li {
        margin-left: 3rem;
    }

        .contact__mail {
            font-size: 2.4rem;
        }
    
    .team__iteam {
        margin-bottom: 10rem;
    }

    .team__container {
        display: grid;
        justify-content: center;
    }

    
}

@media screen and (min-width: 37.5em) {
    .showcase_image-group{
        grid-column: span 3;
    }

    
    
}

@media screen and (min-width: 48em) {
    .showcase{
        padding-top: calc(var(--nav-height) * 2 + 9.2rem);
        padding-bottom: 10.4rem;
    }

    .showcase__text-group{
        grid-column: 2/span 6;
        text-align: center;
    }
    
    .showcase__title{
        line-height: 5.6rem;
    }

    .showcase__paragraph{
        font-size: 2rem;
        line-height: 3.2rem;
    }

}

@media screen and (min-width: 64em) {
    

    .showcase__text-group{
        grid-column: span 6;
        text-align: left;
    }

    .showcase__title{
        margin-bottom: 2rem;
        line-height: 7.6rem;
    }

    .showcase__paragraph{
        margin-bottom: 4rem;
        padding-right: 5rem;
    }

    .showcase__button {
        margin-bottom: 7rem;
    }

    .showcase__image-group{
        grid-column: span 6;
    }

    .showcase__image-group ul {
        list-style-type: circle;
        
    }

    .showcase__image-group ul li {
        margin-left: 3rem;
    }
    
    .testimony,
    .showcase__card {
        display: flex;
        gap: 2rem;
        
    }

    

    .testimony__paragraph {
            width: 16vw;
    }
    

    .footer__item {
        text-align: left;
    }

    .social {
            display: flex;
            margin-top: 2rem;
            gap: 3rem;
    }

    .logo {
            
        display: block;
    
    }

    .newsletter__item {
        display: flex;
        justify-content: center;
           
    }
    
    .newsletter__item input {
        width: 40%;
    }

        .contact__mail {
            font-size: 4rem;
        }

        .team__container {
            display: flex;
            gap: 10rem;
            justify-content: center;
        }

    iframe {
        width: 640px;
        height: 480px;
        border: none;
        border-radius: 1.6rem;
    }

   
}

.showcase__image-group img {
    border-radius: 1rem;
}

/*  Team   */

.container__margin-top {
    margin-top: 10rem;
}



.team__iteam img {
    width: 22rem;
    height: 22rem;
    border-radius: 24px;
    
}

.team__iteam p {
    font-size: 1.7rem;
    font-weight: 800;
    margin-top: 1rem;
}



/*  contact us    */





.form_field label {
    color: #000;
   
}

.form_field input {
    border: 1px solid #EEEEEE;
    background-color: #EFEFEF;
    padding: 1rem;
    width: 100%;
    border-radius: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.4rem;
    
}

.form_field textarea {
    border: 1px solid #EEEEEE;
    background-color: #EFEFEF;
    padding: 1rem;
    width: 100%;
    height: 10vh;
    border-radius: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.4rem;
}

.form_field input[type="submit"] {
    background-color: var(--green-clr);
}






.testimony__card1,
.testimony__card2, .testimony__card3{
  
    border: 1px solid #E0DEDE;
    border-radius: 24px;
    padding: 2rem;
}

.testimony__user {
    border-bottom: 1px solid #E0DEDE;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.testimony__user span {
    margin-left: 1rem;
}



.testimony__view--all {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

a.quote {
    margin: 0;
}



.showcase__image-bg {
    background-image: url(../assets/images/fizzle_crypto_currency.png);
    background-size: 100%;
}

.showcase__card h4 {
    margin-bottom: 2rem;
}

.showcase__card p {
    margin-bottom: 2rem;
}


/* Footer  */

.footer {
    border-top: 1px solid #fff;
    margin-top: 9rem;
    padding-top: 4rem;
}

.footer p,
.footer li{
    margin-top: 2rem;
}



.footer__group {
    display: flex;
    text-align: left;
    
}

.footer__1 {
    flex-grow: 1;
}














 