.hero
{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px;
}   
.headings
{
    margin-top: 50px;
    margin-bottom: 20px;
}
.text-content
{
    width: 50%;
    color: var(--black);
}
.upper-pitch
{
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    padding: 5px 20px;
    background-color: var(--accent);
    display: inline-block;
    border-radius: 20px;
    color: var(--white);
}
h1
{
    margin-bottom: 10px;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    font-family: calsans;
    letter-spacing: 1px;
}
.subhead
{
    font-size: 1rem;
    font-weight: 400;
    color: var(--dark-grey);
}

.usp
{
    margin-bottom: 20px;
}
.bullet-points 
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 0;
}
.point
{
    display: flex;
    align-items: center;
    gap: 5px;
}
.point .text
{
    font-size: 0.9rem;
}
.point .icon
{
    color: green;
}


.pricing
{
    margin-bottom: 20px;
}

.price 
{
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 1px;     
    color: var(--black);
}
.currency {
  font-size: 2.5rem;
  font-weight: 600;
transition: 0.3s;

}

.amount {
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  font-family: calsans;
transition: 0.3s;
}

.per-month {
  font-size: 0.9rem;
  font-weight: 400;
    transition: 0.3s;
}
.garantee
{
    display: block;
    color: var(--dark-grey);
    font-size: 0.8rem;
}

.hero-cta a
{
    font-size: 1.5rem;
}


.image-wrap
{
    width: 50%;
}

.image-wrap img
{
    width: 100%;
}


.usp-cont
{
    padding: 50px 100px;
}
.usp-cont h2
{
    text-align: center;

}
.usp-cont p
{
    text-align: center;
}
.usp-wrap
{
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.usp-box
{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--grey);
    border-radius: 25px;
    min-height: 300px;
    transition: 0.3s;
}
.usp-box:hover
{
    border: 1px solid var(--dark-grey);
    transform: scale(1.01);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.usp-box .icon
{
    margin-bottom: 20px;
}
.usp-box .icon img
{
    height: 100px;
    width: auto;
}
.usp-box h3
{
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
    margin-bottom: 10px;
}
.usp-box p
{
    margin: 0;
    font-size: 0.9rem;
}
.plans
{
    padding: 50px;
}
.plans h2
{
    text-align: center;
}
.plans p
{
    text-align: center;
}


.duration 
{
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: 400px;
}
.duration label
{
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
}
.plan-box-header
{
    position: sticky;
    top: 60px;
    background-color: var(--white);
    padding: 20px 0 0;
}
.plans-wrap
{
    height: fit-content;
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.plan-box
{
    box-sizing: border-box;
    width: 33%;
    border: 1px solid var(--dark-grey);
    padding: 20px 40px 40px;
    border-radius: 30px;
    top: 150px;
    position: sticky;
}
.plan-box .plan-header
{
    margin-bottom: 10px;
    transition: 0.5s;
}
.plan-box .plan-header h3
{
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    transition: 0.5s;
}
.plan-box p
{
    display: block;
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    color: var(--dark-grey);
    transition: 0.5s;
    position: relative;
    height: 25px;
    overflow: hidden;
    line-height: 1;
}

.plan-box.sticky .plan-header p
{
    height: 0;
}

.plan-box .price-garantee
{
    font-size: 0.8rem;
    margin-bottom: 20px;
    transition: 0.5s;
}
.plan-box .cta 
{
    width: 100%;
}
.plan-box .cta a
{
    width: 100%;
    padding: 15px;
    font-size: 1.3rem;
    transition: 0.5s;
}
.plan-box .cta .garantee
{
    margin: 10px auto;
    padding: 5px;
    width: calc(100% - 10px);
    text-align: center;
    font-size:0.9rem;
    color: #08a41f;
    text-transform: capitalize;
    background-color: #08a41f1a;
    border-radius: 10px;
    transition: 0.5s;
}
.partition
{
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--grey);
    margin: 17px 0;
}
.plan-features
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.plan-features .feature
{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
}
.plan-features .feature .feature-name
{
    font-size: 1rem;
}

.tick svg
{
    color: #08a41f;
}
.cross svg
{
    color: var(--dark-grey);
}
.cross .feature-name
{
    color: var(--dark-grey);
}

.plan-box.sticky .plan-header
{
    margin-bottom: 5px;
}
.plan-box.sticky .plan-header h3
{
    font-size: 1.5rem;
}

.plan-box.sticky .price .currency
{
    font-size: 1.5rem;
}
.plan-box.sticky .price .amount
{
    font-size: 2rem;
}
.plan-box.sticky .price .per-month
{
    font-size: 0.8rem;
}
.plan-box.sticky .price-garantee    
{
    height: 0;
    margin-bottom:10px;
}
.plan-box.sticky .cta a
{
    font-size: 1.2rem;
    padding: 10px ;
}
.plans .warning
{
    width: 90%;
    margin: auto;
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: var(--dark-grey);
}
.tech-stack
{
    padding: 50px;
    text-align: center;
}
.tech-grid 
{
    padding: 50px 0;
    column-count: 7;
    gap: 20px;
}

.tech-box 
{    
    border: 1px solid var(--grey);
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 20px;
    page-break-inside: avoid;
}
.tech-box span
{
    display: block;
    font-weight: 600;
    color: var(--accent);
    margin-top: 10px;
}
.tech-box img 
{
    width: 100%;
    max-height: 150px;
}
.hiw
{
    padding: 50px;
    text-align: center;
}
.hiw-wrap
{
    padding: 20px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}
.hiw-box
{
    width: 100%;
    border: 1px solid var(--grey);
    border-radius: 30px;
    text-align: left;
    overflow: hidden;
    padding: 30px;
    transition: 0.3s;
}
.hiw-box:hover
{
    border: 1px solid var(--dark-grey);
    transform: scale(1.01);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.hiw-box img
{
    display: block;
    width: auto;
    height: 150px;
    margin: auto;
    margin-bottom: 50px;
}
.hiw-texts h3
{
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.hiw-texts p
{
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark-grey);
}

.testimonial
{
    padding: 50px;
    text-align: center;
}
.test-wrap
{
    column-count: 3;
    gap: 20px;
    padding: 20px 0;
}
.test-box
{
    width: 100%;
    page-break-inside: avoid;
    border: 1px solid var(--grey);
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 20px;
    transition: 0.3s;
}
.test-box:hover
{
    border: 1px solid var(--dark-grey);
    transform: scale(1.01);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.test-box .profile
{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}
.profile img
{
    border-radius: 60px;
    width: auto;
    height: 40px;
}
.profile-texts span
{
    line-height: 1.1;
    text-align: left;
    display: block;
    color: var(--black);
}
.profile-texts span:nth-child(1)
{
    font-weight: 600;
}
.test-box h3
{
    text-align: left;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
}
.faq
{
    text-align: center;
    padding: 50px;
}
.faq-wrap
{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    justify-content: center;
    align-items: center;
}
.faq-box
{
    width: 60%;
    border: 1px solid var(--grey);
    padding: 20px;
    border-radius: 20px;
    text-align: left;
}
.faq-box .faq-head
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-box .faq-head span
{
    font-weight: 600;
    font-size: 1.2rem;
}
.faq-head .icon svg
{
    transition: 0.5s;
}
.faq-box .faq-content
{
    height: 0;
    overflow: hidden;
    transition: 0.5s;
}
.faq-box .faq-content span
{
    font-weight: 400;
    display: block;
    transition: 0.5s;
    padding: 10px 0 0;
    font-size: 0.9rem;
}
.faq-box.active .faq-content
{
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}
.faq-box.active
{
    border: 1px solid var(--accent);
}
.faq-box.active .faq-head span
{
    color: var(--accent);   
}
@media screen and (max-width: 1200px) 
{
    .faq-box
    {
        width:80%;
    }
    .hiw-wrap
    {
        flex-wrap: wrap;
    }
    .hiw-box
    {
        box-sizing: border-box;
        width: calc(50% - 20px);
    }
    .plans
    {
        padding: 30px 0;
    }
    .plans-wrap {
        display: block !important;
        padding: 20px 0;
    }

    .plan-box {
        width: 100% !important;
        position: relative !important;
        top: 0 !important;
    }

    .plan-box-header {
        position: relative !important;
        top: 0 !important;
    }

    .plans .slick-prev,
    .plans .slick-next {
        display: none !important;
    }

    .plans .slick-slide
    {
        padding: 0 15px;
    }
    .plans .slick-track
    {
        display: flex !important;
    }

    .plans .slick-dots {
        position: relative !important;
        bottom: auto !important;
        margin-top: 20px !important;
        text-align: center !important;
    }

    .plans .slick-dots li button:before {
        color: var(--accent) !important;
        font-size: 10px !important;
    }

    .hero
    {
        flex-direction: column;
        padding: 50px;
        height:  fit-content;
    }
    .hero .text-content
    {
        width: 100%;
    }
    .hero .image-wrap
    {
        width: 100%;
    }
    .usp-box
    {
        width: calc(50% - 30px);
    }
}
@media screen and (max-width: 900px) 
{
    .test-wrap
    {
        column-count: 2;
    }
    .tech-grid 
    {
        column-count: 4;
    }
    .hiw-box
    {
        box-sizing: border-box;
        width: 100%;
    }
    .hero, .usp-cont, .hiw, .testimonial
    {
        padding: 50px 30px;
    }
    .hero
    {
        gap: 20px;
    }
    .hero .image-wrap
    {
        width: 80%;
    }

}
@media screen and (max-width: 500px) 
{
    .test-wrap
    {
        column-count: 1;
    }
    .tech-stack
    {
        padding: 20px;
    }
    .tech-grid 
    {
        column-count: 1;
        column-gap: 10px;
    }
    .tech-box
    {
        margin-bottom: 10px;
    }

    .plans .headings-wrap
    {
        padding: 0 20px;
    }
    .hero
    {
        padding: 50px 20px;
    }
    .hero .image-wrap
    {
        width: 100%;
    }
    .usp-wrap
    {
        gap: 10px;
    }
    .usp-box
    {
        width: 100%;
    }

    .plans .slick-slide
    {
        padding: 0 10px;
    }
}