
/*-------GLOBAL------------*/
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap');

* {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fira Sans', sans-serif;
    background-color: #f1f0fe;
}
section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}
img {
    width: 100%;
}
a {
    text-decoration: none;
}
.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}
.flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 50px 20px;
}
.texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    padding: 30px;
}
.description {
    color: #3c3c3c;
    font-weight: 500;
    line-height: 20px;
}
.btn {
    text-decoration: none;
    display: inline-block;
    padding: 10px;
    margin-top: 10px;
    background-image: linear-gradient(#7EB541, #3f6413);
    border-radius: 7px;
    color: white;
}
.text-title {
    font-size: 35px;
    color: #38383a;
    margin: 16px 0;
}

.section-title {
    width: 50%;
    margin: 80px auto 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*------NAVBAR-------*/
nav {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .logo {
    margin: 0 50px;
}
nav .logo h1 {
    font-size: 40px;
    color: #000000;
    font-weight: 1000;
}
nav .logo h1 span {
    color: #7EB541;
}
nav .menu {
    width: 45%;
    margin-right: 30px;
}
nav .menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul li {
    list-style: none;
}
nav li a {
    text-decoration: none;
    color: #3d3d3d;
    font-weight: 600;
}



/*------HEADER-------*/
.imgBx {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}
.imgBx img {
    width: 100%;
}

.texts .header-title {
    font-size: 45px;
    color: #38383a;
    letter-spacing: 2px;
}
.header-title span {
    color: #7EB541;
}


/*------ABOUT-------*/
.about {
    background-image: url('../images/Frame-57.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.about .imgBx img {
    width: 80%;
}
.about .btn {
    margin-top: 40px;
}


/*------RECIPIES-------*/
.recipies .flex {
    padding: 0;
    margin: 20px;
}
.card {
    width: 25%;
    /* flex-basis: 25%; */
    border: 14px solid #fff;
    border-radius: 24px;
    box-shadow: 0 0 15px #0f0f0f59;
    background-color: #fff;
}
.card img {
    border-radius: 12px;
}
.card a {
    text-decoration: none;
}
.card .card-title {
    font-size: 22px;
    color: #38383a;
}


/*------SUBSCRIBER-------*/
.subscriber .flex {
    justify-content: space-around;
}

.subscriber .texts {
    flex-basis: 33%;
    width: 25%;
    align-items: center;
}
.subscriber .texts h1 {
    width: 100%;
    text-align: center;
    display: block;
    font-size: 40px;
    margin: 0;
}
.subscriber .texts p {
    text-align: center;
}


/* -----CONTACT------ */
.contact {
    background-image: url(../images/food/Project\ Cover4.png);
    background-position-y: bottom;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.contact .transparent {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(270deg, #482ace1e, #5237b5d2);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.contact .section-title {
    margin: 10px auto;
    padding: 10px;
}
.contact .section-title .text-title{
    color: #f1f0fe;
}
.contact .flex {
    justify-content: flex-start;
}
.contact .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 40%;
    height: 400px;
}
.contact .contact-form .email,
.contact .contact-form .name,
.contact .contact-form .msgbox {
    width: 100%;
    height: 30px;
    margin: 5px;
    padding: 10px;
    background-color: #f1f0fec1;
    border: none;
    border-radius: 10px;
    color: #2d2d3a;
    font-size: 1.2rem;
}
.contact .contact-form .msgbox {
    height: 180px;
}
.contact-form .btn {
    border: none;
}





/*------FOOTER-------*/
.footer {
    background-color: #2d2d3a;
}
.footer .texts {
    width: 100%;
    justify-content: center;
    align-items: center;
}
.footer .texts h1 {
    color: #8d8dae;
    font-size: 30px;
}
.footer .texts h1 span {
    color: #7EB541;
}
.footer p {
    color: #6b6b82;
}