@import url('https://fonts.googleapis.com/css2?family-poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'poppins', sans-serif;
}
body {
    height: 100vh;
    background-color: #f2f2f2;
    background-image: radial-gradient(rgb(49, 49, 49, 0.171) 2px, transparent 0);
    background-size: 30px 30px;
    background-position: -5px -5px
}
nav {
    max-width: 1050px;
    mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 25%, #ffffff 75%, rgba(255, 255, 255, 0) 100%);
    margin: 0 auto;
    padding: 30px 0;
}
nav h2 {
    font-size: 2.4em;
    font-weight: 700;
    padding: 3px;
}
nav p {
    padding: 0px 10px 3px 0px;
    margin: -12px 0 0 0;
}
nav ul {
    text-align: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
}
nav ul li {
    display: inline-block;
}
nav ul li a {
    padding: 13px 18px 13px 18px;
    font-family: "Open Sans";
    text-transform:uppercase;
    color: rgb(71, 138, 201, 0.5);
    font-size: 18px;
    text-decoration: none;
    display: block;
}
nav ul li a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    color: rgb(71, 138, 201);
    font-size: 20px;
}
.section-1 {
    height: 50px;
    max-width: 1500px;
    color: #111111;
    background-color: #f9e79b;
    mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 25%, #ffffff 75%, rgba(255, 255, 255, 0) 100%);
    margin: 0 auto;
}
.section-1 .div-1 {
display: flex;
}
.section-1 .div-1 p {
    font-size: 20px;
    font-weight: 700;
    margin: 13px auto;
}
.section-2{
    width: 100%;
    height: 80vh;
}
.section-2 .div-2 {
    width: 100%;
    height: 100%;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}



.div-3 {
    width: 100%;
    height: 95%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.cards__inner {
    width: 250PX;
}
.main__heading {
    font-weight: 600;
    font-size: 2.25em;
    margin-bottom: 0.75em;
    text-align: center;
    color: #eceff1;
}
.cards {
    position: relative;
}
.card {
    --flow-space: 0.5em;
    --hsl: var(--hue), var(--saturation), var(--lightness);
    flex: 1 1 14rem;
    padding: 1.5em 2em;
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    align-items: start;
    gap: 1.25em;
    color: #eceff1;
    background-color: #2b2b2b;
    border: 1px solid #eceff133;
    border-radius: 15px;
}
.card:nth-child(1) {
    --hue: 165;
    --saturation: 82.26%;
    --lightness: 51.37%;
}
.card__bullets {
    line-height: 1.4;
}
.card__heading {
    font-size: 1.05em;
    font-weight: 600;
    text-align: center;
}
.card__price- {
    font-size: 1.50em;
    font-weight: 500;
    text-align: center;
}
.card__price {
    font-size: 1.75em;
    font-weight: 700;
    text-align: center;
}
.flow>*+* {
    margin-top: var(--flow-space, 1.25em);
}
.cta {
    display: block;
    align-self: end;
    margin: 1em 0 0.5em 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: transparent;
    outline: 1px solid white;
    padding: 0.7em;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
}
.card:hover {
    --lightness: 80%;
    background: #ffffff80;
    color: #000;
    outline: 1px solid rgb(255, 255, 255);
    box-shadow: inset 0 0 80px whitesmoke, inset 20px 0 80px rgba(255, 0, 255, 0.747),
        inset -20px 0 80px #0ff, inset 20px 0 300px #f0f, inset -20px 0 300px #0ff,
        0 0 50px #fff, -10px 0 80px #f0f, 10px 0 80px #0ff;
    transition: all ease-in-out 0.3s;
}
.card:hover>.cta {
    outline: none;
    background-color: #0d0d0d;
}
.div-5 {
    transform-origin: right center 0px;
    background-color: #478ac9;
    width: 950px;
    height: 2px;
    margin: 0px auto 15px;
}
.text-9 {
    text-align: center;
}
.text-10 {
    text-align: center;
}
.text-11 {
    text-align: center;
}

@media(max-width:900px) {
    nav p {
        padding: 0px 10px 3px 0px;
        margin: 2px 0 0 0;
    }
    .section-1  {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
    }
    .section-1 .div-1 {
        width: 80%;
        height: 100px;
    }
    .div-3 {
        flex-direction: column;
        gap: 25px;
        margin: 15px;
        height: 900px;
    }
    
    .div-5 {
        width: 350px;
    }
}