/* body */
body{
    background-color: #faf6f0;
}
/* nav */
nav{
    color:rgb(39, 36, 36);
}
nav ul li a{
    color: rgb(39, 36, 36);
}

/* Section titles */
.title{
    margin-bottom: 12px;
}
/* header */

.header{
    padding-top: 14.5vh;
    width: 100vw;
    height: 70vh;
    color: rgb(39, 36, 36);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container{
    width: 91.6vw;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15%;
}


.header-text{
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    line-height: 2.5rem;

}

/* main body */

.container{
    width: 100vw;
    color: rgb(39, 36, 36);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.main{
    height: 60vh;
}

.content{
    width: 91.6vw;
    height: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* projects cards */
.card{
    position: relative;
    width: 45%;
    height: 100%;
    background-color: #eae6e0;
}

.text-container{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: left;

    padding: 0 5%;

    font-size: 1.5rem;
    font-weight: 350;
}

/* image card */
.image-card{
    display: flex;
    align-items: space-between;
}
.image-container{
    flex-shrink: 0;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;

     overflow-y: scroll;

    -webkit-mask-image:
        linear-gradient(
            black 80%,
            transparent 100%
        );

    mask-image:
        linear-gradient(
            black 80%,
            transparent 100%
        );
        
        scrollbar-width: none;
}
.socmed{
    width: 90%;
    display: flex;
    justify-content: center;
}

.socmed img{
    margin: 5% 0;
    width: 100%;
}

#reel{
    margin-top: 10%;
}

#italy-review{
    margin-top: 25%;
}

/* email marketing content */


.email-marketing-content{
    width: 80%;
    display: flex;
    flex-direction: column;
}

#email-text-container{
    width: 80%;
    margin-bottom: 80px;
}

.para-text{
    font-size: 1.5rem;
    font-weight: 350;
    line-height: 1.8rem;
}

.email-image-container{
    background-color: #eae6e0;
    width: 100%;
    padding: 8px 20px;
}
.email-image-container img{
    width: 45%;
}

/* print marketing section */


.print-marketing-content{
    width: 80%;
    display: flex;
    flex-direction: column;
}

#print-text-container{
    width: 80%;
    margin-bottom: 80px;
}

.para-text{
    font-size: 1.5rem;
    font-weight: 350;
    line-height: 1.8rem;
}

.print-image-container{
    background-color: #eae6e0;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.print-image-container img{
    width: 48%;
    flex-shrink: 0;
    padding: 20px 0;
}

