*
{
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
}

:root
{
    --Red: hsl(0, 100%, 74%) ;
    --Green: hsl(154, 59%, 51%);
    --Blue: hsl(248, 32%, 49%);
    --DarkBlue: hsl(249, 10%, 26%) ;
    --GrayishBlue: hsl(246, 25%, 77%);
    font-size: 16px;
}

.page
{
    width: 100vw;
    height: 100vh;
    background-image:url(images/bg-intro-desktop.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--Red);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maincard
{
    width: 80%;
    height: 75%;
    display: flex;
}

.card1
{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.intro
{
    padding-left: 2%;
    color: white;
}
.intro h1
{
    font-size:3em;
    line-height: 1.2em;
    font-weight: 700;
    /* padding: 2%; */
}

.intro p{
    margin-top: 3%;
    font-weight: 400;
    padding-right: 6%;
}
.card2
{
    width: 50%  ;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.price
{
    width: 90%;
}

.pricespan
{
    font-weight: 400;
    font-size: 14px;
    color: var(--GrayishBlue);
}
.heading
{
    background-color: var(--Blue);
    text-align: center;
    padding: 3%;
    border-radius: 0.5em;
    color: white;
    font-size: 12px;
    font-weight: 300;
    box-shadow:  0px 8px 2px  rgba(0,0,0, 0.2);
}
.formm
{
    width: 90%;
    height: 100%;
    margin-top: 5%;
    border-radius: 0.5em;
    background-color: white;
    padding: 6%;
    box-sizing: border-box;
    display: flex;
    justify-content: left;
    flex-direction: column;
    text-align: left;
    box-shadow:  0px 8px 2px  rgba(0,0,0, 0.2);
}

.formm button
{
    width: 100%;
    text-align: center;
    padding: 3%;
    color: white;
    background-color: var(--Green);
    border-radius: 0.5em;
    border: none;
    margin-top: 3%;
    font-weight: 700;
    font-size: 0.9em;
    box-shadow: inset 0 -4px 2px hsla(154, 58%, 41%, 0.781);
}

button:hover
{
    cursor: pointer;
    background-color: hsl(154, 80%, 68%);
    opacity: 2;
}
.name
{
    border: 1px solid gray;
    padding: 3%;
    margin: 3% 0%;
    border-radius: 0.5em;
    position: relative;
    display: flex;
    align-items: center; 
    cursor: pointer;
}

.name:hover
{
    border: 1px solid var(--DarkBlue);
}
.formm input
{
    border: none;
    padding-left: 4%;
    outline: none;
}

.formm input::placeholder
{
    margin-left: 3%;
    font-weight: 500;
}

.terms
{
    margin-top: 3%;
}

.termspan
{
    color: var(--Red);
    font-weight: 700;
}
.heading2
{
    text-align: center;
    color:var(--GrayishBlue);
    font-size: 10px;
    font-weight: 400;
}

.svgfile
{
    right: 10%;
    top: 30%;
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: center;
    width: 70%;
    display: none;
    font-style: oblique;
}

.svgfile svg
{
    position: absolute;
    top:25%;
    right: 5%;
}

.svgfile p{
  
    font-size: 12px;
    position: absolute;
    top: 105%;
    right: 0%;
    color: var(--Red);
} 


@media screen and (max-width: 768px) {
    .page
    {
        width: 100vw;
        height: 100vh;
        background-image:url(images/bg-intro-mobile.png);
        background-repeat: no-repeat;
        background-position: center;
        background-color: var(--Red);
        background-size: cover;
        display: flex;
        flex-direction: row;
    }
    .maincard
    {
        width: 85%;
        height: 85%;
        display: flex;  
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .card1
    {
    width: 100%;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: 1%;
    background: transparent;
    }

.intro
{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
}
.intro h1
{
    font-size: 2em;
    text-align: center;
    font-weight: 700;
}

.intro p{
    text-align: center; 
    line-height: 1.4em;
    font-weight: 400;
}

.card2
{
    width: 100%  ;
    height: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    margin-top: 20%;
}

.price
{
    width: 100%;
}
.heading
{
    background-color: var(--Blue);
    text-align: center;
    padding:5%;
    padding-right: 4%;
    text-align: center;
    border-radius: 0.5em;
    color: white;
    font-size: 15px;
    font-weight: 300;
    box-shadow: 0px 8px 10px  var(--DarkBlue);

}
.heading h3
{
    margin:0% 22%;
}

.formm
{
    width: 100%;
    height: 100%;
    border-radius: 0.5em;
    background-color: white;
    padding: 6%;
    box-sizing: border-box;
    display: flex;
    justify-content: left;
    flex-direction: column;
    text-align: left;
}

.terms
{
    width: 100%;
}

.termspan
{
    display: block;
    text-align: center;
}

}