@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
#Home{
    height: 660px;
    background: #121212;
}
.hero{
    /* display: flex; */
    /* justify-content:flex-start; */
    /* align-items: start; */
    background: url('./background2.jpg');
    background-size: cover;
    height: 100%;
}
.hero .container{
    height: 100%;
    display: flex;
    align-items: center;
}
.hero .text{
    /* align-self:center; */
    /* height: 400px; */
    background: #121212;
    color: #fff;
    max-width: 720px;
    width: 100%;
    padding: 30px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    box-shadow: 1px 1px 1px #121212;
}
.hero h1{
    font-size: clamp(2rem, -0.675rem + 9.2vw, 4.5rem);
    /* background: green; */
    line-height: 92%;
    margin-bottom: 10px;
}
.hoolder span{
    font-size: 1.2rem;
    font-weight: 500;
}
.hoolder .actions{
    /* background: red; */    
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.actions a{
    text-decoration: none;
    color: inherit;
}
.actions button{
    font-size: 1.2rem;
    font-weight: 500;
    padding: 14px 18px;
    border: #121212;
    background: green;
    color: #fff;
    border-radius: 6px;
    box-shadow: 2px 2px 2px green;
}
@media (max-width: 500px) {
    #Home{
        height: 100%;
    }
    .hero{
        background-size: cover;
        background-position: bottom;
    }
    .hero .container{
        align-items: start;
        width: 100%;
    }
    .hero .text{
        padding-top: 85px;
        border-radius: 0px;
    }
    .hero h1{
        line-height: 100%;
        /* margin-bottom: 0; */
    }
    .hero .text span{
        font-size: 1rem;
    }
    .hero button{
        font-size: 1.05rem;
        padding: 12px 15px;
    }
    .hoolder .actions{
        margin-top: 20px;
    }
    /*Test*/
    .back2{
        height: 420px;
        background: url('./background2.jpg');
        background-size: cover;
        background-position: center;
        border:1px solid #121212;
        background-position: right;
    }
}

#About{
    margin-top: 20px;
    padding: 50px 0;    
}
.hPack{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hPack h1{
    font-size: clamp(2rem, 0.125rem + 6vw, 3.5rem);
    color: #121212;
}
.hPack h3{
    color: #121212;
    font-family: "Dancing Script", cursive;
    font-size: clamp(1.5rem, -0.375rem + 6vw, 3rem);
}
.about p{
    margin-top: 5px;
    font-size: 1.2rem;
}
.accolades{
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.lades{
    border: 1px solid #c9c9c9;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 2px 3px 5px #eee;

}
.accolades h2{
    font-size: 2.5rem;
}
.more{
    margin-top: 20px;
    padding: 12px 16px;
    font-size: 1.2rem;
    font-weight: 500;
    background: green;
    color: #fff;
    border: 1px solid #121212;
}
#Features{
    margin-top: 50px;
}
#Plans{
    margin-top: 100px;
}
@media (max-width: 700px) {
    #About{
        margin-top: -10px;
    }
    .hPack h3{
        margin-top: -10px;
    }
    .fg{
        opacity: 0;
    }
    .about p{
        font-size: 1rem;
    }
    .more{
        font-size: 1rem;
        padding: 10px 14px;
    }
    .lades{
        padding: 12px;
        text-align: center;
    }
    .lades h2{
        font-size: 1.5rem;
    }
}
