@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300&display=swap');

*{
    font-family: 'Roboto', sans-serif;
    margin: 0; padding: 0;
    outline: none; border: none;
    text-decoration: none;
    text-transform: none;

}


html{
    font-size: 62.5%;
    overflow: scroll;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;

    &::-webkit-scrollbar{
        width: 1rem;
    }

    &::-webkit-scrollbar-track{
        background: #fff;
    }

    &::-webkit-scrollbar-thumb{
        background: #000;
    }
}

body{
    background: #f6e4d5;
}

section{
    padding: 5rem 9%;
}

.heading{
    text-align: center;
    margin-bottom: 3rem;

    h1{
        font-size: 3rem;
        padding-top:0.5rem ;
    }
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 3rem;
    font-size: 2rem;
    color: #fff;
    background: #000;
    border: .2rem solid #000;
    cursor: pointer;
    font-weight: bolder;
    border-radius: .5rem;

    &:hover{
        background: none;
        color: #000;
    }

}

.header{
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0.5rem 1rem rgba(0, 0, 0, .1);
    padding: 2rem 9%;

    .logo{
        font-size: 2.5rem;
        color: #000;
        
    }

    .navbar a{
        margin: 1rem;
        font-size: 2rem;
        color: #000;

        &:hover{
            text-decoration: underline;
        }
    }

    .btn{
        margin-top: 0;
    }
}


#menu-btn{
    cursor: pointer;
    font-size: 3rem;
    display: none;
}

.home{
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../htmldemo/home.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding-top:17rem ;
    padding-bottom: 10rem;
}

.home .content{
    text-align: center;
    width: 60rem;
}

.home .content h3{
    color: #fff;
    font-size: 3rem;
}

.home .content h3 span{
    color: #fff;
}



.services{
    .box-container{
        
   

        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 1.5rem;

       
        .box{
            background: #fff;
            padding: 3rem 2rem;
            text-align: center;
           
            
        }

        img{
            height: 20rem;
            ;
        }

        h3{
            font-size: 2.2rem;
            padding: 1.5rem 0;
        }

        p{
            line-height: 2;
            font-size: 2.2rem;
        }

    }
}

.pricing{
    text-align: center;

    .box-container{
        
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 1rem;

        .box{
            background: #fff;
            padding: 3rem 2em;
            border-radius: .5rem;
        }

        h3{
            font-size: 4rem;
            display: inline-block;
            border-radius: .5rem;
            padding: .5rem 1.5rem;
            background: #cae8e3;
            margin-bottom: 1rem;
        }

        .price{
            padding: 2rem 0;

            .month,.year{
                font-size: 5rem;
                
                span{
                    font-size: 5rem;
                }

            }

            .list{
                padding: 1rem 0;

                p{
                    padding: 1rem 0;
                    font-size: 1.5rem;
                }
                
                i{
                    padding-right: 0.5rem;
                }
            }
        }
    }
}














































@media (max-width:1200px){
    .header{
        padding: 2rem;
    }
    section{
        padding: 3rem 2rem;
    }
    
}




@media (max-width:990px){
    html{
        font-size: 55%;
    }
}



@media (max-width:768px){
    #menu-btn{
        display: inline-block;
        transition: .2s linear;

        &.fa-times{
            transform: rotate(180deg);
        }
    }
    
    .header{
        .btn{
            display: none;
        }
    }

    .navbar{
        position: absolute;
        top: 99%; left: 0; right: 0;
        border-top: 0.2rem solid #000;
        background: #fff;
        clip-path: polygon(0 0,100% 0,100% 0,0 0);
        transition: .2s linear;

        &.active{
            clip-path: polygon(0 0,100% 0, 100% 100%, 0 100%);
        }
    }

    a{
        display: block;
        margin: 0;
        padding:1.5rem 2rem;
    }

}


@media (max-width:450px){
    html{
        font-size: 50%;
    }
    .heading{
        font-size: 3rem;
    }
}





















