@font-face {
    font-family: "rubic";
    src: url(../fonts/Rubik-VariableFont_wght.ttf);
}

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: "rubic";    
}

:root{
    --primary-color: #98AA28;
    --secondary-color: #A2BDAA;
    --body-text-color: #78847D;
    --dark-green: #253D32;
    --white-color: #FFFFFF;
}

/* common styles */
.get-started-btn{
    background-color: var(--primary-color);
    color: var(--white-color);
    height: 60px;
    width: 200px;    
    box-shadow: 0px 34px 50px 0px rgba(7, 63, 67, 0.07);
}
.get-started-btn:hover{
    background-color: var(--primary-color);
    color: var(--white-color);
    opacity: 0.9;
    transition: all ease 0.5s;
}
p, a{
    color: var(--body-text-color);
}

/* header section */
.header{
    height: 100vh;
    background: url(../images/hero-bg.png) no-repeat;
    background-size: 100% 100%;
    overflow-y: hidden;
}
/* navbar */
.header .navbar .free-trail-btn{
    background-color: rgba(255, 255, 255, 0.10);;
    color: var(--white-color);
    height: 50px;
    width: 140px;
    border: 1px solid rgba(237, 255, 129, 0.40);    
}
.header .navbar .free-trail-btn:hover{
    background-color: rgba(255, 255, 255, 0.10);;
    color: var(--white-color);
    border: 1px solid rgba(237, 255, 129, 0.40);
}
.header .navbar button.navbar-toggler{
    border: none;
}
.header .navbar button.navbar-toggler:focus{
    box-shadow: none;
}
/* hero */
.header .hero h3{
    font-size: 35px;
}
.header .hero h2{
    font-size: 90px; 
    word-wrap: break-word;   
}
.header .hero p{
    color: var(--body-text-color);
    font-size: 18px;
    line-height: 40px;    
    width: 50%;    
    margin: auto;
}
@media screen and (max-width: 991px) {
    .header{
        height: auto;
    }
    .header .hero p{
        width: 70%;
    }
}
@media screen and (max-width: 767px) {
    .header{
        background-position: center;
        background-size: cover;
    }
    .header .hero h2{
        font-size: 70px;
    }
    .header .hero p{
        width: 90%;
    }
}
@media screen and (max-width: 560px) {
    .header .hero p{
        width: 95%;
    }
}
@media screen and (max-width: 450px) {
    .header .hero h3{
        font-size: 30px;
    }
    .header .hero h2{
        font-size: 45px;
    }
    .header .hero p{
        width: 100%;
        font-size: 16px;
    }
    .get-started-btn{
        height: auto;
        width: auto;
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* client section */
.client{
    background-color: #F6FBF9;
}

/* services section */
.service .left-side h2, .article .title h2{
    font-size: 40px;
    line-height: 1.5;
    word-wrap: break-word;    
}
.service .left-side p, .service .right-side p{
    line-height: 2;
}
.service .left-side p{
    font-size: 20px;
}

/* newsletter section */
.newsletter .content{
    background: url(../images/subscribe-bg.png);
    padding: 150px 70px;
}
.newsletter .content h5{
    font-size: 30px;
    word-wrap: break-word;
}
.newsletter .content form input{
    display: inline;
    height: 60px;
    width: 350px;
    text-indent: 20px;
}
.newsletter .content form input:focus{
    box-shadow: none;
    border-color: #fff;
}
@media screen and (max-width: 540px) {
    .newsletter .content form input{
        width: 300px;
    }
}
@media screen and (max-width: 490px) {
    .newsletter .content form input{
        width: 250px;
    }
}
@media screen and (max-width: 450px) {
    .newsletter .content form input{
        height: auto;
        width: 100%;
        padding: 10px 0px;
    }   
}

/* footer */
.footer .content .logo p{
    line-height: 2;
}
.footer .content .logo ul li{
    background-color: var(--secondary-color);    
    padding: 5px 10px;
    margin-right: 15px;
    border-radius: 50%;    
}
.footer .content .list ul li{
    line-height: 2;
}