@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
a{
    text-decoration: none !important;
}
.headerBox{
    text-align: center;
    padding: 15px 0;
}
.mainHeading a{
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #1d1d1f;
}
.subHeading{
    font-size: 22px;
    font-weight: 500;
    color: #767676;
    margin: 0;
    line-height: 30px;
}
.cardBox {
    box-shadow: 0px 2px 10px #eee;
    width: 100%;
    max-width: 650px;
    margin: auto;   
}
.imageBox {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    user-select: none;
    border-radius: 2px;
    box-shadow: 0px 1px 5px #e6e6e6;
}
.imageBox .image{
    width: 100%;
}
.overlay {
    background-color: rgb(249 228 219 / 60%);
    transition: all 0.3s;
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    color: #fff;
    justify-content: center;
    display: flex;
    align-items: center;
}
.imageBoxContent {
    text-align: center;
    background-color: #ffffff80;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 8px 0;
    color: #1d1d1f;
}
.imageBoxContent.bgPink{
    background-color: #d2227985;
    color: #fff;
}
.imageBoxContent.bgPink p{
    color: #fff;
}
.imageBoxContent h4{
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 5px;
}
.imageBoxContent p{
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #666;
}
.cardParagraph {
    padding: 10px 3px;
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    color: #767676;
}
.emailBox {
    width: 100%;
    max-width: 650px;
    height: 300px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    border-radius: 2px;
}
.emailBoxContent {
    text-align: center;
    color: #fff;
}
.iconBox{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF81AE;
    color: #fff;
    border-radius: 50px;
    margin: 0 auto 8px;
    font-size: 20px;
}
.emailLink{
    color: #fff;
}
.emailLink:hover{
    color: #fff;
}
@media only screen and (max-width: 600px)  {
    .mainHeading a{
        font-size: 26px;
    }
    .subHeading{
        font-size: 19px;
    }
    .cardParagraph{
        font-size: 16px;
    }
    .emailBox{
        max-width: unset;
        height: 250px;
    }
    .cardBox{
        margin-bottom: 8px;
    }
}
@media only screen and (max-width: 320px)  {
    body{
        width: 320px;
        overflow: auto;
    }
}
@media only screen and (max-width: 375px) and (min-width: 300px)  {
    .mainHeading a{
        font-size: 22px;
    }
    .imageBoxContent p{
        font-size: 13px;
        line-height: 28px;
    }
    .cardParagraph{
        font-size: 14px;
        line-height: 28px;
    }
}