*
{
    margin: 0;
    padding: 0;
    font-family:'Libre Franklin';
    font-size: 20px;
}

body
{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card
{
    width: 48%;
    height: 90%;
    /* background-color: rgb(233, 241, 241); */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.logo
{
    margin-top: 2%;
}

.heading
{
    margin-top: 3%;
    text-align: center;
    line-height: 2.2em;
    color: hsl(209, 33%, 12%);
}

.heading p
{
    font-weight: 100;
}
h1
{
    font-size: 2em;
}
.hh1
{
    font-size: 1em;
    font-weight: 200;
    color:  hsl(0, 0%, 59%);
}

.Emailform
{
    width: 90%;
    display: flex;
    margin: 1% auto;
    flex-direction: row; 
    justify-content: space-evenly;
    position: relative;
}
.error
{
    position: absolute;
    bottom: -25%;
    left: 15.5%;
    color:  hsl(354, 100%, 66%);
    font-size: 12px;
    display: none;
    font-style: oblique;
}

.emailbox
{
    width: 44%;
    padding: 1.5%;
    border-radius: 2em;
    border: 1px solid hsl(0, 0%, 59%);
}


.subBtn
{
    width: 25%;
    padding: 1.5%;
    border-radius: 2em;
    background-color:hsl(223, 87%, 63%);
    color: white;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0px 6px 10px hsl(223, 100%, 88%);
}

.subBtn:hover
{
    background-color:hsl(223, 80%, 68%);
}
.emailbox input
{
    /* background-color: rgb(233, 241, 241); */
    border: none;
    outline: none;
    background-color: none  ;
    padding-left: 2%;
    font-size: 14px;
}

.image
{
    width: 80%;
    height: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin:  0% auto;
    margin-top: 6%;
    /* background-color: blue; */
}

.image img
{
    /* padding: 20%; */
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.foot
{
    position: absolute;
    display: flex;
    flex-direction: column;
    margin-bottom: 0%;
    bottom: 0%;
}

.icons
{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 8%;
    box-sizing: border-box;
}


.face
{
    width: 15%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid hsl(0, 0%, 59%);
    cursor: pointer;
    background-color: white;
    box-sizing: border-box;
}

.twet
{
    width: 15%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0% 4%;
    cursor: pointer;
    background-color: white;
    border: 1px solid hsl(0, 0%, 59%);
    box-sizing: border-box;
}

.insta
{
    width: 15%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid hsl(0, 0%, 59%);
    background-color: white;
    box-sizing: border-box;
    
}
.hov:hover
{
    background-color: hsl(223, 87%, 63%);
    fill: white;
    border: none;
}

.hov:hover svg
{
        fill: white;
}
    
.foot p
{
    font-size: 12px;
    color: hsl(0, 0%, 59%);
}


@media screen and (max-width:768px){

.card
{   
    width: 100%;
}

.heading h1
{
    font-size: 1.4em;
}
.hh1
{
    font-weight: 300;
}

.Emailform
{
    width: 90%;
    display: flex;
    margin: 1% auto;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    position: relative;
}

.emailbox
{
    width: 80%;
    padding: 1.5%;
    border-radius: 1em;
    border: 1px solid hsl(223, 87%, 63%);
}


.subBtn
{
    width: 83%;
    padding: 3%;
    border-radius: 2em;
    background-color:hsl(223, 87%, 63%);
    color: white;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    margin-top:5%;
}


}