img {
    width: 100%;
}

.box {
    padding: 3rem 0;
    background-color: #F2F2F2;
    font-family: 'Migrena Grotesque', sans-serif;
    font-weight: 500;
}

.box:nth-child(even) {
    background-color: #FBFBFB;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: 1fr 3fr 1fr;
        gap: 2rem;
    }
}

.box-img {
    width: 80%;
    margin: 0 auto;
} 

.grid {
    display: grid;
    margin: 0 3rem;
    height: auto !important;
    align-items: center;
}

.box-info {
    text-align: left;
}

.box-info p {
    /* font-size: 1rem; */
}

.box-info h3 {
    color: #0DB14B;
    text-transform: uppercase;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.0;
    font-weight: 700;
}

.box-icon {
    margin: 0 auto;
    margin-bottom: 4rem;
}

.box-icon i {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #F05454;
    color: #fff;
    font-size: 1.5rem;
    line-height: 48px;
    text-align: center;
    margin: 0 auto;
    transition: all 0.2s;
    padding-left: .2rem;
}

/* .box-icon i:hover {
    background-color: #fff;
    color: #F05454;
} */

.box-icon span {
    float: left;
    display: block;
    font-size: 1.2rem;
    line-height: 48px;
    text-align: center;
    margin-left: 1rem;
    color: #F05454;
    transition: all 0.3s;
    font-weight: 700;
    text-transform: uppercase;
}

/* .box-icon span:hover {
    color: #fff
} */

.flex {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.flex img {
    height: 40px;
    width: auto;
}

.dropdown {
    text-align: center;
}

.dropdown-content {
    display: none;
}

.btn-dropdown {
    border: none;
    padding: 1rem 2rem;
    color: #474d5d;
    background-color: transparent;
    border-bottom: 6px solid #08ab89;
    cursor: pointer;
    font-size: 2rem;
    text-transform: capitalize;
}

.btn-dropdown i {
    padding: 0 0 0 1rem;
}

.show {
    display: block;
}

/* Tabs Style */

.row{
    /* width: 100vw; */
    justify-content: center;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.tab button{
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 13px;
    width: 120px;
}

.tab button.active {
    background-color: #8BC53F;
    color: #fff;
}

.tab button:hover {
    background-color: #a2d85b;
    color: #fff;
}

.icon{
    width: 30%;
}

.intro{
    width: 70%;
    display: flex;
    gap: 30px;
    margin: 40px auto;
    font-size: 1.8em;
    font-weight: 300;
    font-family: proxima-soft-condensed, sans-serif;
}

.intro p {
    flex: 50%;
    text-align: justify;
}

.hero{
    width:100%;
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url("img/intro.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10vh;
}

.hero-text{
    margin: 4em;
    text-align: center;
    color: #fff;
    font-family: quasimoda, sans-serif;
}

.nav-bar{
    width: 100%;
    padding: 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background: #fff;
    z-index: 1;
}

.logo{
    height: 60px;
    align-items: center;
    display: flex;
}

.logo img{
    width: 200px;
}

.nav-items{ 
    padding-bottom: 0px;
    display: flex;
    gap: 30px;
    justify-content: space-around;
    align-items: center;

}

.nav-items > a {
    background-color: transparent;
    color: #7ABD31;
    text-align: center;
    letter-spacing: 1px;
    font-size: 16px;
    font-family: proxima-soft-condensed, sans-serif;
    text-decoration: none;
}

.nav-items > a:hover {
    text-decoration: underline #7ABD31;
}

.lang {
    display: flex;
    gap: 20px;
    justify-content: center;
}


.lang-ico{
    width: 28px;
    height: 28px;
    cursor: pointer;
}
.menu{
    display: none;
    width: 28px;
    cursor: pointer;

}

.menu .line{
    width:20px;
    height: 4px;
    background-color: #000;
    display: inline-block;
}

.menu .line:last-child{
    margin-top: 6px;
}

.pop{
    display: none;
}

@media (max-width:900px){

    .nav-items {
        display:none;
    }

    .lang {
        display: none;
        margin: 15px 0;
    }

    .intro {
        flex-direction: column;
        width: 80%;
    }
    
    .menu{
        display:flex;
        flex-wrap: wrap; 
        position: absolute;
        right: 20px;
    }

    .pop{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255,255,255,0.55);
        display: flex;
        align-items: center;
        justify-content: center;
    } 

    .nav-cont{
        background: #fff;
        width: 40vw;        
    }

    .nav-cont a{
        background-color: #fff;
        line-height: 19px;
        color: #7ABD31;
        text-align: center;
        letter-spacing: 1px;
        font-size: 16px;
        font-family: proxima-soft-condensed, sans-serif;
        font-weight: 500;
        text-decoration: none;
        font-style: normal;
        margin: 1em 0;
        width: 100%;
        display: inline-block;
    }
}